diff options
Diffstat (limited to '_layouts')
| -rw-r--r-- | _layouts/base.html | 262 | ||||
| -rw-r--r-- | _layouts/index.html | 10 | ||||
| -rw-r--r-- | _layouts/page.html | 10 | ||||
| -rw-r--r-- | _layouts/post.html | 11 | ||||
| -rw-r--r-- | _layouts/vault.md | 25 |
5 files changed, 0 insertions, 318 deletions
diff --git a/_layouts/base.html b/_layouts/base.html deleted file mode 100644 index 57d447c..0000000 --- a/_layouts/base.html +++ /dev/null | |||
| @@ -1,262 +0,0 @@ | |||
| 1 | <!DOCTYPE html> | ||
| 2 | <html lang="{{ site.lang }}"> | ||
| 3 | <head> | ||
| 4 | <meta charset="utf-8"> | ||
| 5 | <meta name="viewport" content="width=device-width,initial-scale=1"> | ||
| 6 | |||
| 7 | <link href="data:image/x-icon;base64,AAABAAEAEBAAAAEAIABoBAAAFgAAACgAAAAQAAAAIAAAAAEAIAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAL69vf8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAv76+/8LBwQkAAAAAAAAAAAAAAAC+vb3/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAL+9vf/Bv78JAAAAAAAAAAAAAAAAu7q6/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC7ubr/vr29CAAAAAAAAAAAy8nJAZ6foP8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnqGj/6GipAoAAAAAHLjU/xcXHf/BwsL/I8XY/yPK3v8XGiD/IbjL/yPF2f8XGiD/Fxkf/yLF2f8gnK3/Fxog/62ztv8fwNf/FRcd/x271v8mz93/GRsi/xkXHf8p097/GiIp/xobIv8p0t3/KdPe/xocIv8fYmr/KNPe/xoZH/8aHCL/J87c/xy81/8VFxz/IsPZ/8zS0/8XGiD/Ir/R/yPH2/8XGiD/Fxkf/yPH2/8dd4T/GBog/yPJ3f8jyNr/uru9/xcUGv8cudb/EhITDKi5vRKlvMP/RUpOERwcHRAdOj4QHTk8EBwdHRAdNTgQHTo/EBwcHRAcHB0QSGduEKW4vf+koqQfHzg+EBqz0ewSFRv7EyMr/xq51vsTERb7ExUb+xq41fsau9j7ExUb+xiPp/sZudb7ExUb+xMVG/sZuNX/GKvI/BIUGfMdvdn/IrfL/xcaIP8n1eb/J9Dh/xkcIf8ZGR7/J8/f/xxCSv8ZGyH/J9Dg/ybQ4P8ZHCL/FSQs/yPK3/8UExj/GE1b/ybS5P8ZGB7/Ghwj/ynW5P8p2Ob/Ghwi/yWrtv8p1eH/Ghwi/xocIv8p1uT/J8XT/xkcIv8m1un/Hb7d/xUYH/8hzOr/HtHu/xcaIf8XGB//I8vi/xgxOv8XGSD/I8rg/yPK4P8XGiD/GUFL/yPP6f8SERj/Fhkh/x3A4f8AAAAAJ2f9/ydr//8mZPH/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlYu38J2v//ydo/f8AAAAAAAAAAAd8/fkFqf//Iob8sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMY39awWr//8FfP3/AAAAAAAAAAAFm/7/SfD//wR+/f8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOB/f9B7v//BaX+/wAAAAAAAAAAQ878SAyZ/v9n1v4KAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADu9v8DDJb+/z3N/XgAAAAA3/sAAN/7AADf+wAA3/sAAAAAAAAAAAAAAAAAAN/7AAAAAAAAAAAAAAAAAAAAAAAAj/EAAI/5AACP8QAA3/sAAA==" rel="icon" type="image/x-icon" /> | ||
| 8 | |||
| 9 | <title> | ||
| 10 | {% if page.title %}{{ page.title | escape }} - {{ site.title | escape }} | ||
| 11 | {% else %}{{ site.title | escape }}{% endif %} | ||
| 12 | </title> | ||
| 13 | |||
| 14 | {% seo title=false %} | ||
| 15 | |||
| 16 | <link rel="alternate" type="application/rss+xml" title="{{ site.title | escape }}" href="/feed.xml"> | ||
| 17 | <link rel="alternate" type="application/json" title="{{ site.title | escape }}" href="/feed.json" /> | ||
| 18 | |||
| 19 | <style> | ||
| 20 | :root { | ||
| 21 | --body-max-width: 860px; | ||
| 22 | --border-color: gainsboro; | ||
| 23 | --border-size: 1px; | ||
| 24 | --border-style: solid; | ||
| 25 | --link-color: blue; | ||
| 26 | --bg-color: #eee; | ||
| 27 | } | ||
| 28 | |||
| 29 | *::selection { | ||
| 30 | background: var(--link-color); | ||
| 31 | color: #ffffff; | ||
| 32 | } | ||
| 33 | |||
| 34 | *::-moz-selection { | ||
| 35 | background: var(--link-color); | ||
| 36 | color: #ffffff; | ||
| 37 | } | ||
| 38 | |||
| 39 | *::-webkit-selection { | ||
| 40 | background: var(--link-color); | ||
| 41 | color: #ffffff; | ||
| 42 | } | ||
| 43 | |||
| 44 | body { | ||
| 45 | padding: 2.5rem; | ||
| 46 | max-width: var(--body-max-width); | ||
| 47 | background: white; | ||
| 48 | font-family: sans-serif; | ||
| 49 | line-height: 1.4rem; | ||
| 50 | font-size: 16px; | ||
| 51 | /* margin: 0 auto; */ | ||
| 52 | } | ||
| 53 | |||
| 54 | hr { | ||
| 55 | border: 0; | ||
| 56 | border-bottom: var(--border-size) var(--border-style) var(--border-color); | ||
| 57 | margin-block-start: 1.5rem; | ||
| 58 | margin-block-end: 1.5rem; | ||
| 59 | } | ||
| 60 | |||
| 61 | a { | ||
| 62 | color: var(--link-color); | ||
| 63 | text-decoration: none; | ||
| 64 | } | ||
| 65 | |||
| 66 | a:hover { | ||
| 67 | text-decoration: underline; | ||
| 68 | } | ||
| 69 | |||
| 70 | h1, h2, h3 { | ||
| 71 | line-height: initial; | ||
| 72 | } | ||
| 73 | |||
| 74 | h1 { | ||
| 75 | font-size: xx-large; | ||
| 76 | } | ||
| 77 | |||
| 78 | footer { | ||
| 79 | margin-block-start: 2rem; | ||
| 80 | } | ||
| 81 | |||
| 82 | cap { | ||
| 83 | text-transform: capitalize; | ||
| 84 | } | ||
| 85 | |||
| 86 | blockquote { | ||
| 87 | font-style: italic; | ||
| 88 | } | ||
| 89 | |||
| 90 | table { | ||
| 91 | max-width: 100%; | ||
| 92 | border: var(--border-size) var(--border-style) var(--border-color); | ||
| 93 | border-collapse: separate; | ||
| 94 | border-spacing: 0; | ||
| 95 | } | ||
| 96 | |||
| 97 | table thead tr th { | ||
| 98 | border-bottom: var(--border-size) var(--border-style) var(--border-color); | ||
| 99 | text-align: left; | ||
| 100 | } | ||
| 101 | |||
| 102 | table th, table td { | ||
| 103 | padding: 0.5em 0.8em; | ||
| 104 | } | ||
| 105 | |||
| 106 | ul.list li { | ||
| 107 | padding: 0.2em 0; | ||
| 108 | } | ||
| 109 | |||
| 110 | ul { | ||
| 111 | line-height: 1.35em; | ||
| 112 | } | ||
| 113 | |||
| 114 | pre { | ||
| 115 | text-wrap: nowrap; | ||
| 116 | overflow-x: auto; | ||
| 117 | padding: 1em; | ||
| 118 | border: var(--border-size) var(--border-style) var(--border-color); | ||
| 119 | } | ||
| 120 | |||
| 121 | code { | ||
| 122 | font-family: monospace; | ||
| 123 | background: var(--bg-color); | ||
| 124 | font-size: 14px; | ||
| 125 | padding: 2px 5px; | ||
| 126 | } | ||
| 127 | |||
| 128 | pre code { | ||
| 129 | background: transparent; | ||
| 130 | padding: initial; | ||
| 131 | } | ||
| 132 | |||
| 133 | figure { | ||
| 134 | margin-inline-start: 0; | ||
| 135 | margin-inline-end: 0; | ||
| 136 | } | ||
| 137 | |||
| 138 | figcaption { | ||
| 139 | width: var(--body-max-width); | ||
| 140 | max-width: 100%; | ||
| 141 | text-align: center; | ||
| 142 | } | ||
| 143 | |||
| 144 | figcaption p { | ||
| 145 | margin: 0.3em 0 1.5em 0; | ||
| 146 | font-style: italic; | ||
| 147 | } | ||
| 148 | |||
| 149 | img, video, audio { | ||
| 150 | width: var(--body-max-width); | ||
| 151 | max-width: 100%; | ||
| 152 | } | ||
| 153 | |||
| 154 | header nav { | ||
| 155 | display: flex; | ||
| 156 | gap: 0.9rem; | ||
| 157 | } | ||
| 158 | |||
| 159 | article iframe { /* fixes embeds going to center */ | ||
| 160 | margin: 0!important; | ||
| 161 | } | ||
| 162 | |||
| 163 | audio::-webkit-media-controls-enclosure { | ||
| 164 | border-radius: 0; | ||
| 165 | } | ||
| 166 | |||
| 167 | .highlight .hll { background-color: #ffffcc } | ||
| 168 | .highlight { background: #ffffff; } | ||
| 169 | .highlight .c { color: #008000 } /* Comment */ | ||
| 170 | .highlight .k { color: #0000ff } /* Keyword */ | ||
| 171 | .highlight .ch { color: #008000 } /* Comment.Hashbang */ | ||
| 172 | .highlight .cm { color: #008000 } /* Comment.Multiline */ | ||
| 173 | .highlight .cp { color: #0000ff } /* Comment.Preproc */ | ||
| 174 | .highlight .cpf { color: #008000 } /* Comment.PreprocFile */ | ||
| 175 | .highlight .c1 { color: #008000 } /* Comment.Single */ | ||
| 176 | .highlight .cs { color: #008000 } /* Comment.Special */ | ||
| 177 | .highlight .ge { font-style: italic } /* Generic.Emph */ | ||
| 178 | .highlight .gh { font-weight: bold } /* Generic.Heading */ | ||
| 179 | .highlight .gp { font-weight: bold } /* Generic.Prompt */ | ||
| 180 | .highlight .gs { font-weight: bold } /* Generic.Strong */ | ||
| 181 | .highlight .gu { font-weight: bold } /* Generic.Subheading */ | ||
| 182 | .highlight .kc { color: #0000ff } /* Keyword.Constant */ | ||
| 183 | .highlight .kd { color: #0000ff } /* Keyword.Declaration */ | ||
| 184 | .highlight .kn { color: #0000ff } /* Keyword.Namespace */ | ||
| 185 | .highlight .kp { color: #0000ff } /* Keyword.Pseudo */ | ||
| 186 | .highlight .kr { color: #0000ff } /* Keyword.Reserved */ | ||
| 187 | .highlight .kt { color: #2b91af } /* Keyword.Type */ | ||
| 188 | .highlight .s { color: #a31515 } /* Literal.String */ | ||
| 189 | .highlight .nc { color: #2b91af } /* Name.Class */ | ||
| 190 | .highlight .ow { color: #0000ff } /* Operator.Word */ | ||
| 191 | .highlight .sa { color: #a31515 } /* Literal.String.Affix */ | ||
| 192 | .highlight .sb { color: #a31515 } /* Literal.String.Backtick */ | ||
| 193 | .highlight .sc { color: #a31515 } /* Literal.String.Char */ | ||
| 194 | .highlight .dl { color: #a31515 } /* Literal.String.Delimiter */ | ||
| 195 | .highlight .sd { color: #a31515 } /* Literal.String.Doc */ | ||
| 196 | .highlight .s2 { color: #a31515 } /* Literal.String.Double */ | ||
| 197 | .highlight .se { color: #a31515 } /* Literal.String.Escape */ | ||
| 198 | .highlight .sh { color: #a31515 } /* Literal.String.Heredoc */ | ||
| 199 | .highlight .si { color: #a31515 } /* Literal.String.Interpol */ | ||
| 200 | .highlight .sx { color: #a31515 } /* Literal.String.Other */ | ||
| 201 | .highlight .sr { color: #a31515 } /* Literal.String.Regex */ | ||
| 202 | .highlight .s1 { color: #a31515 } /* Literal.String.Single */ | ||
| 203 | .highlight .ss { color: #a31515 } /* Literal.String.Symbol */ | ||
| 204 | |||
| 205 | @media only screen and (max-width: 600px) { | ||
| 206 | body { | ||
| 207 | padding: 0.5em; | ||
| 208 | word-wrap: break-word; | ||
| 209 | } | ||
| 210 | |||
| 211 | header nav { | ||
| 212 | gap: 0.7rem; | ||
| 213 | } | ||
| 214 | |||
| 215 | header nav .hob { | ||
| 216 | display: none; | ||
| 217 | } | ||
| 218 | |||
| 219 | a { | ||
| 220 | word-wrap: break-word; | ||
| 221 | } | ||
| 222 | } | ||
| 223 | </style> | ||
| 224 | <script defer src="https://app.tinyanalytics.io/pixel/isfRNEahfHiS2Ttp"></script> | ||
| 225 | </head> | ||
| 226 | <body> | ||
| 227 | |||
| 228 | <header> | ||
| 229 | <nav class="main" itemscope itemtype="http://schema.org/SiteNavigationElement" role="navigation" aria-label="Main navigation"> | ||
| 230 | <a href="/">Home</a> | ||
| 231 | <a href="/vault.html">Vault</a> | ||
| 232 | <a href="https://github.com/mitjafelicijan" target="_blank">Code</a> | ||
| 233 | <a href="/assets/mitjafelicijan.pgp.pub.txt" target="_blank" class="hob">PGP</a> | ||
| 234 | <a href="/assets/urls.txt" target="_blank" class="hob">Newsboat</a> | ||
| 235 | <a href="/curriculum-vitae.html">CV</a> | ||
| 236 | <a href="/feed.xml" target="_blank" class="hob">RSS</a> | ||
| 237 | </nav> | ||
| 238 | </header> | ||
| 239 | |||
| 240 | <main role="main"> | ||
| 241 | {{ content }} | ||
| 242 | </main> | ||
| 243 | |||
| 244 | <footer> | ||
| 245 | <hr> | ||
| 246 | <p><big><strong>Want to comment or have something to add?</strong></big></p> | ||
| 247 | <p> | ||
| 248 | You can write me an email | ||
| 249 | at <a href="mailto:mitja.felicijan@gmail.com">mitja.felicijan@gmail.com</a> or | ||
| 250 | catch up with me <a href="https://telegram.me/mitjafelicijan" target="_blank">on Telegram</a>. | ||
| 251 | </p> | ||
| 252 | <hr> | ||
| 253 | <p><small>This page's most recent build occurred on {{ site.time | date: "%A, %-d %B, %Y" }} and is also available as <a href="/feed.xml" target="_blank">RSS feed</a>.</small></p> | ||
| 254 | </footer> | ||
| 255 | |||
| 256 | {% if page.mathjax %} | ||
| 257 | <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> | ||
| 258 | <script src="https://cdn.jsdelivr.net/npm/mathjax@3.0.1/es5/tex-mml-chtml.js" async></script> | ||
| 259 | {% endif %} | ||
| 260 | |||
| 261 | </body> | ||
| 262 | </html> | ||
diff --git a/_layouts/index.html b/_layouts/index.html deleted file mode 100644 index 3ce3d8f..0000000 --- a/_layouts/index.html +++ /dev/null | |||
| @@ -1,10 +0,0 @@ | |||
| 1 | --- | ||
| 2 | layout: base | ||
| 3 | --- | ||
| 4 | |||
| 5 | <main> | ||
| 6 | {{ content }} | ||
| 7 | |||
| 8 | <hr> | ||
| 9 | {% include webring.html %} | ||
| 10 | </main> | ||
diff --git a/_layouts/page.html b/_layouts/page.html deleted file mode 100644 index a029b8d..0000000 --- a/_layouts/page.html +++ /dev/null | |||
| @@ -1,10 +0,0 @@ | |||
| 1 | --- | ||
| 2 | layout: base | ||
| 3 | --- | ||
| 4 | |||
| 5 | <article itemtype="http://schema.org/Article"> | ||
| 6 | <h1 itemtype="headline">{{ page.title }}</h1> | ||
| 7 | <div> | ||
| 8 | {{ content }} | ||
| 9 | </div> | ||
| 10 | </article> | ||
diff --git a/_layouts/post.html b/_layouts/post.html deleted file mode 100644 index df77a9d..0000000 --- a/_layouts/post.html +++ /dev/null | |||
| @@ -1,11 +0,0 @@ | |||
| 1 | --- | ||
| 2 | layout: base | ||
| 3 | --- | ||
| 4 | |||
| 5 | <article itemtype="http://schema.org/Article"> | ||
| 6 | <h1 itemtype="headline">{{ page.title }}</h1> | ||
| 7 | <p><cap><u>{{ page.type }}</u></cap>, {{ page.date | date: '%B %d, %Y' }} on <a href="{{ site.url }}">{{ site.author }}'s blog</a></p> | ||
| 8 | <div> | ||
| 9 | {{ content }} | ||
| 10 | </div> | ||
| 11 | </article> | ||
diff --git a/_layouts/vault.md b/_layouts/vault.md deleted file mode 100644 index 2f10868..0000000 --- a/_layouts/vault.md +++ /dev/null | |||
| @@ -1,25 +0,0 @@ | |||
| 1 | --- | ||
| 2 | title: Personal vault | ||
| 3 | date: 2022-08-27T12:00:00+02:00 | ||
| 4 | permalink: /vault.html | ||
| 5 | layout: page | ||
| 6 | type: page | ||
| 7 | draft: false | ||
| 8 | --- | ||
| 9 | |||
| 10 | ## Hi traveler! | ||
| 11 | |||
| 12 | This curated compilation functions as a dedicated repository where I house an | ||
| 13 | assortment of captivating and noteworthy items I've amassed over the years. | ||
| 14 | |||
| 15 | Additionally, it serves as a secure haven for preserving binaries and assorted | ||
| 16 | assets associated with my personal projects, ensuring easy access and | ||
| 17 | organization. | ||
| 18 | |||
| 19 | Be kind, this server is bandwidth limited. | ||
| 20 | |||
| 21 | *Good luck!* | ||
| 22 | |||
| 23 | --- | ||
| 24 | |||
| 25 | {CONTENT} | ||
