diff --git a/src/styles/blog.sass b/src/styles/blog.sass index 85523e71..1548dbbd 100644 --- a/src/styles/blog.sass +++ b/src/styles/blog.sass @@ -15,77 +15,37 @@ @import "../../node_modules/bootstrap/scss/code" @import "../../node_modules/bootstrap/scss/grid" -@import "../../node_modules/bootstrap/scss/tables" -@import "../../node_modules/bootstrap/scss/forms" @import "../../node_modules/bootstrap/scss/buttons" -@import "../../node_modules/bootstrap/scss/transitions" @import "../../node_modules/bootstrap/scss/dropdown" -@import "../../node_modules/bootstrap/scss/button-group" -@import "../../node_modules/bootstrap/scss/input-group" @import "../../node_modules/bootstrap/scss/custom-forms" @import "../../node_modules/bootstrap/scss/nav" @import "../../node_modules/bootstrap/scss/navbar" -@import "../../node_modules/bootstrap/scss/card" -@import "../../node_modules/bootstrap/scss/breadcrumb" -@import "../../node_modules/bootstrap/scss/pagination" -@import "../../node_modules/bootstrap/scss/badge" @import "../../node_modules/bootstrap/scss/jumbotron" -@import "../../node_modules/bootstrap/scss/alert" -@import "../../node_modules/bootstrap/scss/progress" @import "../../node_modules/bootstrap/scss/media" -@import "../../node_modules/bootstrap/scss/list-group" @import "../../node_modules/bootstrap/scss/close" @import "../../node_modules/bootstrap/scss/modal" @import "../../node_modules/bootstrap/scss/tooltip" -@import "../../node_modules/bootstrap/scss/popover" -@import "../../node_modules/bootstrap/scss/carousel" @import "../../node_modules/bootstrap/scss/utilities" -@import "../../node_modules/bootstrap/scss/print" // Pillar components. @import "apps_base" @import "components/base" @import "components/jumbotron" -@import "components/alerts" @import "components/navbar" @import "components/dropdown" @import "components/footer" @import "components/shortcode" -@import "components/statusbar" -@import "components/search" @import "components/flyout" -@import "components/forms" -@import "components/inputs" @import "components/buttons" -@import "components/popover" @import "components/tooltip" -@import "components/checkbox" @import "components/overlay" -@import "components/card" @import _comments -@import _error -@import _search - -@import components/base -@import components/alerts -@import components/navbar -@import components/footer -@import components/shortcode -@import components/statusbar -@import components/search -@import components/flyout -@import components/forms -@import components/inputs -@import components/buttons -@import components/popover -@import components/tooltip -@import components/checkbox -@import components/overlay +@import _notifications #blog_container +media-xs diff --git a/src/templates/layout.pug b/src/templates/layout.pug index b2fc6470..3bb5029a 100644 --- a/src/templates/layout.pug +++ b/src/templates/layout.pug @@ -43,7 +43,6 @@ html(lang="en") | {% block css %} link(href="{{ url_for('static_pillar', filename='assets/css/font-pillar.css') }}", rel="stylesheet") - link(href="{{ url_for('static_pillar', filename='assets/css/base.css') }}", rel="stylesheet") | {% if title == 'blog' %} link(href="{{ url_for('static_pillar', filename='assets/css/blog.css') }}", rel="stylesheet") | {% else %} diff --git a/src/templates/nodes/custom/blog/index.pug b/src/templates/nodes/custom/blog/index.pug index d5381689..6599f11c 100644 --- a/src/templates/nodes/custom/blog/index.pug +++ b/src/templates/nodes/custom/blog/index.pug @@ -3,11 +3,6 @@ | {% set title = 'blog' %} | {% block page_title %}Blog{% endblock%} -| {% block css %} -| {{ super() }} -link(href="{{ url_for('static_pillar', filename='assets/css/blog.css') }}", rel="stylesheet") -| {% endblock %} - | {% block project_context %} | {{ blogmacros.render_blog_index(project, posts, can_create_blog_posts, api, more_posts_available, posts_meta) }} | {% endblock %} diff --git a/src/templates/nodes/custom/post/view.pug b/src/templates/nodes/custom/post/view.pug index 28426b8f..7b30e905 100644 --- a/src/templates/nodes/custom/post/view.pug +++ b/src/templates/nodes/custom/post/view.pug @@ -19,11 +19,6 @@ meta(property="og:image", content="{{ node.picture.thumbnail('l', api=api) }}") | {% block page_title %}{{node.name}} - Blog{% endblock%} -| {% block css %} -| {{ super() }} -link(href="{{ url_for('static_pillar', filename='assets/css/blog.css') }}", rel="stylesheet") -| {% endblock %} - | {% block project_context %} | {% include 'nodes/custom/post/view_embed.html' %} | {% endblock %}