add a 'links' page

plan is to build this out more later and link it from the about page
This commit is contained in:
colin 2022-07-08 16:11:45 -07:00
parent 038f687ed9
commit 073a47b8ca
2 changed files with 47 additions and 0 deletions

21
content/links.md Normal file
View File

@ -0,0 +1,21 @@
+++
template = "links.html"
title = "Other Things You Might Enjoy"
+++
#### Feeds I Subscribe To:
- [Gwern](https://gwern.net)
- [Elizier Yudkowsky](https://www.readthesequences.com/)
- [Scott Alexander](https://astralcodexten.substack.com/)
- [Applied Divinity Studies](https://applieddivinitystudies.com)
- [MG](https://mg.lol)
- [Slime Mold Time Mold](https://slimemoldtimemold.com)
<!--
#### Books I Recommend
TODO
#### TV/Film I Appreciate
TODO
-->

26
templates/links.html Normal file
View File

@ -0,0 +1,26 @@
{% extends "base.html" %}
{% block breadcrumbs %}
/ <a href="/">home</a> / <a>links</a>
{% endblock breadcrumbs %}
{# disable the rss header link #}
{% block rss_link %}
{% endblock rss_link %}
{# disable the 'about' header link #}
{% block breadcrumbs_right %}
{% endblock breadcrumbs_right %}
{% block title %}
Links |Perfectly Sane
{% endblock title %}
{% block content %}
<h1>
{{ page.title }}
</h1>
{{ page.content | safe }}
{% endblock content %}