diff options
Diffstat (limited to 'avtorji.html')
-rw-r--r-- | avtorji.html | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/avtorji.html b/avtorji.html new file mode 100644 index 0000000..70494f3 --- /dev/null +++ b/avtorji.html @@ -0,0 +1,22 @@ +--- +layout: default +title: avtorji +--- +<h1>avtorji</h1> +<ul> + {% for author in site.authors %} + <li> + <h2> + <a href="{{ author.url | remove: ".html"}}"> + {{ author.name }} + </a> + </h2> + <h3> + {{ author.position }} + </h3> + <p> + {{ author.content | markdownify }} + </p> + </li> + {% endfor %} +</ul> |