fuck it inline css

This commit is contained in:
Jonathan Souter
2023-03-02 15:56:23 +10:30
parent aeb191a7e8
commit 9480620857
6 changed files with 57 additions and 26 deletions

View File

@ -1,12 +1,21 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:image" content="/_assets/img/cropped.png" />
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta property="og:image" content="/_assets/img/cropped.png"/>
<link rel="icon" type="image/x-icon" href="/_assets/img/fav.png">
<link rel="stylesheet" href="/_assets/css/normalize.css" />
<link rel="stylesheet" href="/_assets/css/styles.css" />
{# <link rel="stylesheet" href="/_assets/css/normalize.css" /> #}
<link rel="stylesheet" href="/_assets/css/styles.css"/>
{% set css %}
{% include "styles.css" %}
{% endset %}
<!-- feed it through our cssmin filter to minify -->
<style>
{{css | cssmin | safe}}
</style>
{% if title %}
<title>{{ site.title }} - {{ title }}</title>
{% else %}
@ -24,8 +33,8 @@
{# <header>{% include 'partials/header.njk' %}</header> #}
{# <hr/> #}
<article>
<h2>{{ title }}</h2>
{{ content | safe }}
<h2>{{ title }}</h2>
{{ content | safe }}
</article>
</div>
<footer>
@ -34,8 +43,7 @@
</footer>
</main>
<aside>{% include 'partials/sidebar.njk' %}</aside>
</div>
</div>
</body>
</html>
</div>
</div>
</body>
</html>