Give everything the transition property. Fuck, that's awesome
This commit is contained in:
parent
67de08a5b8
commit
df4979192e
12 changed files with 43 additions and 22 deletions
|
@ -7,6 +7,7 @@
|
|||
|
||||
<!-- Stylesheets -->
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=IBM+Plex+Mono">
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
||||
<link rel="stylesheet" href="/style.css">
|
||||
<link rel="stylesheet" href="/sidebar.css">
|
||||
</head>
|
||||
|
@ -14,6 +15,8 @@
|
|||
<body>
|
||||
{% include "sidebar.html" %}
|
||||
|
||||
<button type="button" class="sidebar-toggle" id="sidebar-toggle" aria-pressed="false"></button>
|
||||
|
||||
<div id="main" class="column">
|
||||
<div class="container">
|
||||
{% block content %} {% endblock content %}
|
||||
|
|
|
@ -3,13 +3,15 @@
|
|||
<br>
|
||||
{{ page.description }}
|
||||
<br>
|
||||
authors: {%- for tag in page.taxonomies.authors | sort | unique(case_sensitive=false) %}
|
||||
<a class="post-author" href="{{ get_taxonomy_url(kind='authors', name=tag) | safe }}">{{ tag }}</a>
|
||||
{% endfor -%}
|
||||
<br>
|
||||
written: {{ page.date }}
|
||||
<br>
|
||||
tags: {%- for tag in page.taxonomies.tags | sort | unique(case_sensitive=false) %}
|
||||
<a class="post-tag" href="{{ get_taxonomy_url(kind='tags', name=tag) | safe }}">#{{ tag }}</a>
|
||||
{% endfor -%}
|
||||
<strong class="subtitle">
|
||||
written: {{ page.date }}
|
||||
<br>
|
||||
authors: {%- for tag in page.taxonomies.authors | sort | unique(case_sensitive=false) %}
|
||||
<a class="post-author" href="{{ get_taxonomy_url(kind='authors', name=tag) | safe }}">{{ tag }}</a>
|
||||
{% endfor -%}
|
||||
<br>
|
||||
tags: {%- for tag in page.taxonomies.tags | sort | unique(case_sensitive=false) %}
|
||||
<a class="post-tag" href="{{ get_taxonomy_url(kind='tags', name=tag) | safe }}">#{{ tag }}</a>
|
||||
{% endfor -%}
|
||||
</strong>
|
||||
</li>
|
||||
|
|
|
@ -5,7 +5,12 @@
|
|||
{{ page.title }}
|
||||
</h1>
|
||||
<p class="subtitle"><strong>
|
||||
{{ page.date }},
|
||||
written: {{ page.date }}
|
||||
<br>
|
||||
authors: {%- for tag in page.taxonomies.authors | sort | unique(case_sensitive=false) %}
|
||||
<a class="post-author" href="{{ get_taxonomy_url(kind='authors', name=tag) | safe }}">{{ tag }}</a>
|
||||
{% endfor -%}
|
||||
<br>
|
||||
tags: {%- for tag in page.taxonomies.tags | sort | unique(case_sensitive=false) %}
|
||||
<a class="post-tag" href="{{ get_taxonomy_url(kind='tags', name=tag) | safe }}">#{{ tag }}</a>
|
||||
{% endfor -%}
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
{% extends "base.html" %}
|
||||
{% block content %}
|
||||
<h1 class="title">
|
||||
{{ section.title }}
|
||||
</h1>
|
||||
|
||||
{% block content %}
|
||||
<h1 class="title">
|
||||
{{ section.title }}
|
||||
</h1>
|
||||
{{ section.content | safe }}
|
||||
{% endblock content %}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<div id="sidebar" class="column">
|
||||
<a href="/" class="sb_img"><img src="https://art.pixilart.com/sr2a62fc9ed2173.png" alt="teto creature"></a>
|
||||
|
||||
<button type="button" class="theme-toggle-button" data-theme-toggle aria-label="Toggle to dark"></button>
|
||||
<button type="button" class="theme-toggle" data-theme-toggle aria-label="Toggle to dark"></button>
|
||||
<script src="/darkmode.js"></script>
|
||||
|
||||
<div class="sb_header personal"><b>personal</b></div>
|
||||
|
@ -15,7 +15,7 @@
|
|||
<br>
|
||||
|
||||
<div class="sb_header nixfox"><b>nixfox</b></div>
|
||||
<a href="/nixfox" class="sb_link pers">📰 news</a><br>
|
||||
<a href="/nixfox" class="sb_link fox">📰 news</a><br>
|
||||
<a href="https://uptime.nixfox.ca/status/nixfox" class="sb_link fox">⬆️ uptime</a><br>
|
||||
<a href="https://mail.nixfox.ca" class="sb_link fox">📧 email</a><br>
|
||||
<a href="https://files.nixfox.ca" class="sb_link fox">☁️ nextcloud</a><br>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue