5
0
mirror of https://github.com/cwinfo/yggdrasil-network.github.io.git synced 2024-09-19 16:09:36 +00:00

Add dontlink tag

This commit is contained in:
Neil Alexander 2018-03-11 21:22:45 +00:00
parent cf6c9a2a0b
commit 397cc5f5b3
No known key found for this signature in database
GPG Key ID: A02A2019A2BB0944
2 changed files with 13 additions and 7 deletions

View File

@ -17,22 +17,24 @@
<header> <header>
<a href="{{ site.github.url }}"> <h1>{{ site.title | default: site.github.repository_name }}</h1> </a> <a href="{{ site.github.url }}"> <h1>{{ site.title | default: site.github.repository_name }}</h1> </a>
<p>{{ site.description | default: site.github.project_tagline }}</p> <p>{{ site.description | default: site.github.project_tagline }}</p>
<p> <p>
{% for page in site.pages %} {% for page in site.pages %}
<a href="{{ page.url }}">{{ page.title }}</a><br /> {% unless page.tags contains "dontlink" %}
<a href="{{ page.url }}">{{ page.title }}</a><br />
{% endunless %}
{% endfor %} {% endfor %}
</p> </p>
<p> <p>
<a href="https://github.com/yggdrasil-network/yggdrasil-go">GitHub</a><br /> <a href="https://github.com/yggdrasil-network/yggdrasil-go">GitHub</a><br />
<a href="https://circleci.com/gh/yggdrasil-network/yggdrasil-go">CircleCI</a><br /> <a href="https://circleci.com/gh/yggdrasil-network/yggdrasil-go">CircleCI</a><br />
<a href="https://circleci.com/api/v1.1/project/github/yggdrasil-network/yggdrasil-go/latest/artifacts">Latest Builds</a><br /> <a href="https://circleci.com/api/v1.1/project/github/yggdrasil-network/yggdrasil-go/latest/artifacts">Latest Builds</a><br />
<a href="https://github.com/yggdrasil-network/public-peers">Public Peers</a> <a href="https://github.com/yggdrasil-network/public-peers">Public Peers</a>
</p> </p>
<p><a href="https://circleci.com/gh/yggdrasil-network/yggdrasil-go"><img src="https://circleci.com/gh/yggdrasil-network/yggdrasil-go.svg?style=shield&circle-token=:circle-token" /></a></p> <p><a href="https://circleci.com/gh/yggdrasil-network/yggdrasil-go"><img src="https://circleci.com/gh/yggdrasil-network/yggdrasil-go.svg?style=shield&circle-token=:circle-token" /></a></p>
{% if site.show_downloads %} {% if site.show_downloads %}
<ul> <ul>
<li><a href="{{ site.github.zip_url }}">Download <strong>ZIP File</strong></a></li> <li><a href="{{ site.github.zip_url }}">Download <strong>ZIP File</strong></a></li>

View File

@ -1,3 +1,7 @@
---
tags: dontlink
---
# Introduction # Introduction
Yggdrasil is an early-stage implementation of a fully encrypted IPv6 network. Although Yggdrasil shares many similarities with [cjdns](https://github.com/cjdelisle/cjdns), it also employs a different routing algorithm based on a globally-agreed spanning tree. In theory, an Yggdrasil network should scale well even up to internet-like topologies. Take a look at the [About](about.md) page for a detailed overview. Yggdrasil is an early-stage implementation of a fully encrypted IPv6 network. Although Yggdrasil shares many similarities with [cjdns](https://github.com/cjdelisle/cjdns), it also employs a different routing algorithm based on a globally-agreed spanning tree. In theory, an Yggdrasil network should scale well even up to internet-like topologies. Take a look at the [About](about.md) page for a detailed overview.
@ -10,7 +14,7 @@ Currently we don't have any specific releases, but binaries are [automatically b
## Implementation ## Implementation
Yggdrasil is written in Go. The codebase is fairly small and easy to navigate. It has been tested on a number of platforms (including Linux, Windows, macOS, NetBSD, FreeBSD, OpenBSD and Ubiquiti EdgeOS) although with various minor caveats. See the [Platforms](platforms.md) page for more information. Yggdrasil is written in Go. The codebase is fairly small and easy to navigate. It has been tested on a number of platforms (including Linux, Windows, macOS, NetBSD, FreeBSD, OpenBSD and Ubiquiti EdgeOS) although with various minor caveats. See the [Platforms](platforms.md) page for more information.
## Get Involved ## Get Involved