diff --git a/themes/default/bootstrap.theme.css b/themes/default/assets/css/bootstrap.theme.css old mode 100644 new mode 100755 similarity index 83% rename from themes/default/bootstrap.theme.css rename to themes/default/assets/css/bootstrap.theme.css index 90b1542..04943db --- a/themes/default/bootstrap.theme.css +++ b/themes/default/assets/css/bootstrap.theme.css @@ -121,6 +121,44 @@ pre code { color: #FFF !important; } +.breadcrumb { + margin-left: -1em; + margin-right: -1em; +} + +/* Main column and sidebar layout +/*---------------------------------------------*/ + +/* Sidebar modules for boxing content */ +.sidebar-module { + padding: 1rem; +} +.sidebar-module-inset { + padding: 1rem; + background-color: #f5f5f5; + border-radius: .25rem; +} +.sidebar-module-inset p:last-child, +.sidebar-module-inset ul:last-child, +.sidebar-module-inset ol:last-child { + margin-bottom: 0; +} + +/* Blog posts +/*---------------------------------------------*/ + +.blog-post { + margin-bottom: 4rem; +} +.blog-post-title { + margin-bottom: .25rem; + font-size: 2.5rem; +} +.blog-post-meta { + margin-bottom: 1.25rem; + color: #999; +} + /* Footer Styles /*---------------------------------------------*/ .footer { diff --git a/themes/default/includes/foot.twig b/themes/default/includes/foot.twig new file mode 100644 index 0000000..3ad46f1 --- /dev/null +++ b/themes/default/includes/foot.twig @@ -0,0 +1,19 @@ + + + + + + diff --git a/themes/default/includes/head.twig b/themes/default/includes/head.twig new file mode 100644 index 0000000..9b24435 --- /dev/null +++ b/themes/default/includes/head.twig @@ -0,0 +1,30 @@ + + + + + + + + + {% if meta.description %} + + {% endif %}{% if meta.robots %} + + {% endif %}{% if meta.author %} + + {% endif %} + + + {% if meta.title %}{{ meta.title }} | {% endif %}{{ site_title }} + + + + + + + + + + + + diff --git a/themes/default/includes/htmlFoot.twig b/themes/default/includes/htmlFoot.twig new file mode 100644 index 0000000..5f85cab --- /dev/null +++ b/themes/default/includes/htmlFoot.twig @@ -0,0 +1 @@ + diff --git a/themes/default/includes/htmlHead.twig b/themes/default/includes/htmlHead.twig new file mode 100644 index 0000000..ce8fe85 --- /dev/null +++ b/themes/default/includes/htmlHead.twig @@ -0,0 +1,2 @@ + + diff --git a/themes/default/includes/nav.twig b/themes/default/includes/nav.twig new file mode 100644 index 0000000..634b3e4 --- /dev/null +++ b/themes/default/includes/nav.twig @@ -0,0 +1,20 @@ + + diff --git a/themes/default/index.twig b/themes/default/index.twig old mode 100644 new mode 100755 index f5ba28b..5947fe9 --- a/themes/default/index.twig +++ b/themes/default/index.twig @@ -1,47 +1,7 @@ - - - - - - - - {% if meta.description %} - - {% endif %}{% if meta.robots %} - - {% endif %} - - - {% if meta.title %}{{ meta.title }} | {% endif %}{{ site_title }} - - - - - - - - - +{% include 'includes/htmlHead.twig' %} +{% include 'includes/head.twig' %} - - - + {% include 'includes/nav.twig' %}
@@ -50,21 +10,6 @@
- - - - - - - + {% include 'includes/foot.twig' %} - +{% include 'includes/htmlFoot.twig' %}