From 741f4eef29ee3c882acc6d63a844ad26405dbfc9 Mon Sep 17 00:00:00 2001 From: Scott Date: Fri, 18 Dec 2020 15:14:51 -0500 Subject: [PATCH] Break up main page into partials --- .eleventyignore | 1 + src/_description.html | 12 ++++++++++++ src/_design-and-discussion.html | 9 +++++++++ src/index.html | 14 +++----------- 4 files changed, 25 insertions(+), 11 deletions(-) create mode 100644 .eleventyignore create mode 100644 src/_description.html create mode 100644 src/_design-and-discussion.html diff --git a/.eleventyignore b/.eleventyignore new file mode 100644 index 0000000..5e4e7b9 --- /dev/null +++ b/.eleventyignore @@ -0,0 +1 @@ +src/_*.* \ No newline at end of file diff --git a/src/_description.html b/src/_description.html new file mode 100644 index 0000000..0362885 --- /dev/null +++ b/src/_description.html @@ -0,0 +1,12 @@ +
+

+ kdl is a document language, mostly based on + SDLang, with xml-like semantics that looks + like you're invoking a bunch of CLI commands! +

+ +

+ It's meant to be used both as a serialization format and a configuration + language, and is relatively light on syntax compared to XML. +

+
diff --git a/src/_design-and-discussion.html b/src/_design-and-discussion.html new file mode 100644 index 0000000..b7678bc --- /dev/null +++ b/src/_design-and-discussion.html @@ -0,0 +1,9 @@ +
+

Design and discussion

+

+ kdl is still extremely new, and discussion about the format should happen + over on the + discussions page + in the Github repo. Feel free to jump in and give us your 2 cents! +

+
diff --git a/src/index.html b/src/index.html index fdc78a7..ac199e6 100644 --- a/src/index.html +++ b/src/index.html @@ -7,15 +7,7 @@ title: kdl - Kat's Document Language

kdl - Kat's Document Language

-
-

- kdl is a document language, mostly based on - SDLang, with xml-like semantics that looks - like you're invoking a bunch of CLI commands! -

-

- It's meant to be used both as a serialization format and a configuration - language, and is relatively light on syntax compared to XML. -

-
+{% include ./_description.html %} +{% include ./_design-and-discussion.html %} +