diff options
author | Yuqian Yang <crupest@crupest.life> | 2025-04-01 23:44:50 +0800 |
---|---|---|
committer | Yuqian Yang <crupest@crupest.life> | 2025-04-01 23:44:50 +0800 |
commit | a985d6bb3ee26db6444702c3c0c8bff53ba46824 (patch) | |
tree | 8610b9a11c1cbd4e347e80a3bba4a191ae2abb7d /www/layouts | |
parent | 9d9b68f8fb70dc72f34f3dd41f5811529e09789b (diff) | |
download | crupest-a985d6bb3ee26db6444702c3c0c8bff53ba46824.tar.gz crupest-a985d6bb3ee26db6444702c3c0c8bff53ba46824.tar.bz2 crupest-a985d6bb3ee26db6444702c3c0c8bff53ba46824.zip |
feat(www): add cheat-sheet.
Diffstat (limited to 'www/layouts')
-rw-r--r-- | www/layouts/index.html | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/www/layouts/index.html b/www/layouts/index.html index 7c608f1..f456e71 100644 --- a/www/layouts/index.html +++ b/www/layouts/index.html @@ -26,23 +26,26 @@ <hr /> <section> <p>Welcome to my home page! Nice to meet you here! 🥰</p> - <p>If you have something interesting to share with me, feel free to email me at - <a rel="noopener noreferrer" href="mailto:crupest@crupest.life">crupest@crupest.life</a>. - You can also create an issue in any of my repos on GitHub to talk anything to me. + <p>If you have something interesting to share with me, feel free to email me + at <a rel="noopener noreferrer" href="mailto:crupest@crupest.life">crupest@crupest.life</a>. + You can also create an issue in any of my repos + on <a rel="noopener noreferrer" href="https://github.com/crupest">GitHub</a> to talk + anything to me. </p> <div id="links" class="mono-link"> - links: + jump-to: <ul> - <li><a href="{{ .RelPermalink }}">home</a></li> <li><a href="{{ absURL "/git/" }}">git</a></li> - {{ with .GetPage "/hurd" }} + {{ with .GetPage "/notes/hurd" }} <li><a href="{{ .RelPermalink }}">hurd</a></li> {{ end }} - {{ with .GetPage "/todos" }} + {{ with .GetPage "/notes/todos" }} <li><a href="{{ .RelPermalink }}">todos</a></li> {{ end }} - <li><a rel="noopener noreferrer" href="https://github.com/crupest">github</a></li> - </ul> + {{ with .GetPage "/notes/cheat-sheet" }} + <li><a href="{{ .RelPermalink }}">cheat-sheet</a></li> + {{ end }} + </ul> </div> </section> <hr> |