cv-website

Personal website and CV
git clone https://git.in0rdr.ch/cv-website.git
Log | Files | Refs | Pull requests | README | LICENSE

commit aabe62ec4f28a5d35b47db9e1134fd45e43a3c67
parent 2afee6c45e9900dcd0a5ab9c128d8934a7feeac7
Author: Andreas Gruhler <andreas.gruhler@adfinis.com>
Date:   Sun,  4 Jun 2023 12:09:13 +0200

feat: update nav & footer links

Diffstat:
M_includes/footer.html | 2+-
M_includes/nav.html | 4++--
2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/_includes/footer.html b/_includes/footer.html @@ -1,5 +1,5 @@ <footer class="site-footer"> <div class="container"> - <small class="block">&copy; {{ site.time | date: '%Y' }} {{ site.author.name }} &middot; &lt;/&gt; Powered by <a href="https://jekyllrb.com/">Jekyll</a> and <a href="https://github.com/heiswayi/thinkspace">Thinkspace theme</a></small> + <small class="block">&copy; {{ site.time | date: '%Y' }} {{ site.author.name }} &middot; <a href="{{ "/feed.xml" | relative_url }}" target="_blank">RSS</a> &middot; &lt;/&gt; Powered by <a href="https://jekyllrb.com/">Jekyll</a> and <a href="https://github.com/heiswayi/thinkspace">Thinkspace theme</a></small> </div> </footer> diff --git a/_includes/nav.html b/_includes/nav.html @@ -1,10 +1,10 @@ - <nav class="nav"> <div class="container"> <h1 class="logo"><a href="{{ '/' | relative_url }}">{{ site.title_left }}<span>{{ site.title_right }}</span></a></h1> <ul class="navbar"> <li><a href="{{ '/about' | relative_url }}">{% octicon person %}<span> about</span></a></li> - <li><a href="{{ "/feed.xml" | relative_url }}" target="_blank">{% octicon rss %}<span> rss</span></a></li> + <li><a href="https://write.in0rdr.ch">{% octicon log %}<span> blog</span></a></li> + <li><a href="https://m.in0rdr.ch/@in0rdr">{% octicon comment-discussion %}<span> social</span></a></li> <li><a href="https://code.in0rdr.ch">{% octicon repo %}<span> code</span></a></li> <li><a href="https://github.com/in0rdr">{% octicon mark-github %}<span> github</span></a></li> </ul>