diff --git a/themes/chosto/layouts/_default/single.html b/themes/chosto/layouts/_default/single.html index 038bfc0..b22010b 100644 --- a/themes/chosto/layouts/_default/single.html +++ b/themes/chosto/layouts/_default/single.html @@ -5,8 +5,12 @@ with all other blog posts belonging to that case, emphasis to the current. Still use empty container if nothing to show for homogeneous layout --> -
-
- {{ end }} \ No newline at end of file + +{{ end }} \ No newline at end of file diff --git a/themes/chosto/layouts/shortcodes/quote.html b/themes/chosto/layouts/shortcodes/quote.html index df3fb8d..8c78289 100644 --- a/themes/chosto/layouts/shortcodes/quote.html +++ b/themes/chosto/layouts/shortcodes/quote.html @@ -1 +1 @@ -
{{ .Inner }}
\ No newline at end of file +
{{ .Inner | markdownify}}
\ No newline at end of file diff --git a/themes/chosto/static/css/custom.css b/themes/chosto/static/css/custom.css index 00c395b..0bd71dc 100644 --- a/themes/chosto/static/css/custom.css +++ b/themes/chosto/static/css/custom.css @@ -22,7 +22,7 @@ } /* Justify all content but not titles */ -p:not(.title,.subtitle) { +p:not(.title, .subtitle) { text-align: justify; } @@ -43,4 +43,13 @@ figure img { .menu-label { text-justify: none; +} + +/* Workaround for horizontal scrollbar, +probably because I'm messing with containers, +sections and columns, but I do not understand +CSS enough to fix it properly. +See https://github.com/jgthms/bulma/issues/449 */ +body { + overflow-x: hidden; } \ No newline at end of file