clean design
This commit is contained in:
parent
9f00e9a8fa
commit
5d44eff524
5 changed files with 8 additions and 16 deletions
|
@ -8,11 +8,9 @@
|
||||||
{{ indexFile.File.Lang }}{% endif %}
|
{{ indexFile.File.Lang }}{% endif %}
|
||||||
|
|
||||||
{% for file in tree.RootFiles %}{% if file.Name != "index.md" %}{{ text_url(file) }}{% endif %}{% endfor %}
|
{% for file in tree.RootFiles %}{% if file.Name != "index.md" %}{{ text_url(file) }}{% endif %}{% endfor %}
|
||||||
{% if tree.Categories %}### {% if lang == "sgs" %}Kateguorėjės{% else %}Categories{% endif %}
|
|
||||||
{% for cat, count in tree.Categories %}{{ category_url(tree.Path|add:"/"|add:cat, cat, count) }}
|
{% for cat, count in tree.Categories %}{{ category_url(tree.Path|add:"/"|add:cat, cat, count) }}
|
||||||
{% endfor %} {% endif %}
|
{% endfor %}
|
||||||
{% if tree.Tags %}### {% if lang == "sgs" %}Žīmas{% else %}Tags{% endif %}
|
|
||||||
{% for tag, count in tree.Tags %}{{ tag_url(tag, count) }}
|
{% for tag, count in tree.Tags %}{{ tag_url(tag, count) }}
|
||||||
{% endfor %} {% endif %}
|
{% endfor %}
|
||||||
{% if tree.RootPath %}{{ category_url(tree.RootPath, tree.RootPath, 0) }}{% endif %}
|
{% if tree.RootPath %}{{ category_url(tree.RootPath, tree.RootPath, 0) }}{% endif %}
|
||||||
{{ home(lang) }}
|
{{ home(lang) }}
|
||||||
|
|
|
@ -8,13 +8,11 @@ Welcome to my capsule in Gemini space. {{ logo() }}
|
||||||
|
|
||||||
=> /a about
|
=> /a about
|
||||||
|
|
||||||
{% if tree.Categories %}### Categories
|
|
||||||
{% for cat, count in tree.Categories %}
|
{% for cat, count in tree.Categories %}
|
||||||
{{ category_url(cat, cat, count) }} {% endfor %} {% endif %}
|
{{ category_url(cat, cat, count) }} {% endfor %}
|
||||||
|
|
||||||
{% if tree.Tags %}### Tags
|
|
||||||
{% for tag, count in tree.Tags %}
|
{% for tag, count in tree.Tags %}
|
||||||
{{ tag_url(tag, count) }} {% endfor %} {% endif %}
|
{{ tag_url(tag, count) }} {% endfor %}
|
||||||
|
|
||||||
{% if lastFiles %}### Last texts
|
{% if lastFiles %}### Last texts
|
||||||
{% for file in lastFiles %}{{ text_url(file) }}{% endfor %}{% endif %}
|
{% for file in lastFiles %}{{ text_url(file) }}{% endfor %}{% endif %}
|
||||||
|
|
|
@ -1,9 +1,8 @@
|
||||||
{% import "macros.tpl" category_url, tag_url, text_url, logo, home %}
|
{% import "macros.tpl" category_url, tag_url, text_url, logo, home %}
|
||||||
# {{ file.File.Description }}
|
# {{ file.File.Description }}
|
||||||
|
|
||||||
{% if file.File.Tags %}### {% if lang == "sgs" %}Žīmas{% else %}Tags{% endif %}
|
|
||||||
{% for tag in file.File.Tags %}{{ tag_url(tag, 0) }}
|
{% for tag in file.File.Tags %}{{ tag_url(tag, 0) }}
|
||||||
{% endfor %} {% endif %}
|
{% endfor %}
|
||||||
|
|
||||||
🌙{{ file.File.Created}}
|
🌙{{ file.File.Created}}
|
||||||
{{ file.File.Copyright }}
|
{{ file.File.Copyright }}
|
||||||
|
|
|
@ -8,13 +8,11 @@ Sveikė atvīkėn i mona kapsolė Gemini ertie. {{ logo() }}
|
||||||
|
|
||||||
=> /a aple
|
=> /a aple
|
||||||
|
|
||||||
{% if tree.Categories %}### Kateguorėjės
|
|
||||||
{% for cat, count in tree.Categories %}
|
{% for cat, count in tree.Categories %}
|
||||||
{{ category_url(cat, cat, count) }} {% endfor %} {% endif %}
|
{{ category_url(cat, cat, count) }} {% endfor %}
|
||||||
|
|
||||||
{% if tree.Tags %}### Žīmas
|
|
||||||
{% for tag, count in tree.Tags %}
|
{% for tag, count in tree.Tags %}
|
||||||
{{ tag_url(tag, count) }} {% endfor %} {% endif %}
|
{{ tag_url(tag, count) }} {% endfor %}
|
||||||
|
|
||||||
{% if lastFiles %}### Paskotėnē īrašā
|
{% if lastFiles %}### Paskotėnē īrašā
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,6 @@
|
||||||
# [{{ tag }}]
|
# [{{ tag }}]
|
||||||
|
|
||||||
{% for file in tree.Files %}{{ text_url(file) }}{% endfor %}
|
{% for file in tree.Files %}{{ text_url(file) }}{% endfor %}
|
||||||
{% if tree.Tags %}### {% if lang == "sgs" %}Žīmas{% else %}Tags{% endif %}
|
|
||||||
{% for tag, count in tree.Tags %}{{ tag_url(tag, count) }}
|
{% for tag, count in tree.Tags %}{{ tag_url(tag, count) }}
|
||||||
{% endfor %} {% endif %}
|
{% endfor %}
|
||||||
{{ home(lang) }}
|
{{ home(lang) }}
|
||||||
|
|
Loading…
Reference in a new issue