mirror of
https://github.com/kittywitch/dork.dev.git
synced 2026-02-09 15:19:18 -08:00
deploy: 0a7e78015b
This commit is contained in:
parent
94ad279a47
commit
70303d5526
3 changed files with 55 additions and 0 deletions
19
templates/external.html
Normal file
19
templates/external.html
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
{% extends "base.html" %}
|
||||
|
||||
{% block content %}
|
||||
<section id="blogposts">
|
||||
<h2>Things I find value in sharing</h2>
|
||||
<ul>
|
||||
{% set data = load_data(path="content/external/external.toml") %}
|
||||
{% for k, v in data %}
|
||||
<li>
|
||||
<article>
|
||||
<a href="{{v.permalink | safe}}"><strong>{{ v.title }}</strong></a>
|
||||
{% if v.author is defined %} by {{ v.author }}{% endif %}{% if v.archive is defined %} - <a href="{{v.archive}}">Archive</a> {% endif %}{% if v.suffix is defined %} ({{ v.suffix }}){% endif %}
|
||||
</article>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</section>
|
||||
{% endblock content %}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue