Skip to content

Commit

Permalink
feat(clara): add profile index, move old index to dir
Browse files Browse the repository at this point in the history
  • Loading branch information
wehrlock committed Mar 18, 2024
1 parent b7a8b26 commit 1df49c1
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 7 deletions.
10 changes: 10 additions & 0 deletions clara/dir.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
layout: base
title: Directory
---
<h1>Index of /clara</h1>
<ul>
<li><a href="/"> Parent Directory</a></li>
<li><a href="birthday/"> birthday/</a></li>
<li><a href="clara_birth.txt"> clara_birth.txt</a></li>
</ul>
30 changes: 23 additions & 7 deletions clara/index.html
Original file line number Diff line number Diff line change
@@ -1,10 +1,26 @@
---
layout: base
title: Directory
title: Clara Wehrle
---
<h1>Index of /clara</h1>
<ul>
<li><a href="/"> Parent Directory</a></li>
<li><a href="birthday/"> birthday/</a></li>
<li><a href="clara_birth.txt"> clara_birth.txt</a></li>
</ul>
{% if page.cover_image %}
<div class="article-cover">
<div>
<img src="/images/{{ page.cover_image }}" class="image">
</div>
</div>
{% endif %}
<article class="container">
<section>
<ul class="list-unstyled">
<li>
<h1 class="title">Clara Wehrle</h1>
<li>
<h2 class="subtitle">Profiles</h2>
{% if site.data.wehrle.clara.profiles %}
{% for profile in site.data.wehrle.clara.profiles %}
<li> <a href="{{ profile[1] }}">{{ profile[0] }}</a>
{% endfor %}
{% endif %}
</ul>
</section>
</article>

0 comments on commit 1df49c1

Please sign in to comment.