A bit of rearranging to attempt to have a component-structure
This commit is contained in:
parent
741f4eef29
commit
1f8369a1ac
|
|
@ -1 +0,0 @@
|
||||||
src/_*.*
|
|
||||||
|
|
@ -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>
|
<p>
|
||||||
kdl is a document language, mostly based on
|
kdl is a document language, mostly based on
|
||||||
<a href="https://sdlang.org/">SDLang</a>, with xml-like semantics that looks
|
<a href="https://sdlang.org/">SDLang</a>, with xml-like semantics that looks
|
||||||
|
|
@ -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>
|
<h2>Design and discussion</h2>
|
||||||
<p>
|
<p>
|
||||||
kdl is still extremely new, and discussion about the format should happen
|
kdl is still extremely new, and discussion about the format should happen
|
||||||
|
|
@ -8,6 +8,5 @@ title: kdl - Kat's Document Language
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
|
|
||||||
{% include ./_description.html %}
|
{% include partials/description.html %}
|
||||||
{% include ./_design-and-discussion.html %}
|
{% include partials/design-and-discussion.html %}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,7 @@
|
||||||
@tailwind base;
|
@tailwind base;
|
||||||
@tailwind components;
|
@tailwind components;
|
||||||
@tailwind utilities;
|
@tailwind utilities;
|
||||||
|
|
||||||
|
.kdl-section {
|
||||||
|
@apply py-10 px-2 md:px-4 prose prose-xl mx-auto;
|
||||||
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue