diff --git a/_cobalt.yml b/_cobalt.yml new file mode 100644 index 0000000..2052858 --- /dev/null +++ b/_cobalt.yml @@ -0,0 +1,7 @@ + +site: + title: M-LABS K.B. + description: Knowledge Base for M-Labs + base_url: ~ +posts: + rss: rss.xml diff --git a/_defaults/pages.md b/_defaults/pages.md new file mode 100644 index 0000000..ad063cb --- /dev/null +++ b/_defaults/pages.md @@ -0,0 +1,10 @@ +--- +layout: default.liquid +--- +## Blog! + +{% for post in collections.posts.pages %} +#### {{post.title}} + +[{{ post.title }}]({{ post.permalink }}) +{% endfor %} diff --git a/_defaults/posts.md b/_defaults/posts.md new file mode 100644 index 0000000..cf88955 --- /dev/null +++ b/_defaults/posts.md @@ -0,0 +1,10 @@ +--- +layout: default.liquid + +title: First Post +is_draft: true +--- + +# This is our first Post! + +Welcome to the first post ever on cobalt.rs! diff --git a/_layouts/default.liquid b/_layouts/default.liquid new file mode 100644 index 0000000..8b79e63 --- /dev/null +++ b/_layouts/default.liquid @@ -0,0 +1,13 @@ + + + + + {{ page.title }} + + +
+

{{ page.title }}

+ {{ page.content }} +
+ + diff --git a/index.md b/index.md new file mode 100644 index 0000000..0a63759 --- /dev/null +++ b/index.md @@ -0,0 +1,11 @@ +--- +title: "" +layout: default.liquid +--- +## Knowledge Base for M-Labs + +{% for post in collections.posts.pages %} +#### {{post.title}} + +[{{ post.title }}]({{ post.permalink }}) +{% endfor %}