diff --git a/.cobalt.yml b/.cobalt.yml deleted file mode 100644 index 3dc7db5..0000000 --- a/.cobalt.yml +++ /dev/null @@ -1,6 +0,0 @@ -name: Actix-web framework -source: "." -dest: "build" -ignore: - - .git/* - - build/* diff --git a/_cobalt.yml b/_cobalt.yml new file mode 100644 index 0000000..f00fab3 --- /dev/null +++ b/_cobalt.yml @@ -0,0 +1,39 @@ +# Build options +source: "." +template_extensions: + - md + - liquid +include_drafts: false +ignore: + - .git/* + - build/* + - README.md +destination: _site + +# Site options +site: + title: ~ + description: ~ + base_url: ~ + data: ~ + +# Page/Post options +default: + excerpt_separator: "\n\n" + is_draft: false +syntax_highlight: + theme: "base16-ocean.dark" +assets: + sass: + style: Nested +pages: + default: {} +posts: + title: ~ + description: ~ + dir: posts + drafts_dir: _drafts + order: Desc + rss: ~ + jsonfeed: ~ + default: {} \ No newline at end of file diff --git a/_includes/head.liquid b/_includes/head.liquid index 5701a53..5d69d0b 100644 --- a/_includes/head.liquid +++ b/_includes/head.liquid @@ -1,7 +1,7 @@ - {{ title }} +{{ page.title }} diff --git a/_includes/header.liquid b/_includes/header.liquid index f049c95..8c3b991 100644 --- a/_includes/header.liquid +++ b/_includes/header.liquid @@ -5,10 +5,10 @@
-
  • Tutorials
  • +
  • Tutorials
  • Docs
  • Blog
  • -
  • Community
  • -
  • More
  • +
  • Community
  • +
  • More
  • diff --git a/_layouts/blog.liquid b/_layouts/blog.liquid index b8acad2..d9dbc1e 100644 --- a/_layouts/blog.liquid +++ b/_layouts/blog.liquid @@ -13,12 +13,12 @@
    - {{ content }} + {{ page.content }}
    diff --git a/_layouts/default.liquid b/_layouts/default.liquid index 3baaad7..8a52c9d 100644 --- a/_layouts/default.liquid +++ b/_layouts/default.liquid @@ -8,7 +8,7 @@ {% include "header.liquid" %}
    - {{ content }} + {{ page.content }}