A bit of rearranging to attempt to have a component-structure

This commit is contained in:
Scott 2020-12-18 15:47:56 -05:00
parent 741f4eef29
commit 1f8369a1ac
5 changed files with 8 additions and 6 deletions

View File

@ -1 +0,0 @@
src/_*.*

View File

@ -1,4 +1,4 @@
<section class="py-10 px-2 md:px-4 prose prose-xl mx-auto" id="description">
<section class="kdl-section" id="description">
<p>
kdl is a document language, mostly based on
<a href="https://sdlang.org/">SDLang</a>, with xml-like semantics that looks

View File

@ -1,4 +1,4 @@
<section class="py-10 px-2 md:px-4 prose prose-xl mx-auto" id="design-and-discussion">
<section class="kdl-section" id="design-and-discussion">
<h2>Design and discussion</h2>
<p>
kdl is still extremely new, and discussion about the format should happen

View File

@ -8,6 +8,5 @@ title: kdl - Kat's Document Language
</header>
{% include ./_description.html %}
{% include ./_design-and-discussion.html %}
{% include partials/description.html %}
{% include partials/design-and-discussion.html %}

View File

@ -1,3 +1,7 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
.kdl-section {
@apply py-10 px-2 md:px-4 prose prose-xl mx-auto;
}