diff --git a/assets/css/index.css b/assets/css/index.css index 7bed948..34dfef7 100644 --- a/assets/css/index.css +++ b/assets/css/index.css @@ -1,176 +1,424 @@ -:root { - --content-width: 65rem; -} - -*, -*:after, -*:before{ +* { margin: 0; padding: 0; - box-sizing: border-box; +} + +:root { + --padding: 1.5rem; + --color-black: #000; + --color-white: #fff; + --color-grey: #777; + --color-light: #efefef; + --color-text: var(--color-black); + --color-text-grey: var(--color-grey); + --color-background: var(--color-white); + --color-code-light-grey: #cacbd1; + --color-code-comment: #a9aaad; + --color-code-white: #c5c9c6; + --color-code-red: #d16464; + --color-code-orange: #de935f; + --color-code-yellow: #f0c674; + --color-code-green: #a7bd68; + --color-code-aqua: #8abeb7; + --color-code-blue: #7e9abf; + --color-code-purple: #b294bb; + --font-family-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; + --font-family-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace; } html { - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";; + font-family: var(--font-family-sans); + color: var(--color-text); + background: var(--color-background); +} +img { + width: 100%; +} +body { + padding: var(--padding); + max-width: 70rem; + margin: 0 auto; } - li { list-style: none; } - a { color: currentColor; text-decoration: none; } - +button { + font: inherit; + background: none; + border: 0; + color: currentColor; + cursor: pointer; +} strong, b { - font-weight: 500; -} - -img { - width: 100%; -} - -.page { - padding: 5vh 5vw 10vh; -} -.page > * { - max-width: var(--content-width); - margin: 0 auto; -} - -.header { - margin-bottom: 1.5rem; -} - -.header a { - position: relative; - text-transform: uppercase; - font-size: .875rem; - letter-spacing: .05em; - padding: .5rem 0; - font-weight: 700; -} - -.header .logo { - display: block; - margin-bottom: 1.5rem; - padding: .5rem 0; -} - -.header { - display: flex; - flex-direction: column; - align-items: center; -} - -.menu a { - margin: 0 .75rem; -} - -.menu a[aria-current] { - border-bottom: 2px solid #000; -} - -@media screen and (min-width: 40rem) { - .header .logo { - margin-bottom: 0; - } - .header { - flex-direction: row; - justify-content: space-between; - } - .menu { - margin-right: -.75rem; - } -} - - -main { - min-height: calc(100vh - 10rem); -} - -.intro { - padding: 10vh 0; - text-align: center; -} - -.intro h1 { - position: relative; - margin-bottom: 1rem; - font-weight: 900; - font-size: calc(1vw + 2rem); - z-index: 1; -} - -.tags { - text-align: center; - text-transform: uppercase; - letter-spacing: 0.075em; - font-size: .75rem; font-weight: 600; } +small { + font-size: inherit; + color: var(--color-text-grey); +} + +.bg-light { + background-color: var(--color-light); +} +.color-grey { + color: var(--color-text-grey); +} + +.header { + position: relative; + display: flex; + flex-wrap: wrap; + justify-content: space-between; + margin-right: -1rem; + margin-left: -1rem; + margin-bottom: 6rem; +} + +.logo { + padding: 1rem; + display: flex; + align-items: center; + font-weight: 600; + cursor: pointer; +} + +.menu { + display: flex; +} +.menu a { + padding: 1rem; + display: block; +} +.menu a[aria-current] { + text-decoration: underline; +} + +.social { + display: flex; + padding: 0 .5rem; +} +.social a { + padding: 1rem .5rem; +} + +.section { + padding: 3rem 0; +} + +.grid { + --columns: 12; + --gutter: 3rem; + display: grid; + grid-gap: var(--gutter); + grid-template-columns: 1fr; +} +.grid > .column { + margin-bottom: var(--gutter); +} + +.autogrid { + --gutter: 3rem; + --min: 10rem; + display: grid; + grid-gap: var(--gutter); + grid-template-columns: repeat(auto-fit, minmax(var(--min), 1fr)); + grid-auto-flow: dense; +} + +h1, h2, h3, h4, h5, h6 { + font-size: inherit; + font-weight: inherit; + line-height: inherit; +} .text { line-height: 1.5em; } -.text p, -.text figure, -.text ul, -.text ol { - margin-bottom: 1.5em; +.text a { + text-decoration: underline; } -.text h2 { - font-size: 1.5rem; - font-weight: 700; - margin-top: 3rem; - margin-bottom: 1.5rem; - text-align: center; -} -.text > *:first-child { +.text :first-child { margin-top: 0; } -.text a { - position: relative; - white-space: nowrap; - font-weight: 500; - z-index: 1; +.text :last-child { + margin-bottom: 0; +} +.text p, +.text ul, +.text ol { + margin-bottom: 1.5rem; +} +.text ul, +.text ol { + margin-left: 1rem; +} +.text ul p, +.text ol p { + margin-bottom: 0; +} +.text ul > li { + list-style: disc; +} +.text ol > li { + list-style: decimal; +} +.text ul ol, +.text ul ul, +.text ol ul, +.text ol ol { + margin-bottom: 0; +} +.text h1, +.h1, +.intro { + font-size: 2rem; + margin-bottom: 3rem; + line-height: 1.25em; +} +.text h2, +.h2 { + font-size: 1.25rem; + font-weight: 600; + margin-bottom: 1.25rem; +} +.text h3, +.h3 { + font-weight: 600; +} +.text .codeblock { + display: grid; +} +.text code { + font-family: var(--font-family-mono); + font-size: 1em; + background: var(--color-light); + padding: 0 .5rem; display: inline-block; - border-bottom: 2px solid #000; + color: var(--color-black); +} +.text pre { + margin: 3rem 0; + background: var(--color-black); + color: var(--color-white); + padding: 1.5rem; + overflow-x: scroll; + overflow-y: hidden; + line-height: 1.5rem; +} +.text pre code { + padding: 0; + background: none; + color: inherit; +} +.text hr { + margin: 6rem 0; +} +.text dt { + font-weight: 600; +} +.text blockquote { + font-size: 1.25rem; + line-height: 1.325em; + border-left: 2px solid var(--color-black); + padding-left: 1rem; + margin: 3rem 0; + max-width: 25rem; +} +.text blockquote footer { + font-size: .875rem; + font-style: italic; } .text figure { - padding-top: 1.5rem; - padding-bottom: 1.5rem; + margin: 3rem 0; } -.text img { +.text figcaption { + padding-top: .75rem; + color: var(--color-text-grey); +} + +hr { + border: 0; + background: currentColor; + height: 2px; + width: 1.5rem; + margin: 3rem auto; +} + +.align-center { + text-align: center; +} + +.intro { + max-width: 40rem; +} +.intro *:not(:last-child) { + margin-bottom: 1em; +} + +.cta { + background: var(--color-black); + color: var(--color-white); + display: inline-flex; + justify-content: center; + padding: .75rem 1.5rem; + border: 4px solid var(--color-white); + outline: 2px solid var(--color-black); +} + +.box { + background: var(--color-light); + padding: 1.5rem; + border: 4px solid var(--color-white); + outline: 2px solid var(--color-light); +} + +.video, +.img { + position: relative; + display: block; + --w: 1; + --h: 1; + padding-bottom: calc(100% / var(--w) * var(--h)); + background: var(--color-black); +} +.img img, +.video iframe { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; width: 100%; + height: 100%; + object-fit: cover; + border: 0; +} +.img[data-contain] img { + object-fit: contain; +} +.img-caption, +.video-caption { + padding-top: .75rem; + line-height: 1.5em; } .footer { - padding: 1.5rem 5vw 10vh; - text-align: center; - max-width: var(--content-width); - margin: 0 auto; + padding: 9rem 0 6rem; line-height: 1.5em; } -.footer a { - display: inline-block; - font-size: .875rem; -} -.footer > a { +.footer:before { + content: ""; + display: block; + width: 1.5rem; + height: 2px; + background: var(--color-black); margin-bottom: 1.5rem; - border-top: 2px solid #000; - width: 16.5rem; - padding-top: .5rem; } -.social a { - margin: 0 .75rem; - padding: .5rem 1rem; - border: 2px solid #000; - width: 7.5rem; +.footer h2 { + font-weight: 600; + margin-bottom: .75rem; } -.social a:hover { - background: #000; - color: #fff; +.footer ul, +.footer p { + color: var(--color-text-grey); } +.footer p { + max-width: 15rem; +} +.footer a:hover { + color: var(--color-text); +} + + +.map { + --w: 2; + --h: 1; + padding-bottom: calc(100% / var(--w) * var(--h)); + position: relative; + overflow: hidden; + background: var(--color-black); +} +.map iframe { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + width: 100%; + height: 100%; + border: 0; +} + +.margin-s { + margin-bottom: .75rem; +} +.margin-m { + margin-bottom: 1.5rem; +} +.margin-l { + margin-bottom: 3rem; +} +.margin-xl { + margin-bottom: 4.5rem; +} +.margin-xxl { + margin-bottom: 6rem; +} + + +@media screen and (min-width: 60rem) { + body { + --padding: 3rem; + } + + .grid { + grid-template-columns: repeat(12, 1fr); + } + .grid > .column { + grid-column: span var(--columns); + } + +} + +.pagination { + display: flex; + padding-top: 6rem; +} +.pagination > span { + color: var(--color-text-grey); +} +.pagination > * { + padding: .5rem; + width: 3rem; + text-align: center; + border: 2px solid currentColor; + margin-right: 1.5rem; +} +.pagination > a:hover { + background: var(--color-black); + color: var(--color-white); + border-color: var(--color-black); +} + +.note-excerpt { + line-height: 1.5em; +} +.note-excerpt header { + margin-bottom: 1.5rem; +} +.note-excerpt figure { + margin-bottom: .5rem; +} +.note-excerpt-title { + font-weight: 600; +} +.note-excerpt-date { + color: var(--color-text-grey); +} + + diff --git a/assets/css/lightbox.css b/assets/css/lightbox.css new file mode 100755 index 0000000..7f2ee22 --- /dev/null +++ b/assets/css/lightbox.css @@ -0,0 +1 @@ +.basicLightbox{position:fixed;display:flex;justify-content:center;align-items:center;top:0;left:0;width:100%;height:100vh;background:rgba(0,0,0,.8);opacity:.01;transition:opacity .4s ease;z-index:1000;will-change:opacity}.basicLightbox--visible{opacity:1}.basicLightbox__placeholder{max-width:100%;-webkit-transform:scale(.9);transform:scale(.9);transition:-webkit-transform .4s ease;transition:transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease;z-index:1;will-change:transform}.basicLightbox__placeholder>iframe:first-child:last-child,.basicLightbox__placeholder>img:first-child:last-child,.basicLightbox__placeholder>video:first-child:last-child{display:block;position:absolute;top:0;right:0;bottom:0;left:0;margin:auto;max-width:95%;max-height:95%}.basicLightbox__placeholder>iframe:first-child:last-child,.basicLightbox__placeholder>video:first-child:last-child{pointer-events:auto}.basicLightbox__placeholder>img:first-child:last-child,.basicLightbox__placeholder>video:first-child:last-child{width:auto;height:auto}.basicLightbox--iframe .basicLightbox__placeholder,.basicLightbox--img .basicLightbox__placeholder,.basicLightbox--video .basicLightbox__placeholder{width:100%;height:100%;pointer-events:none}.basicLightbox--visible .basicLightbox__placeholder{-webkit-transform:scale(1);transform:scale(1)} \ No newline at end of file diff --git a/assets/css/prism.css b/assets/css/prism.css new file mode 100644 index 0000000..3df1ebe --- /dev/null +++ b/assets/css/prism.css @@ -0,0 +1,136 @@ +/* PrismJS 1.19.0 +https://prismjs.com/download.html#themes=prism-tomorrow&languages=markup+css+clike+javascript+json+markup-templating+php+yaml */ +/** + * prism.js tomorrow night eighties for JavaScript, CoffeeScript, CSS and HTML + * Based on https://github.com/chriskempson/tomorrow-theme + * @author Rose Pritchard + */ + +code[class*="language-"], +pre[class*="language-"] { + color: var(--color-code-white); + font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace; + font-size: 1em; + text-align: left; + white-space: pre; + word-spacing: normal; + word-break: normal; + word-wrap: normal; + line-height: 1.5; + + -moz-tab-size: 4; + -o-tab-size: 4; + tab-size: 4; + + -webkit-hyphens: none; + -moz-hyphens: none; + -ms-hyphens: none; + hyphens: none; + +} + +/* Code blocks */ +pre[class*="language-"] { + padding: 1rem; + margin: 0 0; + overflow: auto; +} + +/* ----- Syntax Highlighting (Prism.js) ------------------------------------ */ + +.token.punctuation { + color: var(--color-code-light-grey); +} + +.token.comment, +.token.doctype { + color: var(--color-code-comment); +} + +.token.tag, +.token.markup, +.token.variable, +.token.this, +.token.selector, +.token.key, +.token.kirbytag-bracket, +.token.prolog, +.token.delimiter { + color: var(--color-code-red); +} + +.token.constant, +.token.number, +.token.boolean, +.token.boolean.important, +.token.attr-name, +.token.kirbytag-attr, +.token.kirbytag-name, +.token.entity, +.token.bold, +.token.bold > .punctuation { + color: var(--color-code-orange); +} + +.token.keyword, +.token.italic, +.token.italic > .punctuation { + color: var(--color-code-purple); +} + +.token.function { + color: var(--color-code-blue); +} + +.token.operator, +.token.title { + color: var(--color-code-aqua); +} + +.token.string, +.token.attr-value, +.token.attr-value .punctuation, +.token.list.punctuation { + color: var(--color-code-green); +} + +.token.scope, +.token.class-name, +.token.property, +.token.url { + color: var(--color-code-yellow); +} + +/** + * 1. Markdown list bullet. + */ +.token.title, +.token.kirbytag-bracket, +.token.list.punctuation /* 1 */ { + font-weight: 700; +} + +.token.title .punctuation { + color: inherit; +} + +/** + * 1. Markdown bold text + */ +.token.bold /* 1 */ { + font-weight: bold; +} + +.token.italic { + font-style: italic; +} + +.codeblock { + background: var(--color-black); +} +.codeblock figcaption { + color: var(--color-code-white); + padding: .5rem 1rem; + font-family: var(--font-family-mono); + border-bottom: 1px solid #333; +} diff --git a/assets/css/templates/about.css b/assets/css/templates/about.css index ea15bad..e303928 100644 --- a/assets/css/templates/about.css +++ b/assets/css/templates/about.css @@ -1,19 +1,7 @@ -.layout { - display: grid; - grid-template-columns: 1fr; - grid-gap: 3rem; +.contact { + padding: 3rem; + border: 2px solid #000; } - -@media screen and (min-width: 45rem) { - .layout { - grid-template-columns: 1fr 2fr; - } -} - -.layout aside section { - margin-bottom: 3rem; -} - -.layout aside h2 { - margin-bottom: .75rem; +.contact .h1 { + margin-bottom: 1.5rem; } diff --git a/assets/css/templates/album.css b/assets/css/templates/album.css index 8e55ca2..9718180 100644 --- a/assets/css/templates/album.css +++ b/assets/css/templates/album.css @@ -1,57 +1,15 @@ -.album-cover { - position: relative; - line-height: 0; - margin-bottom: 6rem; - background: #000; - padding-bottom: 75%; -} -.album-cover figcaption { - position: absolute; - display: flex; - align-items: center; - justify-content: center; - bottom: 0; - left: 0; - right: 0; - top: 0; - background: rgba(0,0,0, .5); - text-align: center; - color: #fff; - line-height: 1; - padding: 1.5rem; -} -.album-cover img { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - width: 100%; - height: 100%; -} -.album-cover h1 { - font-size: 3rem; -} -.album-text { - max-width: 40rem; - margin: 0 auto 6rem; - text-align: center; -} .album-gallery { - display: grid; - grid-template-columns: repeat(3, 1fr); - align-items: center; - margin: 0 auto; - grid-gap: 1rem; - max-width: calc(var(--content-width) - 15rem); - justify-content: center; + line-height: 0; + columns: 1; + column-gap: 1.5rem; } -.album-gallery[data-even] { - grid-template-columns: repeat(4, 1fr); +.album-gallery li { + display: block; + margin-bottom: 1.5rem; + break-inside: avoid; } -.album-gallery[data-count="1"] { - grid-template-columns: 1fr; -} -.album-gallery[data-count="2"] { - grid-template-columns: 1fr 1fr; +@media screen and (min-width: 60rem) { + .album-gallery { + columns: 2; + } } diff --git a/assets/css/templates/default.css b/assets/css/templates/default.css deleted file mode 100644 index 5929d9c..0000000 --- a/assets/css/templates/default.css +++ /dev/null @@ -1,4 +0,0 @@ -.text { - max-width: 35rem; - margin: 0 auto; -} diff --git a/assets/css/templates/home.css b/assets/css/templates/home.css index 861b9d8..44f7c46 100644 --- a/assets/css/templates/home.css +++ b/assets/css/templates/home.css @@ -1,12 +1,12 @@ -.grid { +.home-grid { display: grid; list-style: none; - grid-gap: 1rem; + grid-gap: 1.5rem; line-height: 0; grid-template-columns: repeat(1, 1fr); grid-auto-flow: dense; } -.grid li { +.home-grid li { position: relative; --cols: 1; --rows: 1; @@ -15,24 +15,24 @@ background: #000; line-height: 0; } -.grid li:first-child { +.home-grid li:first-child { --cols: 2; --rows: 2; } -.grid li:nth-child(5) { +.home-grid li:nth-child(5) { --cols: 2; } -.grid li:nth-child(6) { +.home-grid li:nth-child(6) { --rows: 2; } -.grid li:nth-child(7) { +.home-grid li:nth-child(7) { --cols: 2; } -.grid a { +.home-grid a { display: block; height: 10rem; } -.grid img { +.home-grid img { position: absolute; top: 0; right: 0; @@ -43,7 +43,7 @@ object-fit: cover; transition: all .3s; } -.grid figcaption { +.home-grid figcaption { display: flex; align-items: center; justify-content: center; @@ -56,21 +56,17 @@ line-height: 1; text-align: center; background: rgba(0,0,0, .5); - text-transform: uppercase; - font-size: .875rem; - letter-spacing: .125em; - font-weight: 600; } @media screen and (min-width: 45em) { - .grid { + .home-grid { grid-template-columns: repeat(3, 1fr); } - .grid li { + .home-grid li { grid-column-start: span var(--cols); grid-row-start: span var(--rows); } - .grid a { + .home-grid a { padding-bottom: 52.65%; } } diff --git a/assets/css/templates/note.css b/assets/css/templates/note.css old mode 100644 new mode 100755 index fc33691..05badf3 --- a/assets/css/templates/note.css +++ b/assets/css/templates/note.css @@ -3,31 +3,28 @@ margin: 0 auto; } .note-header { - text-align: center; + padding-top: 3rem; + margin-bottom: 3rem; +} +.note-footer { + padding: 6rem 0; } .note-date { - margin-bottom: .5rem; - display: block; + color: var(--color-text-grey); } - -.gallery { - display: grid; - grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr)); - grid-gap: 1.5rem; +.note-tags { + display: flex; margin-bottom: 1.5rem; - padding: 3rem 0; } -.gallery figure a { - border: 0; +.note-tags li { + margin-right: .5rem; } -.gallery figure { - margin: 0; - padding: 0; +.note-tags a { + padding: .5rem 1rem; + display: block; + background: var(--color-light); } - -@media screen and (min-width: 45rem) { - .gallery { - margin-left: -3rem; - margin-right: -3rem; - } +.note-tags a:hover { + background: var(--color-black); + color: var(--color-white); } diff --git a/assets/css/templates/notes.css b/assets/css/templates/notes.css deleted file mode 100644 index b9d78b2..0000000 --- a/assets/css/templates/notes.css +++ /dev/null @@ -1,20 +0,0 @@ -.notes { - display: grid; - grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr)); - grid-gap: 1.5rem; - grid-auto-rows: 1fr; -} -.note { - border: 2px solid #000; -} -.note a { - display: block; - padding: 1rem; - line-height: 1.25em; -} -.note h2 { - font-size: 1rem; -} -.note time { - font-size: .75rem; -} diff --git a/assets/css/templates/photography.css b/assets/css/templates/photography.css deleted file mode 100644 index 5b8ae49..0000000 --- a/assets/css/templates/photography.css +++ /dev/null @@ -1,62 +0,0 @@ -.albums { - display: grid; - list-style: none; - grid-gap: 1rem; - line-height: 0; -} - -@media screen and (min-width: 30em) { - .albums { - grid-template-columns: repeat(2, 1fr); - } -} -@media screen and (min-width: 60em) { - .albums { - grid-template-columns: repeat(3, 1fr); - } - .albums[data-even] { - grid-template-columns: repeat(4, 1fr); - } -} - - -.albums li { - overflow: hidden; - background: #000; -} -.albums figure { - position: relative; - padding-bottom: 125%; -} -.albums figcaption { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - color: #fff; - background: rgba(0,0,0, .5); - display: flex; - justify-content: space-between; - align-items: flex-end; - line-height: 1.5em; - padding: 1rem; - font-size: .875rem; - font-weight: 600; - text-transform: uppercase; - letter-spacing: .125em; -} -.albums img { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - width: 100%; - height: 100%; - object-fit: cover; - transition: all .3s; -} -.albums img:hover { - opacity: .2; -} diff --git a/assets/icons/discord.svg b/assets/icons/discord.svg new file mode 100644 index 0000000..dba290e --- /dev/null +++ b/assets/icons/discord.svg @@ -0,0 +1 @@ + diff --git a/assets/icons/instagram.svg b/assets/icons/instagram.svg new file mode 100644 index 0000000..b2c5425 --- /dev/null +++ b/assets/icons/instagram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/twitter.svg b/assets/icons/twitter.svg new file mode 100644 index 0000000..683d57e --- /dev/null +++ b/assets/icons/twitter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/js/index.js b/assets/js/index.js new file mode 100755 index 0000000..eefdce2 --- /dev/null +++ b/assets/js/index.js @@ -0,0 +1,7 @@ +// Lightbox +Array.from(document.querySelectorAll("[data-lightbox]")).forEach(element => { + element.onclick = (e) => { + e.preventDefault(); + basicLightbox.create(``).show(); + }; +}); diff --git a/assets/js/lightbox.js b/assets/js/lightbox.js new file mode 100755 index 0000000..30344f7 --- /dev/null +++ b/assets/js/lightbox.js @@ -0,0 +1 @@ +!function(e){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=e();else if("function"==typeof define&&define.amd)define([],e);else{("undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this).basicLightbox=e()}}(function(){return function i(c,u,a){function s(n,e){if(!u[n]){if(!c[n]){var t="function"==typeof require&&require;if(!e&&t)return t(n,!0);if(l)return l(n,!0);var o=new Error("Cannot find module '"+n+"'");throw o.code="MODULE_NOT_FOUND",o}var r=u[n]={exports:{}};c[n][0].call(r.exports,function(e){return s(c[n][1][e]||e)},r,r.exports,i,c,u,a)}return u[n].exports}for(var l="function"==typeof require&&require,e=0;e\n\t\t\t\n\t\t\n\t')),o=t.querySelector(".basicLightbox__placeholder");e.forEach(function(e){return o.appendChild(e)});var r=a(o,"IMG"),i=a(o,"VIDEO"),c=a(o,"IFRAME");return!0===r&&t.classList.add("basicLightbox--img"),!0===i&&t.classList.add("basicLightbox--video"),!0===c&&t.classList.add("basicLightbox--iframe"),t}(e=function(e){var n="string"==typeof e,t=e instanceof HTMLElement==1;if(!1===n&&!1===t)throw new Error("Content must be a DOM element/node or string");return!0===n?Array.from(u(e,!0)):"TEMPLATE"===e.tagName?[e.content.cloneNode(!0)]:Array.from(e.children)}(e),o=function(){var e=0e.length)return;if(!(k instanceof _)){if(h&&y!=n.length-1){if(c.lastIndex=v,!(O=c.exec(e)))break;for(var b=O.index+(f&&O[1]?O[1].length:0),w=O.index+O[0].length,A=y,P=v,x=n.length;A"+r.content+""},!u.document)return u.addEventListener&&(C.disableWorkerMessageHandler||u.addEventListener("message",function(e){var n=JSON.parse(e.data),r=n.language,t=n.code,a=n.immediateClose;u.postMessage(C.highlight(t,C.languages[r],r)),a&&u.close()},!1)),C;var e=C.util.currentScript();function r(){C.manual||C.highlightAll()}if(e&&(C.filename=e.src,e.hasAttribute("data-manual")&&(C.manual=!0)),!C.manual){var t=document.readyState;"loading"===t||"interactive"===t&&e&&e.defer?document.addEventListener("DOMContentLoaded",r):window.requestAnimationFrame?window.requestAnimationFrame(r):window.setTimeout(r,16)}return C}(_self);"undefined"!=typeof module&&module.exports&&(module.exports=Prism),"undefined"!=typeof global&&(global.Prism=Prism); +Prism.languages.markup={comment://,prolog:/<\?[\s\S]+?\?>/,doctype:{pattern:/"'[\]]|"[^"]*"|'[^']*')+(?:\[(?:(?!)*\]\s*)?>/i,greedy:!0},cdata://i,tag:{pattern:/<\/?(?!\d)[^\s>\/=$<%]+(?:\s(?:\s*[^\s>\/=]+(?:\s*=\s*(?:"[^"]*"|'[^']*'|[^\s'">=]+(?=[\s>]))|(?=[\s/>])))+)?\s*\/?>/i,greedy:!0,inside:{tag:{pattern:/^<\/?[^\s>\/]+/i,inside:{punctuation:/^<\/?/,namespace:/^[^\s>\/:]+:/}},"attr-value":{pattern:/=\s*(?:"[^"]*"|'[^']*'|[^\s'">=]+)/i,inside:{punctuation:[/^=/,{pattern:/^(\s*)["']|["']$/,lookbehind:!0}]}},punctuation:/\/?>/,"attr-name":{pattern:/[^\s>\/]+/,inside:{namespace:/^[^\s>\/:]+:/}}}},entity:/&#?[\da-z]{1,8};/i},Prism.languages.markup.tag.inside["attr-value"].inside.entity=Prism.languages.markup.entity,Prism.hooks.add("wrap",function(a){"entity"===a.type&&(a.attributes.title=a.content.replace(/&/,"&"))}),Object.defineProperty(Prism.languages.markup.tag,"addInlined",{value:function(a,e){var s={};s["language-"+e]={pattern:/(^$)/i,lookbehind:!0,inside:Prism.languages[e]},s.cdata=/^$/i;var n={"included-cdata":{pattern://i,inside:s}};n["language-"+e]={pattern:/[\s\S]+/,inside:Prism.languages[e]};var t={};t[a]={pattern:RegExp("(<__[\\s\\S]*?>)(?:\\s*|[\\s\\S])*?(?=<\\/__>)".replace(/__/g,a),"i"),lookbehind:!0,greedy:!0,inside:n},Prism.languages.insertBefore("markup","cdata",t)}}),Prism.languages.xml=Prism.languages.extend("markup",{}),Prism.languages.html=Prism.languages.markup,Prism.languages.mathml=Prism.languages.markup,Prism.languages.svg=Prism.languages.markup; +!function(s){var t=/("|')(?:\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/;s.languages.css={comment:/\/\*[\s\S]*?\*\//,atrule:{pattern:/@[\w-]+[\s\S]*?(?:;|(?=\s*\{))/,inside:{rule:/@[\w-]+/}},url:{pattern:RegExp("url\\((?:"+t.source+"|[^\n\r()]*)\\)","i"),inside:{function:/^url/i,punctuation:/^\(|\)$/}},selector:RegExp("[^{}\\s](?:[^{};\"']|"+t.source+")*?(?=\\s*\\{)"),string:{pattern:t,greedy:!0},property:/[-_a-z\xA0-\uFFFF][-\w\xA0-\uFFFF]*(?=\s*:)/i,important:/!important\b/i,function:/[-a-z0-9]+(?=\()/i,punctuation:/[(){};:,]/},s.languages.css.atrule.inside.rest=s.languages.css;var e=s.languages.markup;e&&(e.tag.addInlined("style","css"),s.languages.insertBefore("inside","attr-value",{"style-attr":{pattern:/\s*style=("|')(?:\\[\s\S]|(?!\1)[^\\])*\1/i,inside:{"attr-name":{pattern:/^\s*style/i,inside:e.tag.inside},punctuation:/^\s*=\s*['"]|['"]\s*$/,"attr-value":{pattern:/.+/i,inside:s.languages.css}},alias:"language-css"}},e.tag))}(Prism); +Prism.languages.clike={comment:[{pattern:/(^|[^\\])\/\*[\s\S]*?(?:\*\/|$)/,lookbehind:!0},{pattern:/(^|[^\\:])\/\/.*/,lookbehind:!0,greedy:!0}],string:{pattern:/(["'])(?:\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/,greedy:!0},"class-name":{pattern:/(\b(?:class|interface|extends|implements|trait|instanceof|new)\s+|\bcatch\s+\()[\w.\\]+/i,lookbehind:!0,inside:{punctuation:/[.\\]/}},keyword:/\b(?:if|else|while|do|for|return|in|instanceof|function|new|try|throw|catch|finally|null|break|continue)\b/,boolean:/\b(?:true|false)\b/,function:/\w+(?=\()/,number:/\b0x[\da-f]+\b|(?:\b\d+\.?\d*|\B\.\d+)(?:e[+-]?\d+)?/i,operator:/[<>]=?|[!=]=?=?|--?|\+\+?|&&?|\|\|?|[?*/~^%]/,punctuation:/[{}[\];(),.:]/}; +Prism.languages.javascript=Prism.languages.extend("clike",{"class-name":[Prism.languages.clike["class-name"],{pattern:/(^|[^$\w\xA0-\uFFFF])[_$A-Z\xA0-\uFFFF][$\w\xA0-\uFFFF]*(?=\.(?:prototype|constructor))/,lookbehind:!0}],keyword:[{pattern:/((?:^|})\s*)(?:catch|finally)\b/,lookbehind:!0},{pattern:/(^|[^.]|\.\.\.\s*)\b(?:as|async(?=\s*(?:function\b|\(|[$\w\xA0-\uFFFF]|$))|await|break|case|class|const|continue|debugger|default|delete|do|else|enum|export|extends|for|from|function|get|if|implements|import|in|instanceof|interface|let|new|null|of|package|private|protected|public|return|set|static|super|switch|this|throw|try|typeof|undefined|var|void|while|with|yield)\b/,lookbehind:!0}],number:/\b(?:(?:0[xX](?:[\dA-Fa-f](?:_[\dA-Fa-f])?)+|0[bB](?:[01](?:_[01])?)+|0[oO](?:[0-7](?:_[0-7])?)+)n?|(?:\d(?:_\d)?)+n|NaN|Infinity)\b|(?:\b(?:\d(?:_\d)?)+\.?(?:\d(?:_\d)?)*|\B\.(?:\d(?:_\d)?)+)(?:[Ee][+-]?(?:\d(?:_\d)?)+)?/,function:/#?[_$a-zA-Z\xA0-\uFFFF][$\w\xA0-\uFFFF]*(?=\s*(?:\.\s*(?:apply|bind|call)\s*)?\()/,operator:/--|\+\+|\*\*=?|=>|&&|\|\||[!=]==|<<=?|>>>?=?|[-+*/%&|^!=<>]=?|\.{3}|\?[.?]?|[~:]/}),Prism.languages.javascript["class-name"][0].pattern=/(\b(?:class|interface|extends|implements|instanceof|new)\s+)[\w.\\]+/,Prism.languages.insertBefore("javascript","keyword",{regex:{pattern:/((?:^|[^$\w\xA0-\uFFFF."'\])\s])\s*)\/(?:\[(?:[^\]\\\r\n]|\\.)*]|\\.|[^/\\\[\r\n])+\/[gimyus]{0,6}(?=(?:\s|\/\*[\s\S]*?\*\/)*(?:$|[\r\n,.;:})\]]|\/\/))/,lookbehind:!0,greedy:!0},"function-variable":{pattern:/#?[_$a-zA-Z\xA0-\uFFFF][$\w\xA0-\uFFFF]*(?=\s*[=:]\s*(?:async\s*)?(?:\bfunction\b|(?:\((?:[^()]|\([^()]*\))*\)|[_$a-zA-Z\xA0-\uFFFF][$\w\xA0-\uFFFF]*)\s*=>))/,alias:"function"},parameter:[{pattern:/(function(?:\s+[_$A-Za-z\xA0-\uFFFF][$\w\xA0-\uFFFF]*)?\s*\(\s*)(?!\s)(?:[^()]|\([^()]*\))+?(?=\s*\))/,lookbehind:!0,inside:Prism.languages.javascript},{pattern:/[_$a-z\xA0-\uFFFF][$\w\xA0-\uFFFF]*(?=\s*=>)/i,inside:Prism.languages.javascript},{pattern:/(\(\s*)(?!\s)(?:[^()]|\([^()]*\))+?(?=\s*\)\s*=>)/,lookbehind:!0,inside:Prism.languages.javascript},{pattern:/((?:\b|\s|^)(?!(?:as|async|await|break|case|catch|class|const|continue|debugger|default|delete|do|else|enum|export|extends|finally|for|from|function|get|if|implements|import|in|instanceof|interface|let|new|null|of|package|private|protected|public|return|set|static|super|switch|this|throw|try|typeof|undefined|var|void|while|with|yield)(?![$\w\xA0-\uFFFF]))(?:[_$A-Za-z\xA0-\uFFFF][$\w\xA0-\uFFFF]*\s*)\(\s*)(?!\s)(?:[^()]|\([^()]*\))+?(?=\s*\)\s*\{)/,lookbehind:!0,inside:Prism.languages.javascript}],constant:/\b[A-Z](?:[A-Z_]|\dx?)*\b/}),Prism.languages.insertBefore("javascript","string",{"template-string":{pattern:/`(?:\\[\s\S]|\${(?:[^{}]|{(?:[^{}]|{[^}]*})*})+}|(?!\${)[^\\`])*`/,greedy:!0,inside:{"template-punctuation":{pattern:/^`|`$/,alias:"string"},interpolation:{pattern:/((?:^|[^\\])(?:\\{2})*)\${(?:[^{}]|{(?:[^{}]|{[^}]*})*})+}/,lookbehind:!0,inside:{"interpolation-punctuation":{pattern:/^\${|}$/,alias:"punctuation"},rest:Prism.languages.javascript}},string:/[\s\S]+/}}}),Prism.languages.markup&&Prism.languages.markup.tag.addInlined("script","javascript"),Prism.languages.js=Prism.languages.javascript; +Prism.languages.json={property:{pattern:/"(?:\\.|[^\\"\r\n])*"(?=\s*:)/,greedy:!0},string:{pattern:/"(?:\\.|[^\\"\r\n])*"(?!\s*:)/,greedy:!0},comment:/\/\/.*|\/\*[\s\S]*?(?:\*\/|$)/,number:/-?\d+\.?\d*(?:e[+-]?\d+)?/i,punctuation:/[{}[\],]/,operator:/:/,boolean:/\b(?:true|false)\b/,null:{pattern:/\bnull\b/,alias:"keyword"}}; +!function(h){function v(e,n){return"___"+e.toUpperCase()+n+"___"}Object.defineProperties(h.languages["markup-templating"]={},{buildPlaceholders:{value:function(a,r,e,o){if(a.language===r){var c=a.tokenStack=[];a.code=a.code.replace(e,function(e){if("function"==typeof o&&!o(e))return e;for(var n,t=c.length;-1!==a.code.indexOf(n=v(r,t));)++t;return c[t]=e,n}),a.grammar=h.languages.markup}}},tokenizePlaceholders:{value:function(p,k){if(p.language===k&&p.tokenStack){p.grammar=h.languages[k];var m=0,d=Object.keys(p.tokenStack);!function e(n){for(var t=0;t=d.length);t++){var a=n[t];if("string"==typeof a||a.content&&"string"==typeof a.content){var r=d[m],o=p.tokenStack[r],c="string"==typeof a?a:a.content,i=v(k,r),u=c.indexOf(i);if(-1$|^<\?(?:php(?=\s)|=)?/i,alias:"important"}}),n.languages.insertBefore("php","keyword",{variable:/\$+(?:\w+\b|(?={))/i,package:{pattern:/(\\|namespace\s+|use\s+)[\w\\]+/,lookbehind:!0,inside:{punctuation:/\\/}}}),n.languages.insertBefore("php","operator",{property:{pattern:/(->)[\w]+/,lookbehind:!0}});var e={pattern:/{\$(?:{(?:{[^{}]+}|[^{}]+)}|[^{}])+}|(^|[^\\{])\$+(?:\w+(?:\[.+?]|->\w+)*)/,lookbehind:!0,inside:n.languages.php};n.languages.insertBefore("php","string",{"nowdoc-string":{pattern:/<<<'([^']+)'(?:\r\n?|\n)(?:.*(?:\r\n?|\n))*?\1;/,greedy:!0,alias:"string",inside:{delimiter:{pattern:/^<<<'[^']+'|[a-z_]\w*;$/i,alias:"symbol",inside:{punctuation:/^<<<'?|[';]$/}}}},"heredoc-string":{pattern:/<<<(?:"([^"]+)"(?:\r\n?|\n)(?:.*(?:\r\n?|\n))*?\1;|([a-z_]\w*)(?:\r\n?|\n)(?:.*(?:\r\n?|\n))*?\2;)/i,greedy:!0,alias:"string",inside:{delimiter:{pattern:/^<<<(?:"[^"]+"|[a-z_]\w*)|[a-z_]\w*;$/i,alias:"symbol",inside:{punctuation:/^<<<"?|[";]$/}},interpolation:e}},"single-quoted-string":{pattern:/'(?:\\[\s\S]|[^\\'])*'/,greedy:!0,alias:"string"},"double-quoted-string":{pattern:/"(?:\\[\s\S]|[^\\"])*"/,greedy:!0,alias:"string",inside:{interpolation:e}}}),delete n.languages.php.string,n.hooks.add("before-tokenize",function(e){if(/<\?/.test(e.code)){n.languages["markup-templating"].buildPlaceholders(e,"php",/<\?(?:[^"'/#]|\/(?![*/])|("|')(?:\\[\s\S]|(?!\1)[^\\])*\1|(?:\/\/|#)(?:[^?\n\r]|\?(?!>))*(?=$|\?>|[\r\n])|\/\*[\s\S]*?(?:\*\/|$))*?(?:\?>|$)/gi)}}),n.hooks.add("after-tokenize",function(e){n.languages["markup-templating"].tokenizePlaceholders(e,"php")})}(Prism); +Prism.languages.yaml={scalar:{pattern:/([\-:]\s*(?:![^\s]+)?[ \t]*[|>])[ \t]*(?:((?:\r?\n|\r)[ \t]+)[^\r\n]+(?:\2[^\r\n]+)*)/,lookbehind:!0,alias:"string"},comment:/#.*/,key:{pattern:/(\s*(?:^|[:\-,[{\r\n?])[ \t]*(?:![^\s]+)?[ \t]*)[^\r\n{[\]},#\s]+?(?=\s*:\s)/,lookbehind:!0,alias:"atrule"},directive:{pattern:/(^[ \t]*)%.+/m,lookbehind:!0,alias:"important"},datetime:{pattern:/([:\-,[{]\s*(?:![^\s]+)?[ \t]*)(?:\d{4}-\d\d?-\d\d?(?:[tT]|[ \t]+)\d\d?:\d{2}:\d{2}(?:\.\d*)?[ \t]*(?:Z|[-+]\d\d?(?::\d{2})?)?|\d{4}-\d{2}-\d{2}|\d\d?:\d{2}(?::\d{2}(?:\.\d*)?)?)(?=[ \t]*(?:$|,|]|}))/m,lookbehind:!0,alias:"number"},boolean:{pattern:/([:\-,[{]\s*(?:![^\s]+)?[ \t]*)(?:true|false)[ \t]*(?=$|,|]|})/im,lookbehind:!0,alias:"important"},null:{pattern:/([:\-,[{]\s*(?:![^\s]+)?[ \t]*)(?:null|~)[ \t]*(?=$|,|]|})/im,lookbehind:!0,alias:"important"},string:{pattern:/([:\-,[{]\s*(?:![^\s]+)?[ \t]*)("|')(?:(?!\2)[^\\\r\n]|\\.)*\2(?=[ \t]*(?:$|,|]|}|\s*#))/m,lookbehind:!0,greedy:!0},number:{pattern:/([:\-,[{]\s*(?:![^\s]+)?[ \t]*)[+-]?(?:0x[\da-f]+|0o[0-7]+|(?:\d+\.?\d*|\.?\d+)(?:e[+-]?\d+)?|\.inf|\.nan)[ \t]*(?=$|,|]|})/im,lookbehind:!0},tag:/![^\s]+/,important:/[&*][\w]+/,punctuation:/---|[:[\]{}\-,|>?]|\.\.\./},Prism.languages.yml=Prism.languages.yaml; diff --git a/content/1_photography/1_trees/album.txt b/content/1_photography/1_trees/album.txt index 3084ee8..21c83d8 100644 --- a/content/1_photography/1_trees/album.txt +++ b/content/1_photography/1_trees/album.txt @@ -1,19 +1,21 @@ -Cover: - -- monster-trees-in-the-fog.jpg +Title: Trees ---- -Headline: Trees - our friends with leaves +Cover: - monster-trees-in-the-fog.jpg ---- -Description: Hug them if you like. They might not appreciate it though. +Headline: ---- -Tags: tree, forest +Subheadline: Our friends with leaves ---- -Title: Trees \ No newline at end of file +Text:

Hug them if you like. They might not appreciate it though.

Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Vestibulum id ligula porta felis euismod semper. Donec sed odio dui. Etiam porta sem malesuada magna mollis euismod.

+ +---- + +Tags: tree, forest \ No newline at end of file diff --git a/content/1_photography/1_trees/cheesy-autumn.jpg.txt b/content/1_photography/1_trees/cheesy-autumn.jpg.txt index 885cf9e..b7a6a8e 100644 --- a/content/1_photography/1_trees/cheesy-autumn.jpg.txt +++ b/content/1_photography/1_trees/cheesy-autumn.jpg.txt @@ -18,4 +18,8 @@ Link: https://unsplash.com/photos/Z3NceSeZqgI ---- -Template: image \ No newline at end of file +Template: image + +---- + +Sort: 2 \ No newline at end of file diff --git a/content/1_photography/1_trees/last-tree-standing.jpg.txt b/content/1_photography/1_trees/last-tree-standing.jpg.txt index 8689f9c..6f436c0 100644 --- a/content/1_photography/1_trees/last-tree-standing.jpg.txt +++ b/content/1_photography/1_trees/last-tree-standing.jpg.txt @@ -18,4 +18,8 @@ Link: https://unsplash.com/photos/wVTGdIGdojc ---- -Template: image \ No newline at end of file +Template: image + +---- + +Sort: 1 \ No newline at end of file diff --git a/content/1_photography/1_trees/monster-trees-in-the-fog.jpg.txt b/content/1_photography/1_trees/monster-trees-in-the-fog.jpg.txt index 96a8acf..5073bf3 100644 --- a/content/1_photography/1_trees/monster-trees-in-the-fog.jpg.txt +++ b/content/1_photography/1_trees/monster-trees-in-the-fog.jpg.txt @@ -18,4 +18,8 @@ Link: https://unsplash.com/photos/dfo06_DqxpA ---- -Template: image \ No newline at end of file +Template: image + +---- + +Sort: 3 \ No newline at end of file diff --git a/content/1_photography/1_trees/sharewood-forest.jpg.txt b/content/1_photography/1_trees/sharewood-forest.jpg.txt index 9fef665..375c05c 100644 --- a/content/1_photography/1_trees/sharewood-forest.jpg.txt +++ b/content/1_photography/1_trees/sharewood-forest.jpg.txt @@ -18,4 +18,8 @@ Link: https://unsplash.com/photos/wQImoykAwGs ---- -Template: image \ No newline at end of file +Template: image + +---- + +Sort: 4 \ No newline at end of file diff --git a/content/1_photography/1_trees/stay-in-the-car.jpg.txt b/content/1_photography/1_trees/stay-in-the-car.jpg.txt index 24d2f78..0360994 100644 --- a/content/1_photography/1_trees/stay-in-the-car.jpg.txt +++ b/content/1_photography/1_trees/stay-in-the-car.jpg.txt @@ -18,4 +18,8 @@ Link: https://unsplash.com/photos/OJev0ModVw8 ---- -Template: image \ No newline at end of file +Template: image + +---- + +Sort: 5 \ No newline at end of file diff --git a/content/1_photography/2_sky/album.txt b/content/1_photography/2_sky/album.txt index e99606a..30f1041 100644 --- a/content/1_photography/2_sky/album.txt +++ b/content/1_photography/2_sky/album.txt @@ -2,17 +2,21 @@ Title: Sky ---- -Cover: +Cover: - dark-forest.jpg ---- -Headline: Stars and the universe and so on +Headline: ---- -Description: +Subheadline: Stars and the universe and so on + +---- + +Text:

Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras mattis consectetur purus sit amet fermentum. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Nullam quis risus eget urna mollis ornare vel eu leo. Integer posuere erat a ante venenatis dapibus posuere velit aliquet.

Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas faucibus mollis interdum. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Cras justo odio, dapibus ac facilisis in, egestas eget quam. Aenean lacinia bibendum nulla sed consectetur.

---- diff --git a/content/1_photography/3_ocean/album.txt b/content/1_photography/3_ocean/album.txt index ad1cd5f..67637b2 100644 --- a/content/1_photography/3_ocean/album.txt +++ b/content/1_photography/3_ocean/album.txt @@ -1,4 +1,8 @@ -Cover: +Title: Ocean + +---- + +Cover: - island-from-above.jpg @@ -8,12 +12,12 @@ Headline: Oceans are quite nice ---- -Description: Blue with lots of fish +Subheadline: Blue with lots of fish ---- -Tags: ocean, water, blue +Text:

Cras mattis consectetur purus sit amet fermentum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed posuere consectetur est at lobortis. Donec id elit non mi porta gravida at eget metus. Curabitur blandit tempus porttitor. Aenean lacinia bibendum nulla sed consectetur.

Donec sed odio dui. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nulla vitae elit libero, a pharetra augue. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.

---- -Title: Ocean \ No newline at end of file +Tags: ocean, water, blue \ No newline at end of file diff --git a/content/1_photography/4_desert/album.txt b/content/1_photography/4_desert/album.txt index 74f2952..3091c73 100644 --- a/content/1_photography/4_desert/album.txt +++ b/content/1_photography/4_desert/album.txt @@ -1,19 +1,23 @@ -Cover: +Title: Desert + +---- + +Cover: - indiana-jones.jpg ---- -Headline: The desert is pretty hot +Headline: ---- -Description: +Subheadline: It's pretty hot ---- -Tags: desert, sand, landscape +Text:

Curabitur blandit tempus porttitor. Sed posuere consectetur est at lobortis. Maecenas faucibus mollis interdum. Praesent commodo cursus magna, vel scelerisque nisl consectetur et.

Nullam quis risus eget urna mollis ornare vel eu leo. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed posuere consectetur est at lobortis. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Curabitur blandit tempus porttitor.

---- -Title: Desert \ No newline at end of file +Tags: desert, sand, landscape \ No newline at end of file diff --git a/content/1_photography/5_mountains/album.txt b/content/1_photography/5_mountains/album.txt index dcf6a03..932f8a4 100644 --- a/content/1_photography/5_mountains/album.txt +++ b/content/1_photography/5_mountains/album.txt @@ -1,19 +1,23 @@ -Cover: +Title: Mountains + +---- + +Cover: - probably-photoshopped.jpg ---- -Headline: Mountains are pretty big +Headline: Mountains ---- -Description: Mountains — where do they come from. +Subheadline: Where do they come from? ---- -Tags: mountains, peak nature +Text:

Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Nullam id dolor id nibh ultricies vehicula ut id elit. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.

Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras mattis consectetur purus sit amet fermentum. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor.

---- -Title: Mountains \ No newline at end of file +Tags: mountains, peak nature \ No newline at end of file diff --git a/content/1_photography/6_waterfall/album.txt b/content/1_photography/6_waterfall/album.txt index 01c11be..f0ebc72 100644 --- a/content/1_photography/6_waterfall/album.txt +++ b/content/1_photography/6_waterfall/album.txt @@ -1,19 +1,21 @@ -Cover: - -- the-fall-is-lava.jpg +Title: Waterfalls ---- -Headline: Water that falls +Cover: - the-fall-is-lava.jpg ---- -Description: Don't go chasing waterfalls +Headline: ---- -Tags: water, falls, down +Subheadline: Water that falls ---- -Title: Waterfall \ No newline at end of file +Text:

Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Cras justo odio, dapibus ac facilisis in, egestas eget quam. Nulla vitae elit libero, a pharetra augue. Curabitur blandit tempus porttitor. Praesent commodo cursus magna, vel scelerisque nisl consectetur et.

Cras mattis consectetur purus sit amet fermentum. Donec ullamcorper nulla non metus auctor fringilla. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id elit non mi porta gravida at eget metus. Maecenas faucibus mollis interdum. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Curabitur blandit tempus porttitor.

+ +---- + +Tags: water, falls, down \ No newline at end of file diff --git a/content/1_photography/7_plants/album.txt b/content/1_photography/7_plants/album.txt index 7845b33..f354369 100644 --- a/content/1_photography/7_plants/album.txt +++ b/content/1_photography/7_plants/album.txt @@ -1,4 +1,8 @@ -Cover: +Title: Plants + +---- + +Cover: - nice-colors-ugly-plant.jpg @@ -8,12 +12,12 @@ Headline: ---- -Description: They call me Dr. Greenthumb. +Subheadline: Mostly green ---- -Tags: plants +Text:

This was a very special project. Plants are nice and quite beautiful Nulla vitae elit libero, a pharetra augue. Donec ullamcorper nulla non metus auctor fringilla.

Etiam porta sem malesuada magna mollis euismod. Etiam porta sem malesuada magna mollis euismod. Curabitur blandit tempus porttitor. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Nulla vitae elit libero, a pharetra augue.

---- -Title: Plants \ No newline at end of file +Tags: plants \ No newline at end of file diff --git a/content/1_photography/8_landscape/album.txt b/content/1_photography/8_landscape/album.txt index 38f4c96..891b773 100644 --- a/content/1_photography/8_landscape/album.txt +++ b/content/1_photography/8_landscape/album.txt @@ -1,19 +1,23 @@ -Cover: +Title: Landscape + +---- + +Cover: - that-green-looks-fake.jpg ---- -Headline: Not a lot of portraits here +Headline: ---- -Description: +Subheadline: Not a lot of portraits here ---- -Tags: landscape, nature +Text:

Nulla vitae elit libero, a pharetra augue. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec sed odio dui. Nullam id dolor id nibh ultricies vehicula ut id elit. Nulla vitae elit libero, a pharetra augue.

Maecenas sed diam eget risus varius blandit sit amet non magna. Cras mattis consectetur purus sit amet fermentum. Maecenas faucibus mollis interdum. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor.

---- -Title: Landscape \ No newline at end of file +Tags: landscape, nature \ No newline at end of file diff --git a/content/2_notes/20180421_across-the-ocean/note.txt b/content/2_notes/20180421_across-the-ocean/note.txt deleted file mode 100644 index fdb1f16..0000000 --- a/content/2_notes/20180421_across-the-ocean/note.txt +++ /dev/null @@ -1,31 +0,0 @@ -Title: Across the ocean - ----- - -Text: - -Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean. A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth. Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar. - -The Big Oxmox advised her not to do so, because there were thousands of bad Commas, wild Question Marks and devious Semikoli, but the Little Blind Text didn’t listen. She packed her seven versalia, put her initial into the belt and made herself on the way. When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline of her own road, the Line Lane. Pityful a rethoric question ran over her cheek, then she continued her way. On her way she met a copy. - -{{ gallery }} - -The copy warned the Little Blind Text, that where it came from it would have been rewritten a thousand times and everything that was left from its origin would be the word "and" and the Little Blind Text should turn around and return to its own, safe country. But nothing the copy said could convince her and so it didn’t take long until a few insidious Copy Writers ambushed her, made her drunk with Longe and Parole and dragged her into their agency, where they abused her for their projects again and again. And if she hasn’t been rewritten, then they are still using her. Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean. - -A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth. Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar. The Big Oxmox advised her not to do so, because there were thousands of bad Commas, wild Question Marks and devious Semikoli, but the Little Blind Text didn’t listen. She packed her seven versalia, put her initial into the belt and made herself on the way. When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline of her own road, the Line Lane. Pityful a rethoric question ran over her cheek, then she continued her way. On her way she met a copy. The copy warned the Little Blind Text, that where it came from it would have been rewritten a thousand times and everything that was left from its origin would be the word "and" and the Little Blind Text should turn around and return to its own, safe country. But nothing the copy said could convince her and so it didn’t take long until a few insidious Copy Writers ambushed her, made her drunk - ----- - -Date: 2018-04-21 15:10 - ----- - -Author: - ----- - -Tags: ocean, pacific - ----- - -Gallery: photography/ocean \ No newline at end of file diff --git a/content/2_notes/20180625_a-night-in-the-forest/note.txt b/content/2_notes/20180625_a-night-in-the-forest/note.txt deleted file mode 100644 index 932cc70..0000000 --- a/content/2_notes/20180625_a-night-in-the-forest/note.txt +++ /dev/null @@ -1,31 +0,0 @@ -Title: A night in the forest - ----- - -Text: - -Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean. A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth. Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar. - -The Big Oxmox advised her not to do so, because there were thousands of bad Commas, wild Question Marks and devious Semikoli, but the Little Blind Text didn’t listen. She packed her seven versalia, put her initial into the belt and made herself on the way. When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline of her own road, the Line Lane. Pityful a rethoric question ran over her cheek, then she continued her way. On her way she met a copy. - -{{ gallery }} - -The copy warned the Little Blind Text, that where it came from it would have been rewritten a thousand times and everything that was left from its origin would be the word "and" and the Little Blind Text should turn around and return to its own, safe country. But nothing the copy said could convince her and so it didn’t take long until a few insidious Copy Writers ambushed her, made her drunk with Longe and Parole and dragged her into their agency, where they abused her for their projects again and again. And if she hasn’t been rewritten, then they are still using her. Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean. - -A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth. Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar. The Big Oxmox advised her not to do so, because there were thousands of bad Commas, wild Question Marks and devious Semikoli, but the Little Blind Text didn’t listen. She packed her seven versalia, put her initial into the belt and made herself on the way. When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline of her own road, the Line Lane. Pityful a rethoric question ran over her cheek, then she continued her way. On her way she met a copy. The copy warned the Little Blind Text, that where it came from it would have been rewritten a thousand times and everything that was left from its origin would be the word "and" and the Little Blind Text should turn around and return to its own, safe country. But nothing the copy said could convince her and so it didn’t take long until a few insidious Copy Writers ambushed her, made her drunk - ----- - -Date: 2018-06-25 09:30 - ----- - -Author: - ----- - -Tags: forest, trees - ----- - -Gallery: photography/trees \ No newline at end of file diff --git a/content/2_notes/20180731_in-the-jungle-of-sumatra/note.txt b/content/2_notes/20180731_in-the-jungle-of-sumatra/note.txt deleted file mode 100644 index e694fa5..0000000 --- a/content/2_notes/20180731_in-the-jungle-of-sumatra/note.txt +++ /dev/null @@ -1,31 +0,0 @@ -Title: In the jungle of Sumatra - ----- - -Text: - -Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean. A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth. Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar. - -The Big Oxmox advised her not to do so, because there were thousands of bad Commas, wild Question Marks and devious Semikoli, but the Little Blind Text didn’t listen. She packed her seven versalia, put her initial into the belt and made herself on the way. When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline of her own road, the Line Lane. Pityful a rethoric question ran over her cheek, then she continued her way. On her way she met a copy. - -{{ gallery }} - -The copy warned the Little Blind Text, that where it came from it would have been rewritten a thousand times and everything that was left from its origin would be the word "and" and the Little Blind Text should turn around and return to its own, safe country. But nothing the copy said could convince her and so it didn’t take long until a few insidious Copy Writers ambushed her, made her drunk with Longe and Parole and dragged her into their agency, where they abused her for their projects again and again. And if she hasn’t been rewritten, then they are still using her. Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean. - -A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth. Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar. The Big Oxmox advised her not to do so, because there were thousands of bad Commas, wild Question Marks and devious Semikoli, but the Little Blind Text didn’t listen. She packed her seven versalia, put her initial into the belt and made herself on the way. When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline of her own road, the Line Lane. Pityful a rethoric question ran over her cheek, then she continued her way. On her way she met a copy. The copy warned the Little Blind Text, that where it came from it would have been rewritten a thousand times and everything that was left from its origin would be the word "and" and the Little Blind Text should turn around and return to its own, safe country. - ----- - -Date: 2018-07-31 11:05 - ----- - -Author: - ----- - -Tags: jungle, nature, sumatra, plants - ----- - -Gallery: photography/plants \ No newline at end of file diff --git a/content/2_notes/20180905_through-the-desert/desert.jpg b/content/2_notes/20180905_through-the-desert/desert.jpg new file mode 100644 index 0000000..874eba1 Binary files /dev/null and b/content/2_notes/20180905_through-the-desert/desert.jpg differ diff --git a/content/2_notes/20180905_through-the-desert/desert.jpg.txt b/content/2_notes/20180905_through-the-desert/desert.jpg.txt new file mode 100644 index 0000000..7139a8c --- /dev/null +++ b/content/2_notes/20180905_through-the-desert/desert.jpg.txt @@ -0,0 +1 @@ +Template: blocks/image diff --git a/content/2_notes/20180905_through-the-desert/note.txt b/content/2_notes/20180905_through-the-desert/note.txt index 24d1b3a..2a72bed 100644 --- a/content/2_notes/20180905_through-the-desert/note.txt +++ b/content/2_notes/20180905_through-the-desert/note.txt @@ -2,21 +2,19 @@ Title: Through the desert ---- -Text: - -Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean. A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth. Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar. - -The Big Oxmox advised her not to do so, because there were thousands of bad Commas, wild Question Marks and devious Semikoli, but the Little Blind Text didn’t listen. She packed her seven versalia, put her initial into the belt and made herself on the way. When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline of her own road, the Line Lane. Pityful a rethoric question ran over her cheek, then she continued her way. On her way she met a copy. - -The copy warned the Little Blind Text, that where it came from it would have been rewritten a thousand times and everything that was left from its origin would be the word "and" and the Little Blind Text should turn around and return to its own, safe country. But nothing the copy said could convince her and so it didn’t take long until a few insidious Copy Writers ambushed her, made her drunk with Longe and Parole and dragged her into their agency, where they abused her for their projects again and again. And if she hasn’t been rewritten, then they are still using her. Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean. - -{{ gallery }} - -A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth. Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar. The Big Oxmox advised her not to do so, because there were thousands of bad Commas, wild Question Marks and devious Semikoli, but the Little Blind Text didn’t listen. She packed her seven versalia, put her initial into the belt and made herself on the way. When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline of her own road, the Line Lane. Pityful a rethoric question ran over her cheek, then she continued her way. On her way she met a copy. The copy warned the Little Blind Text, that where it came from it would have been rewritten a thousand times and everything that was left from its origin would be the word "and" and the Little Blind Text should turn around and return to its own, safe country. But nothing the copy said could convince her and so it didn’t take long until a few insidious Copy Writers ambushed her, made her drunk +Subheading: ---- -Date: 2018-09-05 15:35 +Cover: + +---- + +Text: [{"content":{"text":"

Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean. A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth. Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar.<\/p>

The Big Oxmox advised her not to do so, because there were thousands of bad Commas, wild Question Marks and devious Semikoli, but the Little Blind Text didn\u2019t listen. She packed her seven versalia, put her initial into the belt and made herself on the way. When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline of her own road, the Line Lane. Pityful a rethoric question ran over her cheek, then she continued her way. On her way she met a copy.<\/p>

The copy warned the Little Blind Text, that where it came from it would have been rewritten a thousand times and everything that was left from its origin would be the word \"and\" and the Little Blind Text should turn around and return to its own, safe country. But nothing the copy said could convince her and so it didn\u2019t take long until a few insidious Copy Writers ambushed her, made her drunk with Longe and Parole and dragged her into their agency, where they abused her for their projects again and again. And if she hasn\u2019t been rewritten, then they are still using her. Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.<\/p>

A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth. Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar. The Big Oxmox advised her not to do so, because there were thousands of bad Commas, wild Question Marks and devious Semikoli, but the Little Blind Text didn\u2019t listen. She packed her seven versalia, put her initial into the belt and made herself on the way. When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline of her own road, the Line Lane. Pityful a rethoric question ran over her cheek, then she continued her way. On her way she met a copy. The copy warned the Little Blind Text, that where it came from it would have been rewritten a thousand times and everything that was left from its origin would be the word \"and\" and the Little Blind Text should turn around and return to its own, safe country. But nothing the copy said could convince her and so it didn\u2019t take long until a few insidious Copy Writers ambushed her, made her drunk<\/p>"},"id":"b03f40c3-1dc5-4a89-8874-24f616f86e51","isHidden":false,"type":"text"}] + +---- + +Date: 2018-09-05 ---- @@ -24,8 +22,4 @@ Author: ---- -Tags: sahara, desert, africa - ----- - -Gallery: photography/desert \ No newline at end of file +Tags: sahara, desert, africa \ No newline at end of file diff --git a/content/2_notes/20180926_himalaya-and-back/note.txt b/content/2_notes/20180926_himalaya-and-back/note.txt deleted file mode 100644 index 1708bff..0000000 --- a/content/2_notes/20180926_himalaya-and-back/note.txt +++ /dev/null @@ -1,31 +0,0 @@ -Title: Himalaya and back - ----- - -Text: - -Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean. A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth. Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar. - -The Big Oxmox advised her not to do so, because there were thousands of bad Commas, wild Question Marks and devious Semikoli, but the Little Blind Text didn’t listen. She packed her seven versalia, put her initial into the belt and made herself on the way. When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline of her own road, the Line Lane. Pityful a rethoric question ran over her cheek, then she continued her way. On her way she met a copy. - -{{ gallery }} - -The copy warned the Little Blind Text, that where it came from it would have been rewritten a thousand times and everything that was left from its origin would be the word "and" and the Little Blind Text should turn around and return to its own, safe country. But nothing the copy said could convince her and so it didn’t take long until a few insidious Copy Writers ambushed her, made her drunk with Longe and Parole and dragged her into their agency, where they abused her for their projects again and again. And if she hasn’t been rewritten, then they are still using her. Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean. - -A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth. Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar. The Big Oxmox advised her not to do so, because there were thousands of bad Commas, wild Question Marks and devious Semikoli, but the Little Blind Text didn’t listen. She packed her seven versalia, put her initial into the belt and made herself on the way. When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline of her own road, the Line Lane. Pityful a rethoric question ran over her cheek, then she continued her way. On her way she met a copy. The copy warned the Little Blind Text, that where it came from it would have been rewritten a thousand times and everything that was left from its origin would be the word "and" and the Little Blind Text should turn around and return to its own, safe country. But nothing the copy said could convince her and so it didn’t take long until a few insidious Copy Writers ambushed her, made her drunk - ----- - -Date: 2018-09-26 17:30 - ----- - -Author: - ----- - -Tags: mountains, nepal - ----- - -Gallery: photography/mountains \ No newline at end of file diff --git a/content/2_notes/20181005_chasing-waterfalls/note.txt b/content/2_notes/20181005_chasing-waterfalls/note.txt index aac34f7..bb9281a 100644 --- a/content/2_notes/20181005_chasing-waterfalls/note.txt +++ b/content/2_notes/20181005_chasing-waterfalls/note.txt @@ -2,21 +2,19 @@ Title: Chasing waterfalls ---- -Text: - -Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean. A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth. Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar. - -The Big Oxmox advised her not to do so, because there were thousands of bad Commas, wild Question Marks and devious Semikoli, but the Little Blind Text didn’t listen. She packed her seven versalia, put her initial into the belt and made herself on the way. When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline of her own road, the Line Lane. Pityful a rethoric question ran over her cheek, then she continued her way. On her way she met a copy. - -The copy warned the Little Blind Text, that where it came from it would have been rewritten a thousand times and everything that was left from its origin would be the word "and" and the Little Blind Text should turn around and return to its own, safe country. But nothing the copy said could convince her and so it didn’t take long until a few insidious Copy Writers ambushed her, made her drunk with Longe and Parole and dragged her into their agency, where they abused her for their projects again and again. And if she hasn’t been rewritten, then they are still using her. Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean. - -{{ gallery }} - -A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth. Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar. The Big Oxmox advised her not to do so, because there were thousands of bad Commas, wild Question Marks and devious Semikoli, but the Little Blind Text didn’t listen. She packed her seven versalia, put her initial into the belt and made herself on the way. When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline of her own road, the Line Lane. Pityful a rethoric question ran over her cheek, then she continued her way. On her way she met a copy. The copy warned the Little Blind Text, that where it came from it would have been rewritten a thousand times and everything that was left from its origin would be the word "and" and the Little Blind Text should turn around and return to its own, safe country. But nothing the copy said could convince her and so it didn’t take long until a few insidious Copy Writers ambushed her, made her drunk +Subheading: ---- -Date: 2018-10-05 10:40 +Cover: + +---- + +Text: [{"content":{"text":"

Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean<\/strong>. A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth. Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar.<\/p>

The Big Oxmox advised her not to do so, because there were thousands of bad Commas, wild Question Marks and devious Semikoli, but the Little Blind Text didn\u2019t listen. She packed her seven versalia, put her initial into the belt and made herself on the way. When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline of her own road, the Line Lane. Pityful a rethoric question ran over her cheek, then she continued her way. On her way she met a copy.<\/p>

The copy warned the Little Blind Text, that where it came from it would have been rewritten a thousand times and everything that was left from its origin would be the word \"and\" and the Little Blind Text should turn around and return to its own, safe country. But nothing the copy said could convince her and so it didn\u2019t take long until a few insidious Copy Writers ambushed her, made her drunk with Longe and Parole and dragged her into their agency, where they abused her for their projects again and again. And if she hasn\u2019t been rewritten, then they are still using her. Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.<\/p>

A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth. Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar. The Big Oxmox advised her not to do so, because there were thousands of bad Commas, wild Question Marks and devious Semikoli, but the Little Blind Text didn\u2019t listen. She packed her seven versalia, put her initial into the belt and made herself on the way. When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline of her own road, the Line Lane. Pityful a rethoric question ran over her cheek, then she continued her way. On her way she met a copy. The copy warned the Little Blind Text, that where it came from it would have been rewritten a thousand times and everything that was left from its origin would be the word \"and\" and the Little Blind Text should turn around and return to its own, safe country. But nothing the copy said could convince her and so it didn\u2019t take long until a few insidious Copy Writers ambushed her, made her drunk<\/p>"},"id":"fff3f248-9a0f-44ec-af0c-a59126be24a4","isHidden":false,"type":"text"}] + +---- + +Date: 2018-10-05 ---- @@ -24,10 +22,4 @@ Author: ---- -Tags: water, nature, waterfalls, landscape - ----- - -Gallery: - -- photography/waterfall \ No newline at end of file +Tags: water, nature, waterfalls, landscape \ No newline at end of file diff --git a/content/2_notes/20181005_chasing-waterfalls/waterfall.jpg b/content/2_notes/20181005_chasing-waterfalls/waterfall.jpg new file mode 100644 index 0000000..6072074 Binary files /dev/null and b/content/2_notes/20181005_chasing-waterfalls/waterfall.jpg differ diff --git a/content/2_notes/20181005_chasing-waterfalls/waterfall.jpg.txt b/content/2_notes/20181005_chasing-waterfalls/waterfall.jpg.txt new file mode 100644 index 0000000..7139a8c --- /dev/null +++ b/content/2_notes/20181005_chasing-waterfalls/waterfall.jpg.txt @@ -0,0 +1 @@ +Template: blocks/image diff --git a/content/2_notes/20181031_exploring-the-universe/note.txt b/content/2_notes/20181031_exploring-the-universe/note.txt deleted file mode 100644 index 02733ab..0000000 --- a/content/2_notes/20181031_exploring-the-universe/note.txt +++ /dev/null @@ -1,35 +0,0 @@ -Title: Exploring the universe - ----- - -Text: - -Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean. A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth. Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar. - -The Big Oxmox advised her not to do so, because there were thousands of bad Commas, wild Question Marks and devious Semikoli, but the Little Blind Text didn’t listen. She packed her seven versalia, put her initial into the belt and made herself on the way. When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline of her own road, the Line Lane. Pityful a rethoric question ran over her cheek, then she continued her way. On her way she met a copy. - -{{ gallery }} - -The copy warned the Little Blind Text, that where it came from it would have been rewritten a thousand times and everything that was left from its origin would be the word "and" and the Little Blind Text should turn around and return to its own, safe country. But nothing the copy said could convince her and so it didn’t take long until a few insidious Copy Writers ambushed her, made her drunk with Longe and Parole and dragged her into their agency, where they abused her for their projects again and again. And if she hasn’t been rewritten, then they are still using her. Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean. - ----- - -Date: 2018-10-31 13:15 - ----- - -Author: - ----- - -Tags: universe, stars, sky - ----- - -Gallery: - -- photography/animals - ----- - -Headline: Super nicer scheiss \ No newline at end of file diff --git a/content/2_notes/20190625_a-night-in-the-forest/forest.jpg b/content/2_notes/20190625_a-night-in-the-forest/forest.jpg new file mode 100644 index 0000000..009d6e2 Binary files /dev/null and b/content/2_notes/20190625_a-night-in-the-forest/forest.jpg differ diff --git a/content/2_notes/20190625_a-night-in-the-forest/forest.jpg.txt b/content/2_notes/20190625_a-night-in-the-forest/forest.jpg.txt new file mode 100644 index 0000000..7139a8c --- /dev/null +++ b/content/2_notes/20190625_a-night-in-the-forest/forest.jpg.txt @@ -0,0 +1 @@ +Template: blocks/image diff --git a/content/2_notes/20190625_a-night-in-the-forest/note.txt b/content/2_notes/20190625_a-night-in-the-forest/note.txt new file mode 100644 index 0000000..d85519f --- /dev/null +++ b/content/2_notes/20190625_a-night-in-the-forest/note.txt @@ -0,0 +1,25 @@ +Title: A night in the forest + +---- + +Text: [{"content":{"text":"

Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean. A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth. Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar.<\/p>

The Big Oxmox advised her not to do so, because there were thousands of bad Commas, wild Question Marks and devious Semikoli, but the Little Blind Text didn\u2019t listen. She packed her seven versalia, put her initial into the belt and made herself on the way. When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline of her own road, the Line Lane. Pityful a rethoric question ran over her cheek, then she continued her way. On her way she met a copy.<\/p>

The copy warned the Little Blind Text, that where it came from it would have been rewritten a thousand times and everything that was left from its origin would be the word \"and\" and the Little Blind Text should turn around and return to its own, safe country. But nothing the copy said could convince her and so it didn\u2019t take long until a few insidious Copy Writers ambushed her, made her drunk with Longe and Parole and dragged her into their agency, where they abused her for their projects again and again. And if she hasn\u2019t been rewritten, then they are still using her. Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.<\/p>

A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth. Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar. The Big Oxmox advised her not to do so, because there were thousands of bad Commas, wild Question Marks and devious Semikoli, but the Little Blind Text didn\u2019t listen. She packed her seven versalia, put her initial into the belt and made herself on the way. When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline of her own road, the Line Lane. Pityful a rethoric question ran over her cheek, then she continued her way. On her way she met a copy. The copy warned the Little Blind Text, that where it came from it would have been rewritten a thousand times and everything that was left from its origin would be the word \"and\" and the Little Blind Text should turn around and return to its own, safe country. But nothing the copy said could convince her and so it didn\u2019t take long until a few insidious Copy Writers ambushed her, made her drunk<\/p>"},"id":"_nEOMzN6tX","isHidden":false,"type":"text"}] + +---- + +Date: 2019-06-25 00:00:00 + +---- + +Author: + +---- + +Tags: forest, trees + +---- + +Subheading: + +---- + +Cover: \ No newline at end of file diff --git a/content/2_notes/20200421_across-the-ocean/note.txt b/content/2_notes/20200421_across-the-ocean/note.txt new file mode 100644 index 0000000..b7ba634 --- /dev/null +++ b/content/2_notes/20200421_across-the-ocean/note.txt @@ -0,0 +1,25 @@ +Title: Across the ocean + +---- + +Text: [{"content":{"text":"

Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean. A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth. Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar.<\/p>

The Big Oxmox advised her not to do so, because there were thousands of bad Commas, wild Question Marks and devious Semikoli, but the Little Blind Text didn\u2019t listen. She packed her seven versalia, put her initial into the belt and made herself on the way. When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline of her own road, the Line Lane. Pityful a rethoric question ran over her cheek, then she continued her way. On her way she met a copy.<\/p>

The copy warned the Little Blind Text, that where it came from it would have been rewritten a thousand times and everything that was left from its origin would be the word \"and\" and the Little Blind Text should turn around and return to its own, safe country. But nothing the copy said could convince her and so it didn\u2019t take long until a few insidious Copy Writers ambushed her, made her drunk with Longe and Parole and dragged her into their agency, where they abused her for their projects again and again. And if she hasn\u2019t been rewritten, then they are still using her. Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.<\/p>

A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth. Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar. The Big Oxmox advised her not to do so, because there were thousands of bad Commas, wild Question Marks and devious Semikoli, but the Little Blind Text didn\u2019t listen. She packed her seven versalia, put her initial into the belt and made herself on the way. When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline of her own road, the Line Lane. Pityful a rethoric question ran over her cheek, then she continued her way. On her way she met a copy. The copy warned the Little Blind Text, that where it came from it would have been rewritten a thousand times and everything that was left from its origin would be the word \"and\" and the Little Blind Text should turn around and return to its own, safe country. But nothing the copy said could convince her and so it didn\u2019t take long until a few insidious Copy Writers ambushed her, made her drunk<\/p>"},"id":"a647447a-4226-4fe8-824e-85663f7a80f2","isHidden":false,"type":"text"}] + +---- + +Date: 2020-04-21 00:00:00 + +---- + +Author: + +---- + +Tags: ocean, pacific + +---- + +Subheading: + +---- + +Cover: \ No newline at end of file diff --git a/content/2_notes/20200421_across-the-ocean/ocean.jpg b/content/2_notes/20200421_across-the-ocean/ocean.jpg new file mode 100644 index 0000000..ee3c21c Binary files /dev/null and b/content/2_notes/20200421_across-the-ocean/ocean.jpg differ diff --git a/content/2_notes/20200421_across-the-ocean/ocean.jpg.txt b/content/2_notes/20200421_across-the-ocean/ocean.jpg.txt new file mode 100644 index 0000000..7139a8c --- /dev/null +++ b/content/2_notes/20200421_across-the-ocean/ocean.jpg.txt @@ -0,0 +1 @@ +Template: blocks/image diff --git a/content/2_notes/20200913_himalaya-and-back/himalaya.jpg b/content/2_notes/20200913_himalaya-and-back/himalaya.jpg new file mode 100644 index 0000000..5611288 Binary files /dev/null and b/content/2_notes/20200913_himalaya-and-back/himalaya.jpg differ diff --git a/content/2_notes/20200913_himalaya-and-back/himalaya.jpg.txt b/content/2_notes/20200913_himalaya-and-back/himalaya.jpg.txt new file mode 100644 index 0000000..7139a8c --- /dev/null +++ b/content/2_notes/20200913_himalaya-and-back/himalaya.jpg.txt @@ -0,0 +1 @@ +Template: blocks/image diff --git a/content/2_notes/20200913_himalaya-and-back/note.txt b/content/2_notes/20200913_himalaya-and-back/note.txt new file mode 100644 index 0000000..bef8e43 --- /dev/null +++ b/content/2_notes/20200913_himalaya-and-back/note.txt @@ -0,0 +1,25 @@ +Title: Himalaya and back + +---- + +Text: [{"content":{"text":"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean. A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth. Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar."},"id":"ad72d143-a58f-4c7f-af4e-aa2f5d40d55a","isHidden":false,"type":"text"},{"content":{"text":"The Big Oxmox advised her not to do so, because there were thousands of bad Commas, wild Question Marks and devious Semikoli, but the Little Blind Text didn\u2019t listen. She packed her seven versalia, put her initial into the belt and made herself on the way. When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline of her own road, the Line Lane. Pityful a rethoric question ran over her cheek, then she continued her way. On her way she met a copy."},"id":"9fe2ae56-5578-449b-9a12-87e9592a4762","isHidden":false,"type":"text"},{"content":{"text":"The copy warned the Little Blind Text, that where it came from it would have been rewritten a thousand times and everything that was left from its origin would be the word \"and\" and the Little Blind Text should turn around and return to its own, safe country. But nothing the copy said could convince her and so it didn\u2019t take long until a few insidious Copy Writers ambushed her, made her drunk with Longe and Parole and dragged her into their agency, where they abused her for their projects again and again. And if she hasn\u2019t been rewritten, then they are still using her. Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean."},"id":"76378830-650c-4bf6-b37e-b08c020848a4","isHidden":false,"type":"text"},{"content":{"text":"A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth. Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar. The Big Oxmox advised her not to do so, because there were thousands of bad Commas, wild Question Marks and devious Semikoli, but the Little Blind Text didn\u2019t listen. She packed her seven versalia, put her initial into the belt and made herself on the way. When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline of her own road, the Line Lane. Pityful a rethoric question ran over her cheek, then she continued her way. On her way she met a copy. The copy warned the Little Blind Text, that where it came from it would have been rewritten a thousand times and everything that was left from its origin would be the word \"and\" and the Little Blind Text should turn around and return to its own, safe country. But nothing the copy said could convince her and so it didn\u2019t take long until a few insidious Copy Writers ambushed her, made her drunk"},"id":"e413187a-c2cd-42a7-908e-11c153af6907","isHidden":false,"type":"text"}] + +---- + +Date: 2020-09-13 00:00:00 + +---- + +Author: + +---- + +Tags: environment, nepal, mountains + +---- + +Subheading: + +---- + +Cover: \ No newline at end of file diff --git a/content/2_notes/20201210_exploring-the-universe/dark-forest.jpg b/content/2_notes/20201210_exploring-the-universe/dark-forest.jpg new file mode 100644 index 0000000..932bdb5 Binary files /dev/null and b/content/2_notes/20201210_exploring-the-universe/dark-forest.jpg differ diff --git a/content/2_notes/20201210_exploring-the-universe/dark-forest.jpg.txt b/content/2_notes/20201210_exploring-the-universe/dark-forest.jpg.txt new file mode 100644 index 0000000..7139a8c --- /dev/null +++ b/content/2_notes/20201210_exploring-the-universe/dark-forest.jpg.txt @@ -0,0 +1 @@ +Template: blocks/image diff --git a/content/2_notes/20201210_exploring-the-universe/note.txt b/content/2_notes/20201210_exploring-the-universe/note.txt new file mode 100644 index 0000000..b9a46b2 --- /dev/null +++ b/content/2_notes/20201210_exploring-the-universe/note.txt @@ -0,0 +1,25 @@ +Title: Exploring the universe + +---- + +Text: [{"content":{"text":"

Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean. A small river named Duden flows by their<\/strong> place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth. Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar.<\/p>"},"id":"_MtYF6qOmq","isHidden":false,"type":"text"},{"content":{"location":"kirby","image":["dark-forest.jpg"],"src":"","alt":"Staring at stars","caption":"Staring at stars","link":"","ratio":"16\/9","crop":"true"},"id":"_200yrtaus","isHidden":false,"type":"image"},{"content":{"text":"

The Big Oxmox<\/strong> advised her not to do so, because there were thousands of bad Commas, wild Question Marks and devious Semikoli, but the Little Blind Text didn\u2019t listen. She packed her seven versalia, put her initial into the belt and made herself on the way. When she reached the first hills of the Italic Mountains<\/a>, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline of her own road, the Line Lane. Pityful a rethoric question ran over her cheek, then she continued her way. On her way she met a copy.<\/p>"},"id":"_J5cUP6Q8A","isHidden":false,"type":"text"},{"content":{"text":"Time flies like an arrow; fruit flies like a banana","citation":"Anthony Oettinger<\/a>"},"id":"_sxaa7bs0y","isHidden":false,"type":"quote"},{"content":{"level":"h2","text":"Let's put a heading here"},"id":"_mg1sjf8a6","isHidden":false,"type":"heading"},{"content":{"text":"

But nothing the copy<\/u> said could convince her and so it didn\u2019t take long until a few insidious Copy Writers ambushed her, made her drunk with Longe and Parole and dragged her into their agency, where they abused her for their projects<\/em> again and again. And if she hasn\u2019t been rewritten, then they are still using her. Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.<\/p>"},"id":"_1gcmahr5x","isHidden":false,"type":"text"},{"content":{"url":"https:\/\/vimeo.com\/54400762","caption":"I found this when searching for stars on Vimeo"},"id":"_d5m9sxprv","isHidden":false,"type":"video"},{"content":{"text":"## This is created by some good old markdown\n\nYou can mix it with the other blocks to get even more **flexibility**. Markdown can be mixed<\/strong> with HTML too, which is nice. And of course (link: https:\/\/getkirby.com text: Kirbytags) are cool too."},"id":"_mxb6p3yof","isHidden":false,"type":"markdown"},{"content":{"text":"

+ + diff --git a/site/templates/default.php b/site/templates/default.php index a260d6e..d942cc7 100755 --- a/site/templates/default.php +++ b/site/templates/default.php @@ -1,22 +1,30 @@ title()`. * - * This default template must not be removed. It is used whenever Kirby cannot find a template with the name of the content file. - * Snippets like the header, footer and intro contain markup used in multiple templates. They also help to keep templates clean. - * More about templates: https://getkirby.com/docs/guide/templates/basics - */ +/* + Templates render the content of your pages. + + They contain the markup together with some control structures + like loops or if-statements. The `$page` variable always + refers to the currently active page. + + To fetch the content from each field we call the field name as a + method on the `$page` object, e.g. `$page->title()`. + + This default template must not be removed. It is used whenever Kirby + cannot find a template with the name of the content file. + + Snippets like the header and footer contain markup used in + multiple templates. They also help to keep templates clean. + + More about templates: https://getkirby.com/docs/guide/templates/basics +*/ ?> -
- - +
+

title() ?>

text()->kt() ?>
-
+ diff --git a/site/templates/home.php b/site/templates/home.php index 85075f4..8af010f 100755 --- a/site/templates/home.php +++ b/site/templates/home.php @@ -1,34 +1,49 @@ title()`. - * This home template renders content from others pages, the children of the `photography` page to display a nice gallery grid. - * Snippets like the header and footer contain markup used in multiple templates. They also help to keep templates clean. - * More about templates: https://getkirby.com/docs/guide/templates/basics - */ +/* + Templates render the content of your pages. + + They contain the markup together with some control structures + like loops or if-statements. The `$page` variable always + refers to the currently active page. + + To fetch the content from each field we call the field name as a + method on the `$page` object, e.g. `$page->title()`. + + This home template renders content from others pages, the children of + the `photography` page to display a nice gallery grid. + + Snippets like the header and footer contain markup used in + multiple templates. They also help to keep templates clean. + + More about templates: https://getkirby.com/docs/guide/templates/basics +*/ ?> - - -
- - - -
- diff --git a/site/templates/note.php b/site/templates/note.php index 575895e..a8985ad 100755 --- a/site/templates/note.php +++ b/site/templates/note.php @@ -1,31 +1,59 @@ title()`. - * Snippets like the header and footer contain markup used in multiple templates. They also help to keep templates clean. - * More about templates: https://getkirby.com/docs/guide/templates/basics - */ -?> +/* + Templates render the content of your pages. + They contain the markup together with some control structures + like loops or if-statements. The `$page` variable always + refers to the currently active page. + + To fetch the content from each field we call the field name as a + method on the `$page` object, e.g. `$page->title()`. + + This note template renders a blog article. It uses the `$page->cover()` + method from the `note.php` page model (/site/models/page.php) + + It also receives the `$tag` variable from its controller + (/site/controllers/note.php) if a tag filter is activated. + + Snippets like the header and footer contain markup used in + multiple templates. They also help to keep templates clean. + + More about templates: https://getkirby.com/docs/guide/templates/basics +*/ +?> -
- -
+
+
+

title() ?>

+ subheading()->isNotEmpty()): ?> +

subheading() ?>

+ +
+
+ text()->toBlocks() ?> +
+
+ +
    + +
  • + +
  • + +
+ + + +
+ + +
diff --git a/site/templates/notes.php b/site/templates/notes.php index 9327841..4d5b553 100755 --- a/site/templates/notes.php +++ b/site/templates/notes.php @@ -1,34 +1,46 @@ title()`. - * This template lists all all the subpages of the `notes` page with their title date sorted by date and links to each subpage. - * Snippets like the header, footer and intro contain markup used in multiple templates. They also help to keep templates clean. - * More about templates: https://getkirby.com/docs/guide/templates/basics - */ -?> +/* + Templates render the content of your pages. + They contain the markup together with some control structures + like loops or if-statements. The `$page` variable always + refers to the currently active page. + + To fetch the content from each field we call the field name as a + method on the `$page` object, e.g. `$page->title()`. + + This template lists all the subpages of the `notes` page with + their title date sorted by date and links to each subpage. + + This template receives additional variables like $tag and $notes + from the `notes.php` controller in `/site/controllers/notes.php` + + Snippets like the header and footer contain markup used in + multiple templates. They also help to keep templates clean. + + More about templates: https://getkirby.com/docs/guide/templates/basics +*/ +?> -
+ +
+

+ Tag: + × +

+
+ + +
    + +
  • + $note]) ?> +
  • + +
-
- children()->listed()->sortBy('date', 'desc') as $note): ?> - - -
- -
- + $notes->pagination()]) ?> diff --git a/site/templates/photography.php b/site/templates/photography.php index fda077b..fb9364f 100755 --- a/site/templates/photography.php +++ b/site/templates/photography.php @@ -1,35 +1,41 @@ title()`. - * This template lists all all the subpages of the `phototography` page with title and cover image. - * Snippets like the header, footer and intro contain markup used in multiple templates. They also help to keep templates clean. - * More about templates: https://getkirby.com/docs/guide/templates/basics - */ +/* + Templates render the content of your pages. + + They contain the markup together with some control structures + like loops or if-statements. The `$page` variable always + refers to the currently active page. + + To fetch the content from each field we call the field name as a + method on the `$page` object, e.g. `$page->title()`. + + This template lists all all the subpages of the `phototography` + page with title and cover image. + + Snippets like the header and footer contain markup used in + multiple templates. They also help to keep templates clean. + + More about templates: https://getkirby.com/docs/guide/templates/basics +*/ ?> - + -
- - - - -
+