-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(clara): add profile index, move old index to dir
- Loading branch information
Showing
2 changed files
with
33 additions
and
7 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
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> |
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,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> |