diff --git a/exampleSite/content/about/index.md b/exampleSite/content/about/index.md index b5e7d67..301d20a 100644 --- a/exampleSite/content/about/index.md +++ b/exampleSite/content/about/index.md @@ -7,6 +7,8 @@ resources: credits: "[Angelina Litvin](https://unsplash.com/@linalitvina) on [Unsplash](https://unsplash.com/s/photos/writing)" --- + + {{< columns size=small >}} {{< img name=profile lazy=false size=profile >}} @@ -50,6 +52,8 @@ Dolor sit, sumo unique argument um no. Gracie nominal id xiv. Romanesque acclima --- +
+ ## Skills @@ -61,8 +65,12 @@ Dolor sit, sumo unique argument um no. Gracie nominal id xiv. Romanesque acclima +
+ --- +
+ ## Contact @@ -77,3 +85,5 @@ Dolor sit, sumo unique argument um no. Gracie nominal id xiv. Romanesque acclima + +
diff --git a/layouts/partials/metadata.html b/layouts/partials/metadata.html index 8acd5bf..022511c 100644 --- a/layouts/partials/metadata.html +++ b/layouts/partials/metadata.html @@ -1,4 +1,4 @@ - + - + {{ if eq .Params.weight 1 }} - + @@ -28,12 +28,12 @@ {{ $author := index $.Site.Data.authors . }} {{ with $.Site.GetPage (printf "/authors/%s" . | urlize) }} {{ if eq $ac 0 }} - + {{ else }} - + {{ end }} @@ -48,12 +48,12 @@ {{ $name := . }} {{ with $.Site.GetPage (printf "/tags/%s" $name | urlize) }} {{ if eq $tc 0 }} - + {{ else }} - + {{ end }} diff --git a/src/sass/_print.scss b/src/sass/_print.scss index 4b25185..b8c4330 100644 --- a/src/sass/_print.scss +++ b/src/sass/_print.scss @@ -1,18 +1,19 @@ @media print { .gblog-nav, - .gblog-footer .container div:not(:last-child), + .gblog-header, + .gblog-footer, .gblog-paging, .gblog-post__readmore, - .gblog-post__anchor { + .gblog-post__anchor, + .gblog-post__codecopy, + .gblog-post__meta--author, + .gblog-post__meta--tag, + .gblog-post__meta--pinned { display: none; } - .gblog-header { - border-bottom: $border-1 solid $gray-300; - } - - .gblog-footer { - border-top: $border-1 solid $gray-300; + .gblog-post { + padding: 0.5em 0; } .gblog-markdown pre { @@ -21,7 +22,6 @@ } .chroma code { - border: $border-1 solid $gray-300; padding: $padding-8 !important; font-weight: normal !important; } @@ -31,8 +31,23 @@ } a, + a:visited, a:visited { - color: inherit !important; - text-decoration: none !important; + color: var(--link-color) !important; + background: none !important; + text-decoration: underline !important; + } + + h2, + h3, + h4, + .no-break-after { + break-after: avoid; + } + + pre, + blockquote, + .no-break-inside { + break-inside: avoid; } }