-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
55 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
+++ | ||
title = "Bounty 2" | ||
date = 2022-10-03 | ||
[extra] | ||
claimed = false | ||
+++ |
11 changes: 2 additions & 9 deletions
11
docs/content/bounty/index.md → docs/content/bounty/_index.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{% extends "base.html" %} | ||
|
||
{% block content %} | ||
<h1>{{ page.title }}</h1> | ||
{{ page.content | safe }} | ||
|
||
{% set section = get_section(path=page.ancestors | last) %} | ||
{{ section.content | safe }} | ||
{% endblock content %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,25 @@ | ||
{% extends "base.html" %} | ||
|
||
{% block content %} | ||
<h1>Ordinal Docs</h1> | ||
|
||
<nav> | ||
{% for page in section.pages %} | ||
<a href="{{ page.permalink | safe }}">{{ page.title }}</a> | ||
{% endfor %} | ||
</nav> | ||
|
||
{% for path in section.subsections %} | ||
{% set section = get_section(path=path) %} | ||
<h2><a href="{{ section.permalink | safe }}">{{ section.title }}</a></h2> | ||
<ul> | ||
{% for page in section.pages %} | ||
{% for page in section.pages %} | ||
<li> | ||
<time>{{ page.date | date(format="%d %b %Y") }}</time> | ||
» | ||
<a href="{{ page.permalink | safe }}">{{ page.title }}</a> | ||
</li> | ||
{% endfor %} | ||
{% endfor %} | ||
</ul> | ||
{% endfor %} | ||
{% endblock content %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{% extends "base.html" %} | ||
{% block content %} | ||
<h1>{{ section.title }}</h1> | ||
<ul> | ||
{% for page in section.pages %} | ||
<li> | ||
<time>{{ page.date | date(format="%d %b %Y") }}</time> | ||
» | ||
<a href="{{ page.permalink | safe }}">{{ page.title }}</a> | ||
</li> | ||
{% endfor %} | ||
</ul> | ||
{{ section.content | safe }} | ||
{% endblock content %} |