Commit theme changes from pairing with Chris

This commit is contained in:
Oliver Davies 2021-06-30 08:00:00 +01:00
parent 789b665522
commit 4bf3f51546
8 changed files with 45 additions and 74 deletions

View file

@ -6,6 +6,8 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{ site.name|default('Sculpin Skeleton') }}</title>
<link type="text/css" rel="stylesheet" href="/build/app.css"/>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,700;1,300&display=swap" rel="stylesheet">
</head>
<body>
{% block body %}{% endblock %}

View file

@ -1,16 +1,17 @@
{% extends 'app' %}
{% block body %}
<a class="sr-only focus:not-sr-only" href="#main-content">Skip to main content</a>
<div class="font-sans text-lg font-light text-gray-900">
<a class="sr-only focus:not-sr-only" href="#main-content">Skip to main content</a>
{% include 'navbar' %}
{% include 'navbar' %}
<div class="my-8">
<div id="main-content" class="max-w-xl mx-auto">
{% block content_wrapper %}
{% block content %}{% endblock %}
{% endblock %}
<div class="my-16">
<div id="main-content" class="max-w-2xl px-4 mx-auto">
{% block content_wrapper %}
{% block content %}{% endblock %}
{% endblock %}
</div>
</div>
</div>
{% endblock %}

View file

@ -2,7 +2,7 @@
{% block content_wrapper %}
<div>
<h1>{{ page.title }}</h1>
<h1 class="text-2xl font-bold">{{ page.title }}</h1>
{{ parent() }}
</div>