diff --git a/src/content/posts/lets-encrypts-root-certificate-expired/index.md b/src/content/posts/lets-encrypts-root-certificate-expired/index.md index 328d3fb..be50cb1 100644 --- a/src/content/posts/lets-encrypts-root-certificate-expired/index.md +++ b/src/content/posts/lets-encrypts-root-certificate-expired/index.md @@ -7,7 +7,9 @@ image: letsencrypt.png ---

And it happened, yesterday (30th September, 2021), the root certificate that LE was using expired. How should I deal with this?. Well, it depends. If your OS is recent probably you just need to update the package where the ca-certificates are, but total different story if your OS is as old as WW1.

+

In my case I've a Debian7 using and comsuming some LE certs in both ways so I woke up this morning with the smell of alert in the atmosphere. After reading some literature here and there and talked about it with some mates, decided to manually update the certificate. I was forced to proceed in that way because the package updates for deb7 are totally out of date (or even closed I'd say).

+

We can see the error here:

```bash diff --git a/src/themes/tale/LICENSE b/src/themes/tale/LICENSE deleted file mode 100644 index 80262fe..0000000 --- a/src/themes/tale/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2018 Emiel Hollander -Copyright (c) 2018 Chester How (original theme) - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/src/themes/tale/README.md b/src/themes/tale/README.md deleted file mode 100644 index f2afdb0..0000000 --- a/src/themes/tale/README.md +++ /dev/null @@ -1,182 +0,0 @@ -# Tale - -[![Build Status](https://travis-ci.com/EmielH/tale-hugo.svg?branch=master)](https://travis-ci.com/EmielH/tale-hugo) - -This is a port of the [Tale theme for Jekyll](https://github.com/chesterhow/tale) to Hugo. Tale is a minimal Jekyll theme curated for storytellers. Checkout the demo [here](https://chesterhow.github.io/tale/). I did not design this theme; I only ported it from Jekyll to Hugo. - -![Tale screenshot](https://raw.githubusercontent.com/EmielH/tale-hugo/master/images/screenshot.png) - -## Installation - -### 1. Install the theme - -If your site is also under version control using git, the easiest way to install this theme is to add it as a submodule. If you have not created a git repo for your project yet, you need to run `git init` beforehand. Inside the folder of your Hugo site, run the following command. - -``` -git submodule add https://github.com/EmielH/tale-hugo.git themes/tale -``` - -Alternatively, you can clone the theme into your project. - -``` -git clone https://github.com/EmielH/tale-hugo.git themes/tale -``` - -### 2. Configure Hugo - -Add the following line to `config.toml` to tell Hugo to use the theme. - -``` -theme = "tale" -``` - -Alternatively, you can tell Hugo to use the theme with the `server` command. - -``` -hugo server -t tale -``` - -### Additional information - -For more information, read the official [setup guide](https://gohugo.io/overview/installing/) of Hugo. - -### Update the theme - -If you have installed the theme as a git submodule, you can update the theme by issuing the following command inside your project folder. - -``` -git submodule update --remote --rebase -``` - -If you have cloned the theme, you can run `git pull` inside the theme folder. - -## Configuration - -### Menu - -The top menu uses [Hugo Menus](https://gohugo.io/content-management/menus/), with the name of the menu being `main`. To turn on the menu, follow the steps there - you can either add something like this to the front-matter of your pages: - -``` ---- -menu: "main" ---- -``` - -... or you can add a menu section to your `config` file: - -``` -sectionPagesMenu = "main" -``` - -Or if you want more control, add a specific entry for each item in your menu: - -``` -[menu] - [[menu.main]] - identifier = "about" - name = "About" - title = "About" - url = "/about/" - weight = 0 - [[menu.main]] - identifier = "posts" - name = "Posts" - title = "Posts" - url = "/posts/" - weight = 0 -``` - -For menu internationalization/translation, see [Multilingual Mode: Menus](https://gohugo.io/content-management/multilingual/#menus). - -### Internationalisation (i18n) - -Tale supports using other languages than English. Language files for the texts Tale uses are provided in the `i18n` directory. The default language is English. To switch languages, add the key `defaultContentLanguage` to your `config.toml` file. For example: - -``` -defaultContentLanguage = "nl" -``` - -To translate texts your site uses, add an `i18n` folder to your site. - -Feel free to submit pull requests for other translations of Tale's texts. - -[Hugo documentation for multilingual sites](//gohugo.io/content-management/multilingual/) - -### Disqus -Tale supports Disqus integration, a comment system that empowers dynamic features to static websites. To install it, just add the key `disqusShortname` in your `config.toml` -``` toml -disqusShortname = "disqus-example" -``` -Add the parameter `comments` in the front-matter of the pages where you want to allow comments -``` ---- -comments: true ---- -``` - -### Google Analytics - -Tale supports Google Analytics integration using Hugo's provided `google_analytics_async` template. - -To enable it, add the `googleAnalytics` tag to your `config.toml`. It will be added on all pages. - -```toml -googleAnalytics = "UA-133700000-0" -``` - -### Custom summaries - -Tale allows for writing the summary of your posts manually by setting the `summary` variable in the page frontmatter. If this variable is not set, the summary that Hugo automatically generates will be used. - -### Taxonomies - -Tale has basic support for taxonomies. Taxonomy and terms pages will be generated when you have defined taxonomies, but you need to include links to these pages yourself. For example, you can add a link to a taxonomy page in `header-menu.html`. - -### Placeholder partials - -The theme contains placeholder partials to make the theme more flexible and easier to adapt to your site without having to change the theme itself. These are: - -- `single/header.html` -- `single/footer.html` - -These are included in the template for a single post, at the top of the post (below the title) and at the bottom of the post, respectively. These can be used, for example, to include additional information about the post author or for related posts. Create a file `/layouts/partials/single/header.html` or `footer.html` on your own site to have it included. - -- `index/introduction.html` - -This partial is included at the top of the list of posts on the index page, allowing you to add an introduction to your site. - -### Copyright message - -The copyright message in the footer uses the name of the author of the site, as defined in `config.toml`. For example: - -``` -[Author] - name = "Emiel" -``` - -### Additional CSS files - -The theme can load additional CSS files for you, e.g. to override some of the styles, or the CSS that goes with a component that you're using. To add additional CSS files, put these files in the `static` folder of your site and add the `css` parameter to `config.toml`, like so: - -``` -[Params] -css = ["custom.css"] -``` - -To load multiple CSS files, use the parameter like this: - -``` -[Params] -css = ["custom.css", "custom2.css"] -``` - -## Acknowledgments - -Thanks - -- to [Chester How](//github.com/chesterhow) for creating the original [Tale theme for Jekyll](https://chesterhow.github.io/tale/), -- to [onedrawingperday](//github.com/onedrawingperday), [bep](//github.com/bep) and [digitalcraftsman](//github.com/digitalcraftsman) for their help in getting the theme working correctly with Hugo, -- to [lucperkins](https://github.com/lucperkins) for the [Fresh theme](https://github.com/lucperkins/hugo-fresh) from which I used some useful snippets of code. - -## License -See [LICENSE](https://github.com/EmielH/tale-hugo/blob/master/LICENSE). diff --git a/src/themes/tale/assets/scss/tale.scss b/src/themes/tale/assets/scss/tale.scss deleted file mode 100644 index 3cdfa99..0000000 --- a/src/themes/tale/assets/scss/tale.scss +++ /dev/null @@ -1,8 +0,0 @@ -@import 'tale/variables'; -@import 'tale/base'; -@import 'tale/code'; -@import 'tale/post'; -@import 'tale/syntax'; -@import 'tale/layout'; -@import 'tale/pagination'; -@import 'tale/catalogue'; diff --git a/src/themes/tale/assets/scss/tale/_base.scss b/src/themes/tale/assets/scss/tale/_base.scss deleted file mode 100644 index 6c2471b..0000000 --- a/src/themes/tale/assets/scss/tale/_base.scss +++ /dev/null @@ -1,67 +0,0 @@ -* { - @include box-sizing; - line-height: 1.5; -} - -html, -body { - color: $default-color; - background-color: #fff; - margin: 0; - padding: 0; -} - -html { - font-family: $serif-primary; - font-size: 14px; - overflow-y: scroll; - - @media (min-width: 600px) { - font-size: 16px; - } -} - -body { - -webkit-text-size-adjust: 100%; -} - -h1, -h2, -h3, -h4, -h5, -h6 { - color: $default-shade; - font-family: $sans-serif; - line-height: normal; -} - -a { - color: $blue; - text-decoration: none; -} - -blockquote { - border-left: .25rem solid $grey-2; - color: $grey-1; - margin: .8rem 0; - padding: .5rem 1rem; - - p:last-child { - margin-bottom: 0; - } - - @media (min-width: 600px) { - padding: 0 5rem 0 1.25rem; - } -} - -img { - display: block; - margin: 0 0 1rem; - max-width: 100%; -} - -td { - vertical-align: top; -} diff --git a/src/themes/tale/assets/scss/tale/_catalogue.scss b/src/themes/tale/assets/scss/tale/_catalogue.scss deleted file mode 100644 index 0587bc5..0000000 --- a/src/themes/tale/assets/scss/tale/_catalogue.scss +++ /dev/null @@ -1,39 +0,0 @@ -.catalogue { - &-item { - border-bottom: 1px solid $grey-2; - color: $default-color; - display: block; - padding: 2rem 0; - - &:hover .catalogue-line, - &:focus .catalogue-line { - width: 5rem; - } - - &:last-child { - border: 0; - } - } - - &-time { - color: $default-tint; - font-family: $serif-secondary; - letter-spacing: .5px; - } - - &-title { - color: $default-shade; - display: block; - font-family: $sans-serif; - font-size: 2rem; - font-weight: 700; - margin: .5rem 0; - } - - &-line { - @include transition(all .3s ease-out); - border-top: .2rem solid $default-shade; - display: block; - width: 2rem; - } -} diff --git a/src/themes/tale/assets/scss/tale/_code.scss b/src/themes/tale/assets/scss/tale/_code.scss deleted file mode 100644 index 8d3db57..0000000 --- a/src/themes/tale/assets/scss/tale/_code.scss +++ /dev/null @@ -1,47 +0,0 @@ -pre, -code { - font-family: $monospaced; -} - -code { - background-color: $grey-3; - border-radius: 3px; - color: $code-color; - font-size: 85%; - padding: .25em .5em; - white-space: pre-wrap; -} - -pre { - margin: 0 0 1rem; -} - -pre code { - background-color: transparent; - color: inherit; - font-size: 100%; - padding: 0; -} - -.highlight { - background-color: $grey-3; - border-radius: 3px; - line-height: 1.4; - margin: 0 0 1rem; - padding: 1rem; - - pre { - margin-bottom: 0; - overflow-x: auto; - } - - .lineno { - color: $default-tint; - display: inline-block; // Ensures the null space also isn't selectable - padding: 0 .75rem 0 .25rem; - // Make sure numbers aren't selectable - -webkit-user-select: none; - -moz-user-select: none; - user-select: none; - } -} diff --git a/src/themes/tale/assets/scss/tale/_layout.scss b/src/themes/tale/assets/scss/tale/_layout.scss deleted file mode 100644 index ba4a7b0..0000000 --- a/src/themes/tale/assets/scss/tale/_layout.scss +++ /dev/null @@ -1,92 +0,0 @@ -.container { - margin: 0 auto; - max-width: 800px; - width: 80%; -} - -main, -footer, -.nav-container { - display: block; - margin: 0 auto; - max-width: 800px; - width: 80%; -} - -.nav { - box-shadow: 0 2px 2px -2px $shadow-color; - overflow: auto; - - &-container { - margin: 1rem auto; - position: relative; - text-align: center; - } - - &-title { - @include transition(all .2s ease-out); - color: $default-color; - display: inline-block; - margin: 0; - padding-right: .2rem; - - &:hover, - &:focus { - opacity: .6; - } - } - - ul { - list-style-type: none; - margin: 1rem 0 0; - padding: 0; - text-align: center; - } - - li { - @include transition(all .2s ease-out); - color: $default-color; - display: inline-block; - opacity: .6; - padding: 0 2rem 0 0; - - &:last-child { - padding-right: 0; - } - - &:hover, - &:focus { - opacity: 1; - } - } - - a { - color: $default-color; - font-family: $sans-serif; - } -} - -@media (min-width: 600px) { - .nav { - &-container { - text-align: left; - } - - ul { - bottom: 0; - position: absolute; - right: 0; - } - } -} - -footer { - font-family: $serif-secondary; - padding: 2rem 0; - text-align: center; - - span { - color: $default-color; - font-size: .8rem; - } -} diff --git a/src/themes/tale/assets/scss/tale/_pagination.scss b/src/themes/tale/assets/scss/tale/_pagination.scss deleted file mode 100644 index 3700e15..0000000 --- a/src/themes/tale/assets/scss/tale/_pagination.scss +++ /dev/null @@ -1,44 +0,0 @@ -.pagination { - border-top: .5px solid $grey-2; - font-family: $serif-secondary; - padding-top: 2rem; - position: relative; - text-align: center; - - span { - color: $default-shade; - font-size: 1.1rem; - } - - .top { - @include transition(all .3s ease-out); - color: $default-color; - font-family: $sans-serif; - font-size: 1.1rem; - opacity: .6; - - &:hover { - opacity: 1; - } - } - - .arrow { - @include transition(all .3s ease-out); - color: $default-color; - position: absolute; - - &:hover, - &:focus { - opacity: .6; - text-decoration: none; - } - } - - .left { - left: 0; - } - - .right { - right: 0; - } -} diff --git a/src/themes/tale/assets/scss/tale/_post.scss b/src/themes/tale/assets/scss/tale/_post.scss deleted file mode 100644 index 3680d80..0000000 --- a/src/themes/tale/assets/scss/tale/_post.scss +++ /dev/null @@ -1,63 +0,0 @@ -.post { - padding: 3rem 0; - - &-info { - color: $default-tint; - font-family: $serif-secondary; - letter-spacing: 0.5px; - text-align: center; - - span { - font-style: italic; - } - } - - &-title { - color: $default-shade; - font-family: $sans-serif; - font-size: 4rem; - margin: 1rem 0; - text-align: center; - } - - &-line { - border-top: 0.4rem solid $default-shade; - display: block; - margin: 0 auto 3rem; - width: 4rem; - } - - p { - margin: 0 0 1rem; - text-align: justify; - } - - a:hover { - text-decoration: underline; - } - - img { - margin: 0 auto 0.5rem; - } - - img + em { - color: $default-tint; - display: block; - font-family: $sans-serif; - font-size: 0.9rem; - font-style: normal; - text-align: center; - } - - // CSS for making emoji inline - img.emoji { - display: inline-block; - left: 0; - transform: none; - width: 1rem; - height: 1rem; - vertical-align: text-top; - padding: 0; - margin: 0; - } -} diff --git a/src/themes/tale/assets/scss/tale/_syntax.scss b/src/themes/tale/assets/scss/tale/_syntax.scss deleted file mode 100644 index 15ad797..0000000 --- a/src/themes/tale/assets/scss/tale/_syntax.scss +++ /dev/null @@ -1,65 +0,0 @@ -.highlight .hll { background-color: #ffc; } -.highlight .c { color: #999; } /* Comment */ -.highlight .err { color: #a00; background-color: #faa } /* Error */ -.highlight .k { color: #069; } /* Keyword */ -.highlight .o { color: #555 } /* Operator */ -.highlight .cm { color: #09f; font-style: italic } /* Comment.Multiline */ -.highlight .cp { color: #099 } /* Comment.Preproc */ -.highlight .c1 { color: #999; } /* Comment.Single */ -.highlight .cs { color: #999; } /* Comment.Special */ -.highlight .gd { background-color: #fcc; border: 1px solid #c00 } /* Generic.Deleted */ -.highlight .ge { font-style: italic } /* Generic.Emph */ -.highlight .gr { color: #f00 } /* Generic.Error */ -.highlight .gh { color: #030; } /* Generic.Heading */ -.highlight .gi { background-color: #cfc; border: 1px solid #0c0 } /* Generic.Inserted */ -.highlight .go { color: #aaa } /* Generic.Output */ -.highlight .gp { color: #009; } /* Generic.Prompt */ -.highlight .gs { } /* Generic.Strong */ -.highlight .gu { color: #030; } /* Generic.Subheading */ -.highlight .gt { color: #9c6 } /* Generic.Traceback */ -.highlight .kc { color: #069; } /* Keyword.Constant */ -.highlight .kd { color: #069; } /* Keyword.Declaration */ -.highlight .kn { color: #069; } /* Keyword.Namespace */ -.highlight .kp { color: #069 } /* Keyword.Pseudo */ -.highlight .kr { color: #069; } /* Keyword.Reserved */ -.highlight .kt { color: #078; } /* Keyword.Type */ -.highlight .m { color: #f60 } /* Literal.Number */ -.highlight .s { color: #d44950 } /* Literal.String */ -.highlight .na { color: #4f9fcf } /* Name.Attribute */ -.highlight .nb { color: #366 } /* Name.Builtin */ -.highlight .nc { color: #0a8; } /* Name.Class */ -.highlight .no { color: #360 } /* Name.Constant */ -.highlight .nd { color: #99f } /* Name.Decorator */ -.highlight .ni { color: #999; } /* Name.Entity */ -.highlight .ne { color: #c00; } /* Name.Exception */ -.highlight .nf { color: #c0f } /* Name.Function */ -.highlight .nl { color: #99f } /* Name.Label */ -.highlight .nn { color: #0cf; } /* Name.Namespace */ -.highlight .nt { color: #2f6f9f; } /* Name.Tag */ -.highlight .nv { color: #033 } /* Name.Variable */ -.highlight .ow { color: #000; } /* Operator.Word */ -.highlight .w { color: #bbb } /* Text.Whitespace */ -.highlight .mf { color: #f60 } /* Literal.Number.Float */ -.highlight .mh { color: #f60 } /* Literal.Number.Hex */ -.highlight .mi { color: #f60 } /* Literal.Number.Integer */ -.highlight .mo { color: #f60 } /* Literal.Number.Oct */ -.highlight .sb { color: #c30 } /* Literal.String.Backtick */ -.highlight .sc { color: #c30 } /* Literal.String.Char */ -.highlight .sd { color: #c30; font-style: italic } /* Literal.String.Doc */ -.highlight .s2 { color: #c30 } /* Literal.String.Double */ -.highlight .se { color: #c30; } /* Literal.String.Escape */ -.highlight .sh { color: #c30 } /* Literal.String.Heredoc */ -.highlight .si { color: #a00 } /* Literal.String.Interpol */ -.highlight .sx { color: #c30 } /* Literal.String.Other */ -.highlight .sr { color: #3aa } /* Literal.String.Regex */ -.highlight .s1 { color: #c30 } /* Literal.String.Single */ -.highlight .ss { color: #fc3 } /* Literal.String.Symbol */ -.highlight .bp { color: #366 } /* Name.Builtin.Pseudo */ -.highlight .vc { color: #033 } /* Name.Variable.Class */ -.highlight .vg { color: #033 } /* Name.Variable.Global */ -.highlight .vi { color: #033 } /* Name.Variable.Instance */ -.highlight .il { color: #f60 } /* Literal.Number.Integer.Long */ - -.css .o, -.css .o + .nt, -.css .nt + .nt { color: #999; } diff --git a/src/themes/tale/assets/scss/tale/_variables.scss b/src/themes/tale/assets/scss/tale/_variables.scss deleted file mode 100644 index 8a064f3..0000000 --- a/src/themes/tale/assets/scss/tale/_variables.scss +++ /dev/null @@ -1,29 +0,0 @@ -// Colors -$default-color: #555; -$default-shade: #353535; -$default-tint: #aaa; -$grey-1: #979797; -$grey-2: #e5e5e5; -$grey-3: #f9f9f9; -$white: #fff; -$blue: #4a9ae1; -$shadow-color: rgba(0, 0, 0, .2); -$code-color: #bf616a; - -// Fonts -$serif-primary: 'Libre Baskerville', 'Times New Roman', Times, serif; -$serif-secondary: Palatino, 'Palatino LT STD', 'Palatino Linotype', 'Book Antiqua', 'Georgia', serif; -$sans-serif: 'Helvetica Neue', 'Segoe UI', Helvetica, Arial, sans-serif; -$monospaced: Menlo, Monaco, monospace; - -@mixin box-sizing($type: border-box) { - -webkit-box-sizing: $type; - -moz-box-sizing: $type; - box-sizing: $type; -} - -@mixin transition($args...) { - -webkit-transition: $args; - -moz-transition: $args; - transition: $args; -} diff --git a/src/themes/tale/data/months_de.yaml b/src/themes/tale/data/months_de.yaml deleted file mode 100644 index f18a1e3..0000000 --- a/src/themes/tale/data/months_de.yaml +++ /dev/null @@ -1,12 +0,0 @@ -1: "Januar" -2: "Februar" -3: "März" -4: "April" -5: "Mai" -6: "Juni" -7: "Juli" -8: "August" -9: "September" -10: "Oktober" -11: "November" -12: "Dezember" diff --git a/src/themes/tale/data/months_es.yaml b/src/themes/tale/data/months_es.yaml deleted file mode 100644 index e2fc147..0000000 --- a/src/themes/tale/data/months_es.yaml +++ /dev/null @@ -1,12 +0,0 @@ -1: "enero" -2: "febrero" -3: "marzo" -4: "abril" -5: "mayo" -6: "junio" -7: "julio" -8: "agosto" -9: "septiembre" -10: "octubre" -11: "noviembre" -12: "diciembre" diff --git a/src/themes/tale/data/months_fr.yaml b/src/themes/tale/data/months_fr.yaml deleted file mode 100644 index 21c9088..0000000 --- a/src/themes/tale/data/months_fr.yaml +++ /dev/null @@ -1,12 +0,0 @@ -1: "janvier" -2: "février" -3: "mars" -4: "avril" -5: "mai" -6: "juin" -7: "juillet" -8: "août" -9: "septembre" -10: "octobre" -11: "novembre" -12: "décembre" diff --git a/src/themes/tale/data/months_it.yaml b/src/themes/tale/data/months_it.yaml deleted file mode 100644 index 9f584cd..0000000 --- a/src/themes/tale/data/months_it.yaml +++ /dev/null @@ -1,12 +0,0 @@ -1: "gennaio" -2: "febbraio" -3: "marzo" -4: "aprile" -5: "maggio" -6: "giugno" -7: "luglio" -8: "agosto" -9: "settembre" -10: "ottobre" -11: "novembre" -12: "dicembre" diff --git a/src/themes/tale/data/months_ku.yaml b/src/themes/tale/data/months_ku.yaml deleted file mode 100644 index 414251d..0000000 --- a/src/themes/tale/data/months_ku.yaml +++ /dev/null @@ -1,12 +0,0 @@ -1: "Adar" -2: "Avrêl" -3: "Gulan" -4: "Pûşper" -5: "Tîrmeh" -6: "Gelawêj" -7: "Rezber" -8: "Kewçêr" -9: "Sermawez" -10: "Berfanbar" -11: "Rêbendan" -12: "Reşemî" diff --git a/src/themes/tale/data/months_nl.yaml b/src/themes/tale/data/months_nl.yaml deleted file mode 100644 index c979892..0000000 --- a/src/themes/tale/data/months_nl.yaml +++ /dev/null @@ -1,12 +0,0 @@ -1: "januari" -2: "februari" -3: "maart" -4: "april" -5: "mei" -6: "juni" -7: "juli" -8: "augustus" -9: "september" -10: "oktober" -11: "november" -12: "december" \ No newline at end of file diff --git a/src/themes/tale/data/months_pl.yaml b/src/themes/tale/data/months_pl.yaml deleted file mode 100644 index d5f3756..0000000 --- a/src/themes/tale/data/months_pl.yaml +++ /dev/null @@ -1,12 +0,0 @@ -1: "stycznia" -2: "lutego" -3: "marca" -4: "kwietnia" -5: "maja" -6: "czerwca" -7: "lipca" -8: "sierpnia" -9: "września" -10: "października" -11: "listopada" -12: "grudnia" diff --git a/src/themes/tale/i18n/de.toml b/src/themes/tale/i18n/de.toml deleted file mode 100644 index c587b3f..0000000 --- a/src/themes/tale/i18n/de.toml +++ /dev/null @@ -1,11 +0,0 @@ -[writtenBy] -other = "Von" - -[on] -other = "am" - -[generator] -other = "Made with Hugo using the Tale theme." - -[publishdate] -other = "{{ .PublishDate.Day }}. {{ index $.Site.Data.months_de (printf \"%d\" .PublishDate.Month) }} {{ .PublishDate.Year }}" diff --git a/src/themes/tale/i18n/en.toml b/src/themes/tale/i18n/en.toml deleted file mode 100644 index fc9961f..0000000 --- a/src/themes/tale/i18n/en.toml +++ /dev/null @@ -1,11 +0,0 @@ -[writtenBy] -other = "Written by" - -[on] -other = "on" - -[generator] -other = "Made with Hugo using the Tale theme." - -[publishdate] -other = "{{ .PublishDate.Format \"January 2, 2006\" }}" \ No newline at end of file diff --git a/src/themes/tale/i18n/es.toml b/src/themes/tale/i18n/es.toml deleted file mode 100644 index 25f657e..0000000 --- a/src/themes/tale/i18n/es.toml +++ /dev/null @@ -1,11 +0,0 @@ -[writtenBy] -other = "Escrito por" - -[on] -other = "el" - -[generator] -other = "Hecho con Hugo usando el tema Tale." - -[publishdate] -other = "{{ .PublishDate.Day }} de {{ index $.Site.Data.months_es (printf \"%d\" .PublishDate.Month) }} de {{ .PublishDate.Year }}" diff --git a/src/themes/tale/i18n/fr.toml b/src/themes/tale/i18n/fr.toml deleted file mode 100644 index a13b993..0000000 --- a/src/themes/tale/i18n/fr.toml +++ /dev/null @@ -1,11 +0,0 @@ -[writtenBy] -other = "Écrit par" - -[on] -other = "le" - -[generator] -other = "Fait avec Hugo, à partir du thème Tale." - -[publishdate] -other = "{{ .PublishDate.Day }} {{ index $.Site.Data.months_fr (printf \"%d\" .PublishDate.Month) }} {{ .PublishDate.Year }}" diff --git a/src/themes/tale/i18n/it.toml b/src/themes/tale/i18n/it.toml deleted file mode 100644 index a0765a6..0000000 --- a/src/themes/tale/i18n/it.toml +++ /dev/null @@ -1,11 +0,0 @@ -[writtenBy] -other = "Scritto da" - -[on] -other = "il" - -[generator] -other = "Creato con Hugo usando il tema Tale." - -[publishdate] -other = "{{ .PublishDate.Day }} {{ index $.Site.Data.months_it (printf \"%d\" .PublishDate.Month) }} {{ .PublishDate.Year }}" diff --git a/src/themes/tale/i18n/ku.toml b/src/themes/tale/i18n/ku.toml deleted file mode 100644 index 43bdc5f..0000000 --- a/src/themes/tale/i18n/ku.toml +++ /dev/null @@ -1,11 +0,0 @@ -[writtenBy] -other = "Nivîskar:" - -[on] -other = "li" - -[generator] -other = "Bi Hugo û Tale-ê hatiye çêkirin." - -[publishdate] -other = "{{ .PublishDate.Day }} {{ index $.Site.Data.months_ku (printf \"%d\" .PublishDate.Month) }} {{ .PublishDate.Year }}" diff --git a/src/themes/tale/i18n/nl.toml b/src/themes/tale/i18n/nl.toml deleted file mode 100644 index 8357c08..0000000 --- a/src/themes/tale/i18n/nl.toml +++ /dev/null @@ -1,11 +0,0 @@ -[writtenBy] -other = "Geschreven door" - -[on] -other = "op" - -[generator] -other = "Gemaakt met Hugo en thema Tale." - -[publishdate] -other = "{{ .PublishDate.Day }} {{ index $.Site.Data.months_nl (printf \"%d\" .PublishDate.Month) }} {{ .PublishDate.Year }}" diff --git a/src/themes/tale/i18n/pl.toml b/src/themes/tale/i18n/pl.toml deleted file mode 100644 index 44b5ffa..0000000 --- a/src/themes/tale/i18n/pl.toml +++ /dev/null @@ -1,11 +0,0 @@ -[writtenBy] -other = "Autor" - -[on] -other = "opublikowano" - -[generator] -other = "Made with Hugo using the Tale theme." - -[publishdate] -other = "{{ .PublishDate.Day }}. {{ index $.Site.Data.months_pl (printf \"%d\" .PublishDate.Month) }} {{ .PublishDate.Year }}" diff --git a/src/themes/tale/images/screenshot.png b/src/themes/tale/images/screenshot.png deleted file mode 100644 index 032b970..0000000 Binary files a/src/themes/tale/images/screenshot.png and /dev/null differ diff --git a/src/themes/tale/images/tn.png b/src/themes/tale/images/tn.png deleted file mode 100644 index 7538894..0000000 Binary files a/src/themes/tale/images/tn.png and /dev/null differ diff --git a/src/themes/tale/layouts/404.html b/src/themes/tale/layouts/404.html deleted file mode 100644 index e69de29..0000000 diff --git a/src/themes/tale/layouts/_default/baseof.html b/src/themes/tale/layouts/_default/baseof.html deleted file mode 100644 index 285952f..0000000 --- a/src/themes/tale/layouts/_default/baseof.html +++ /dev/null @@ -1,9 +0,0 @@ - - - {{ partial "metas.html" . }} - - {{ partial "header.html" . }} - {{ block "main" . }}{{ end }} - {{ partial "footer.html" . }} - - diff --git a/src/themes/tale/layouts/_default/list.html b/src/themes/tale/layouts/_default/list.html deleted file mode 100644 index 8caab23..0000000 --- a/src/themes/tale/layouts/_default/list.html +++ /dev/null @@ -1,16 +0,0 @@ -{{ define "main" }} - -
-

List: Default

-
- {{ range (.Paginate (where .Pages "Type" "posts")).Pages }} - {{ .Render "summary" }} - {{ end }} -
- - -
- -{{ end }} diff --git a/src/themes/tale/layouts/_default/single.html b/src/themes/tale/layouts/_default/single.html deleted file mode 100644 index e9324cb..0000000 --- a/src/themes/tale/layouts/_default/single.html +++ /dev/null @@ -1,11 +0,0 @@ -{{ define "main" }} - -
-

Single: Default

-
- {{ .Content }} -
- -
- -{{ end }} diff --git a/src/themes/tale/layouts/_default/summary.html b/src/themes/tale/layouts/_default/summary.html deleted file mode 100644 index 39081be..0000000 --- a/src/themes/tale/layouts/_default/summary.html +++ /dev/null @@ -1,7 +0,0 @@ - -

{{ .Title }}

- -

- {{ if isset .Params "summary" }}{{ .Params.Summary | markdownify }}{{ else }}{{ .Summary }}{{ end }} -

-
diff --git a/src/themes/tale/layouts/_default/taxonomy.html b/src/themes/tale/layouts/_default/taxonomy.html deleted file mode 100644 index 4762ea8..0000000 --- a/src/themes/tale/layouts/_default/taxonomy.html +++ /dev/null @@ -1,24 +0,0 @@ -{{ define "main" }} - -
-

{{ strings.FirstUpper .Data.Singular }} {{ .Title }}

- Mis taxonomies -
- {{ range (.Paginate .Pages).Pages }} - {{ .Render "summary" }} - {{ end }} -
- - -
- -{{ end }} diff --git a/src/themes/tale/layouts/_default/terms.html b/src/themes/tale/layouts/_default/terms.html deleted file mode 100644 index ba1f4cf..0000000 --- a/src/themes/tale/layouts/_default/terms.html +++ /dev/null @@ -1,25 +0,0 @@ -{{ define "main" }} -
-

{{ .Title }}

- Mis terms -
- -
- - -
- -{{ end }} diff --git a/src/themes/tale/layouts/index.html b/src/themes/tale/layouts/index.html deleted file mode 100644 index e497777..0000000 --- a/src/themes/tale/layouts/index.html +++ /dev/null @@ -1,17 +0,0 @@ -{{ define "main" }} - -
- -

List: Index

-
- {{ range (.Paginate (where .Site.RegularPages "Type" "posts")).Pages }} - {{ .Render "summary" }} - {{ end }} -
- - -
- -{{ end }} diff --git a/src/themes/tale/layouts/partials/footer.html b/src/themes/tale/layouts/partials/footer.html deleted file mode 100644 index 3fdfa4f..0000000 --- a/src/themes/tale/layouts/partials/footer.html +++ /dev/null @@ -1,5 +0,0 @@ - diff --git a/src/themes/tale/layouts/partials/header.html b/src/themes/tale/layouts/partials/header.html deleted file mode 100644 index 2c6bd33..0000000 --- a/src/themes/tale/layouts/partials/header.html +++ /dev/null @@ -1,23 +0,0 @@ - diff --git a/src/themes/tale/layouts/partials/metas.html b/src/themes/tale/layouts/partials/metas.html deleted file mode 100644 index 014cd6c..0000000 --- a/src/themes/tale/layouts/partials/metas.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - {{- if .IsHome }} - - {{- else if .Description }} - - {{- end }} - - {{- if .IsHome }}{{ .Site.Title }}{{- else }}{{ .Title }} · {{ .Site.Title }}{{- end }} - - - {{- $inServerMode := .Site.IsServer }} - {{- $cssTarget := "css/style.css" }} - {{- $cssOptions := cond ($inServerMode) (dict "targetPath" $cssTarget "enableSourceMap" true) (dict "targetPath" $cssTarget "outputStyle" "compressed") }} - {{- $style := resources.Get "scss/tale.scss" | toCSS $cssOptions }} - - - {{ range .Site.Params.css -}} - - {{ end -}} - - - - - - - - - - diff --git a/src/themes/tale/layouts/partials/pagination.html b/src/themes/tale/layouts/partials/pagination.html deleted file mode 100644 index 5f4cfe9..0000000 --- a/src/themes/tale/layouts/partials/pagination.html +++ /dev/null @@ -1,8 +0,0 @@ -{{ if .Paginator.HasPrev }} - -{{ end }} -{{ if .Paginator.HasNext }} - -{{ end }} - -{{ .Paginator.PageNumber }} diff --git a/src/themes/tale/layouts/partials/posts/footer.html b/src/themes/tale/layouts/partials/posts/footer.html deleted file mode 100644 index e69de29..0000000 diff --git a/src/themes/tale/layouts/partials/posts/header.html b/src/themes/tale/layouts/partials/posts/header.html deleted file mode 100644 index c66dea0..0000000 --- a/src/themes/tale/layouts/partials/posts/header.html +++ /dev/null @@ -1,3 +0,0 @@ -{{- if .Params.image }} - -{{- end }} diff --git a/src/themes/tale/layouts/partials/posts/info.html b/src/themes/tale/layouts/partials/posts/info.html deleted file mode 100644 index b5c8aa3..0000000 --- a/src/themes/tale/layouts/partials/posts/info.html +++ /dev/null @@ -1,13 +0,0 @@ -
- {{ i18n "writtenBy" }} - {{- if .Params.Author }} - {{ .Params.Author }} - {{- else }} - {{ .Site.Author.name }} - {{- end }} - - {{- if .PublishDate }} -
- {{ i18n "on" }}  - {{- end }} -
diff --git a/src/themes/tale/layouts/partials/posts/pagination.html b/src/themes/tale/layouts/partials/posts/pagination.html deleted file mode 100644 index fdcd30c..0000000 --- a/src/themes/tale/layouts/partials/posts/pagination.html +++ /dev/null @@ -1,7 +0,0 @@ - - {{- if .PrevPage }} - - {{- end }} - {{- if .NextPage }} - - {{- end }} diff --git a/src/themes/tale/layouts/partials/posts/title.html b/src/themes/tale/layouts/partials/posts/title.html deleted file mode 100644 index b0c4e95..0000000 --- a/src/themes/tale/layouts/partials/posts/title.html +++ /dev/null @@ -1,2 +0,0 @@ -

{{ .Title }}

-
diff --git a/src/themes/tale/layouts/posts/list.html b/src/themes/tale/layouts/posts/list.html deleted file mode 100644 index 51c7545..0000000 --- a/src/themes/tale/layouts/posts/list.html +++ /dev/null @@ -1,17 +0,0 @@ -{{ define "main" }} - -
-

List: Posts

-
- {{ range (.Paginate .Pages).Pages }} - {{ .Render "summary" }} - {{ end }} -
- - -
- -{{ end }} - diff --git a/src/themes/tale/layouts/posts/single.html b/src/themes/tale/layouts/posts/single.html deleted file mode 100644 index ebb64ca..0000000 --- a/src/themes/tale/layouts/posts/single.html +++ /dev/null @@ -1,24 +0,0 @@ -{{ define "main" }} - -
-

Single: Post

- -
- {{ partial "posts/info.html" . }} - {{ partial "posts/title.html" . }} - {{ partial "posts/header.html" . }} - - - {{ .Content }} - - {{ partial "posts/footer.html" . }} -
- - -
- -{{ end }} - diff --git a/src/themes/tale/layouts/projects/list.html b/src/themes/tale/layouts/projects/list.html deleted file mode 100644 index 5ae9f4f..0000000 --- a/src/themes/tale/layouts/projects/list.html +++ /dev/null @@ -1,15 +0,0 @@ -{{ define "main" }} - -
-Listado de proyectos..... - -
- {{ range (.Paginate (where .Pages "Type" "projects")).Pages }} - {{ .Render "summary" }} - {{ end }} -
- - -
- -{{ end }} diff --git a/src/themes/tale/layouts/projects/single.html b/src/themes/tale/layouts/projects/single.html deleted file mode 100644 index a1e364c..0000000 --- a/src/themes/tale/layouts/projects/single.html +++ /dev/null @@ -1,8 +0,0 @@ -{{ define "main" }} - -
-

{{ .Title }}

- -
- -{{ end }} diff --git a/src/themes/tale/layouts/sections/single.html b/src/themes/tale/layouts/sections/single.html deleted file mode 100644 index cf139b1..0000000 --- a/src/themes/tale/layouts/sections/single.html +++ /dev/null @@ -1,17 +0,0 @@ -{{ define "main" }} - -
-

Single: Sections

-
- - {{ .Content }} - -
- - -
- -{{ end }} - diff --git a/src/themes/tale/resources/_gen/assets/scss/scss/tale.scss_33d66d0b5f8b04b1d41c1da7ba50ddae.content b/src/themes/tale/resources/_gen/assets/scss/scss/tale.scss_33d66d0b5f8b04b1d41c1da7ba50ddae.content deleted file mode 100644 index cf4abca..0000000 --- a/src/themes/tale/resources/_gen/assets/scss/scss/tale.scss_33d66d0b5f8b04b1d41c1da7ba50ddae.content +++ /dev/null @@ -1 +0,0 @@ -*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;line-height:1.5}html,body{color:#555;background-color:#fff;margin:0;padding:0}html{font-family:"Libre Baskerville","Times New Roman",Times,serif;font-size:14px;overflow-y:scroll}@media (min-width: 600px){html{font-size:16px}}body{-webkit-text-size-adjust:100%}h1,h2,h3,h4,h5,h6{color:#353535;font-family:"Helvetica Neue","Segoe UI",Helvetica,Arial,sans-serif;line-height:normal}a{color:#4a9ae1;text-decoration:none}blockquote{border-left:0.25rem solid #e5e5e5;color:#979797;margin:.8rem 0;padding:.5rem 1rem}blockquote p:last-child{margin-bottom:0}@media (min-width: 600px){blockquote{padding:0 5rem 0 1.25rem}}img{display:block;margin:0 0 1rem;max-width:100%}td{vertical-align:top}pre,code{font-family:Menlo,Monaco,monospace}code{background-color:#f9f9f9;border-radius:3px;color:#bf616a;font-size:85%;padding:.25em .5em;white-space:pre-wrap}pre{margin:0 0 1rem}pre code{background-color:transparent;color:inherit;font-size:100%;padding:0}.highlight{background-color:#f9f9f9;border-radius:3px;line-height:1.4;margin:0 0 1rem;padding:1rem}.highlight pre{margin-bottom:0;overflow-x:auto}.highlight .lineno{color:#aaa;display:inline-block;padding:0 .75rem 0 .25rem;-webkit-user-select:none;-moz-user-select:none;user-select:none}.post{padding:3rem 0}.post-info{color:#aaa;font-family:Palatino,"Palatino LT STD","Palatino Linotype","Book Antiqua","Georgia",serif;letter-spacing:0.5px;text-align:center}.post-info span{font-style:italic}.post-title{color:#353535;font-family:"Helvetica Neue","Segoe UI",Helvetica,Arial,sans-serif;font-size:4rem;margin:1rem 0;text-align:center}.post-line{border-top:0.4rem solid #353535;display:block;margin:0 auto 3rem;width:4rem}.post p{margin:0 0 1rem;text-align:justify}.post a:hover{text-decoration:underline}.post img{margin:0 auto 0.5rem}.post img+em{color:#aaa;display:block;font-family:"Helvetica Neue","Segoe UI",Helvetica,Arial,sans-serif;font-size:0.9rem;font-style:normal;text-align:center}.post img.emoji{display:inline-block;left:0;transform:none;width:1rem;height:1rem;vertical-align:text-top;padding:0;margin:0}.highlight .hll{background-color:#ffc}.highlight .c{color:#999}.highlight .err{color:#a00;background-color:#faa}.highlight .k{color:#069}.highlight .o{color:#555}.highlight .cm{color:#09f;font-style:italic}.highlight .cp{color:#099}.highlight .c1{color:#999}.highlight .cs{color:#999}.highlight .gd{background-color:#fcc;border:1px solid #c00}.highlight .ge{font-style:italic}.highlight .gr{color:#f00}.highlight .gh{color:#030}.highlight .gi{background-color:#cfc;border:1px solid #0c0}.highlight .go{color:#aaa}.highlight .gp{color:#009}.highlight .gu{color:#030}.highlight .gt{color:#9c6}.highlight .kc{color:#069}.highlight .kd{color:#069}.highlight .kn{color:#069}.highlight .kp{color:#069}.highlight .kr{color:#069}.highlight .kt{color:#078}.highlight .m{color:#f60}.highlight .s{color:#d44950}.highlight .na{color:#4f9fcf}.highlight .nb{color:#366}.highlight .nc{color:#0a8}.highlight .no{color:#360}.highlight .nd{color:#99f}.highlight .ni{color:#999}.highlight .ne{color:#c00}.highlight .nf{color:#c0f}.highlight .nl{color:#99f}.highlight .nn{color:#0cf}.highlight .nt{color:#2f6f9f}.highlight .nv{color:#033}.highlight .ow{color:#000}.highlight .w{color:#bbb}.highlight .mf{color:#f60}.highlight .mh{color:#f60}.highlight .mi{color:#f60}.highlight .mo{color:#f60}.highlight .sb{color:#c30}.highlight .sc{color:#c30}.highlight .sd{color:#c30;font-style:italic}.highlight .s2{color:#c30}.highlight .se{color:#c30}.highlight .sh{color:#c30}.highlight .si{color:#a00}.highlight .sx{color:#c30}.highlight .sr{color:#3aa}.highlight .s1{color:#c30}.highlight .ss{color:#fc3}.highlight .bp{color:#366}.highlight .vc{color:#033}.highlight .vg{color:#033}.highlight .vi{color:#033}.highlight .il{color:#f60}.css .o,.css .o+.nt,.css .nt+.nt{color:#999}.container{margin:0 auto;max-width:800px;width:80%}main,footer,.nav-container{display:block;margin:0 auto;max-width:800px;width:80%}.nav{box-shadow:0 2px 2px -2px rgba(0,0,0,0.2);overflow:auto}.nav-container{margin:1rem auto;position:relative;text-align:center}.nav-title{-webkit-transition:all 0.2s ease-out;-moz-transition:all 0.2s ease-out;transition:all 0.2s ease-out;color:#555;display:inline-block;margin:0;padding-right:.2rem}.nav-title:hover,.nav-title:focus{opacity:.6}.nav ul{list-style-type:none;margin:1rem 0 0;padding:0;text-align:center}.nav li{-webkit-transition:all 0.2s ease-out;-moz-transition:all 0.2s ease-out;transition:all 0.2s ease-out;color:#555;display:inline-block;opacity:.6;padding:0 2rem 0 0}.nav li:last-child{padding-right:0}.nav li:hover,.nav li:focus{opacity:1}.nav a{color:#555;font-family:"Helvetica Neue","Segoe UI",Helvetica,Arial,sans-serif}@media (min-width: 600px){.nav-container{text-align:left}.nav ul{bottom:0;position:absolute;right:0}}footer{font-family:Palatino,"Palatino LT STD","Palatino Linotype","Book Antiqua","Georgia",serif;padding:2rem 0;text-align:center}footer span{color:#555;font-size:.8rem}.pagination{border-top:0.5px solid #e5e5e5;font-family:Palatino,"Palatino LT STD","Palatino Linotype","Book Antiqua","Georgia",serif;padding-top:2rem;position:relative;text-align:center}.pagination span{color:#353535;font-size:1.1rem}.pagination .top{-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;transition:all 0.3s ease-out;color:#555;font-family:"Helvetica Neue","Segoe UI",Helvetica,Arial,sans-serif;font-size:1.1rem;opacity:.6}.pagination .top:hover{opacity:1}.pagination .arrow{-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;transition:all 0.3s ease-out;color:#555;position:absolute}.pagination .arrow:hover,.pagination .arrow:focus{opacity:.6;text-decoration:none}.pagination .left{left:0}.pagination .right{right:0}.catalogue-item{border-bottom:1px solid #e5e5e5;color:#555;display:block;padding:2rem 0}.catalogue-item:hover .catalogue-line,.catalogue-item:focus .catalogue-line{width:5rem}.catalogue-item:last-child{border:0}.catalogue-time{color:#aaa;font-family:Palatino,"Palatino LT STD","Palatino Linotype","Book Antiqua","Georgia",serif;letter-spacing:.5px}.catalogue-title{color:#353535;display:block;font-family:"Helvetica Neue","Segoe UI",Helvetica,Arial,sans-serif;font-size:2rem;font-weight:700;margin:.5rem 0}.catalogue-line{-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;transition:all 0.3s ease-out;border-top:0.2rem solid #353535;display:block;width:2rem} diff --git a/src/themes/tale/resources/_gen/assets/scss/scss/tale.scss_33d66d0b5f8b04b1d41c1da7ba50ddae.json b/src/themes/tale/resources/_gen/assets/scss/scss/tale.scss_33d66d0b5f8b04b1d41c1da7ba50ddae.json deleted file mode 100644 index 28c014b..0000000 --- a/src/themes/tale/resources/_gen/assets/scss/scss/tale.scss_33d66d0b5f8b04b1d41c1da7ba50ddae.json +++ /dev/null @@ -1 +0,0 @@ -{"Target":"css/style.css","MediaType":"text/css","Data":{}} \ No newline at end of file diff --git a/src/themes/tale/resources/_gen/assets/scss/scss/tale.scss_5ad6f408b0e3e473c748aac88af0ea18.content b/src/themes/tale/resources/_gen/assets/scss/scss/tale.scss_5ad6f408b0e3e473c748aac88af0ea18.content deleted file mode 100644 index 9c643f6..0000000 --- a/src/themes/tale/resources/_gen/assets/scss/scss/tale.scss_5ad6f408b0e3e473c748aac88af0ea18.content +++ /dev/null @@ -1,522 +0,0 @@ -* { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - line-height: 1.5; } - -html, -body { - color: #555; - background-color: #fff; - margin: 0; - padding: 0; } - -html { - font-family: "Libre Baskerville", "Times New Roman", Times, serif; - font-size: 14px; - overflow-y: scroll; } - @media (min-width: 600px) { - html { - font-size: 16px; } } - -body { - -webkit-text-size-adjust: 100%; } - -h1, -h2, -h3, -h4, -h5, -h6 { - color: #353535; - font-family: "Helvetica Neue", "Segoe UI", Helvetica, Arial, sans-serif; - line-height: normal; } - -a { - color: #4a9ae1; - text-decoration: none; } - -blockquote { - border-left: 0.25rem solid #e5e5e5; - color: #979797; - margin: .8rem 0; - padding: .5rem 1rem; } - blockquote p:last-child { - margin-bottom: 0; } - @media (min-width: 600px) { - blockquote { - padding: 0 5rem 0 1.25rem; } } - -img { - display: block; - margin: 0 0 1rem; - max-width: 100%; } - -td { - vertical-align: top; } - -pre, -code { - font-family: Menlo, Monaco, monospace; } - -code { - background-color: #f9f9f9; - border-radius: 3px; - color: #bf616a; - font-size: 85%; - padding: .25em .5em; - white-space: pre-wrap; } - -pre { - margin: 0 0 1rem; } - -pre code { - background-color: transparent; - color: inherit; - font-size: 100%; - padding: 0; } - -.highlight { - background-color: #f9f9f9; - border-radius: 3px; - line-height: 1.4; - margin: 0 0 1rem; - padding: 1rem; } - .highlight pre { - margin-bottom: 0; - overflow-x: auto; } - .highlight .lineno { - color: #aaa; - display: inline-block; - padding: 0 .75rem 0 .25rem; - -webkit-user-select: none; - -moz-user-select: none; - user-select: none; } - -.post { - padding: 3rem 0; } - .post-info { - color: #aaa; - font-family: Palatino, "Palatino LT STD", "Palatino Linotype", "Book Antiqua", "Georgia", serif; - letter-spacing: 0.5px; - text-align: center; } - .post-info span { - font-style: italic; } - .post-title { - color: #353535; - font-family: "Helvetica Neue", "Segoe UI", Helvetica, Arial, sans-serif; - font-size: 4rem; - margin: 1rem 0; - text-align: center; } - .post-line { - border-top: 0.4rem solid #353535; - display: block; - margin: 0 auto 3rem; - width: 4rem; } - .post p { - margin: 0 0 1rem; - text-align: justify; } - .post a:hover { - text-decoration: underline; } - .post img { - margin: 0 auto 0.5rem; } - .post img + em { - color: #aaa; - display: block; - font-family: "Helvetica Neue", "Segoe UI", Helvetica, Arial, sans-serif; - font-size: 0.9rem; - font-style: normal; - text-align: center; } - .post img.emoji { - display: inline-block; - left: 0; - transform: none; - width: 1rem; - height: 1rem; - vertical-align: text-top; - padding: 0; - margin: 0; } - -.highlight .hll { - background-color: #ffc; } - -.highlight .c { - color: #999; } - -/* Comment */ -.highlight .err { - color: #a00; - background-color: #faa; } - -/* Error */ -.highlight .k { - color: #069; } - -/* Keyword */ -.highlight .o { - color: #555; } - -/* Operator */ -.highlight .cm { - color: #09f; - font-style: italic; } - -/* Comment.Multiline */ -.highlight .cp { - color: #099; } - -/* Comment.Preproc */ -.highlight .c1 { - color: #999; } - -/* Comment.Single */ -.highlight .cs { - color: #999; } - -/* Comment.Special */ -.highlight .gd { - background-color: #fcc; - border: 1px solid #c00; } - -/* Generic.Deleted */ -.highlight .ge { - font-style: italic; } - -/* Generic.Emph */ -.highlight .gr { - color: #f00; } - -/* Generic.Error */ -.highlight .gh { - color: #030; } - -/* Generic.Heading */ -.highlight .gi { - background-color: #cfc; - border: 1px solid #0c0; } - -/* Generic.Inserted */ -.highlight .go { - color: #aaa; } - -/* Generic.Output */ -.highlight .gp { - color: #009; } - -/* Generic.Prompt */ -/* Generic.Strong */ -.highlight .gu { - color: #030; } - -/* Generic.Subheading */ -.highlight .gt { - color: #9c6; } - -/* Generic.Traceback */ -.highlight .kc { - color: #069; } - -/* Keyword.Constant */ -.highlight .kd { - color: #069; } - -/* Keyword.Declaration */ -.highlight .kn { - color: #069; } - -/* Keyword.Namespace */ -.highlight .kp { - color: #069; } - -/* Keyword.Pseudo */ -.highlight .kr { - color: #069; } - -/* Keyword.Reserved */ -.highlight .kt { - color: #078; } - -/* Keyword.Type */ -.highlight .m { - color: #f60; } - -/* Literal.Number */ -.highlight .s { - color: #d44950; } - -/* Literal.String */ -.highlight .na { - color: #4f9fcf; } - -/* Name.Attribute */ -.highlight .nb { - color: #366; } - -/* Name.Builtin */ -.highlight .nc { - color: #0a8; } - -/* Name.Class */ -.highlight .no { - color: #360; } - -/* Name.Constant */ -.highlight .nd { - color: #99f; } - -/* Name.Decorator */ -.highlight .ni { - color: #999; } - -/* Name.Entity */ -.highlight .ne { - color: #c00; } - -/* Name.Exception */ -.highlight .nf { - color: #c0f; } - -/* Name.Function */ -.highlight .nl { - color: #99f; } - -/* Name.Label */ -.highlight .nn { - color: #0cf; } - -/* Name.Namespace */ -.highlight .nt { - color: #2f6f9f; } - -/* Name.Tag */ -.highlight .nv { - color: #033; } - -/* Name.Variable */ -.highlight .ow { - color: #000; } - -/* Operator.Word */ -.highlight .w { - color: #bbb; } - -/* Text.Whitespace */ -.highlight .mf { - color: #f60; } - -/* Literal.Number.Float */ -.highlight .mh { - color: #f60; } - -/* Literal.Number.Hex */ -.highlight .mi { - color: #f60; } - -/* Literal.Number.Integer */ -.highlight .mo { - color: #f60; } - -/* Literal.Number.Oct */ -.highlight .sb { - color: #c30; } - -/* Literal.String.Backtick */ -.highlight .sc { - color: #c30; } - -/* Literal.String.Char */ -.highlight .sd { - color: #c30; - font-style: italic; } - -/* Literal.String.Doc */ -.highlight .s2 { - color: #c30; } - -/* Literal.String.Double */ -.highlight .se { - color: #c30; } - -/* Literal.String.Escape */ -.highlight .sh { - color: #c30; } - -/* Literal.String.Heredoc */ -.highlight .si { - color: #a00; } - -/* Literal.String.Interpol */ -.highlight .sx { - color: #c30; } - -/* Literal.String.Other */ -.highlight .sr { - color: #3aa; } - -/* Literal.String.Regex */ -.highlight .s1 { - color: #c30; } - -/* Literal.String.Single */ -.highlight .ss { - color: #fc3; } - -/* Literal.String.Symbol */ -.highlight .bp { - color: #366; } - -/* Name.Builtin.Pseudo */ -.highlight .vc { - color: #033; } - -/* Name.Variable.Class */ -.highlight .vg { - color: #033; } - -/* Name.Variable.Global */ -.highlight .vi { - color: #033; } - -/* Name.Variable.Instance */ -.highlight .il { - color: #f60; } - -/* Literal.Number.Integer.Long */ -.css .o, -.css .o + .nt, -.css .nt + .nt { - color: #999; } - -.container { - margin: 0 auto; - max-width: 800px; - width: 80%; } - -main, -footer, -.nav-container { - display: block; - margin: 0 auto; - max-width: 800px; - width: 80%; } - -.nav { - box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.2); - overflow: auto; } - .nav-container { - margin: 1rem auto; - position: relative; - text-align: center; } - .nav-title { - -webkit-transition: all 0.2s ease-out; - -moz-transition: all 0.2s ease-out; - transition: all 0.2s ease-out; - color: #555; - display: inline-block; - margin: 0; - padding-right: .2rem; } - .nav-title:hover, .nav-title:focus { - opacity: .6; } - .nav ul { - list-style-type: none; - margin: 1rem 0 0; - padding: 0; - text-align: center; } - .nav li { - -webkit-transition: all 0.2s ease-out; - -moz-transition: all 0.2s ease-out; - transition: all 0.2s ease-out; - color: #555; - display: inline-block; - opacity: .6; - padding: 0 2rem 0 0; } - .nav li:last-child { - padding-right: 0; } - .nav li:hover, .nav li:focus { - opacity: 1; } - .nav a { - color: #555; - font-family: "Helvetica Neue", "Segoe UI", Helvetica, Arial, sans-serif; } - -@media (min-width: 600px) { - .nav-container { - text-align: left; } - .nav ul { - bottom: 0; - position: absolute; - right: 0; } } - -footer { - font-family: Palatino, "Palatino LT STD", "Palatino Linotype", "Book Antiqua", "Georgia", serif; - padding: 2rem 0; - text-align: center; } - footer span { - color: #555; - font-size: .8rem; } - -.pagination { - border-top: 0.5px solid #e5e5e5; - font-family: Palatino, "Palatino LT STD", "Palatino Linotype", "Book Antiqua", "Georgia", serif; - padding-top: 2rem; - position: relative; - text-align: center; } - .pagination span { - color: #353535; - font-size: 1.1rem; } - .pagination .top { - -webkit-transition: all 0.3s ease-out; - -moz-transition: all 0.3s ease-out; - transition: all 0.3s ease-out; - color: #555; - font-family: "Helvetica Neue", "Segoe UI", Helvetica, Arial, sans-serif; - font-size: 1.1rem; - opacity: .6; } - .pagination .top:hover { - opacity: 1; } - .pagination .arrow { - -webkit-transition: all 0.3s ease-out; - -moz-transition: all 0.3s ease-out; - transition: all 0.3s ease-out; - color: #555; - position: absolute; } - .pagination .arrow:hover, .pagination .arrow:focus { - opacity: .6; - text-decoration: none; } - .pagination .left { - left: 0; } - .pagination .right { - right: 0; } - -.catalogue-item { - border-bottom: 1px solid #e5e5e5; - color: #555; - display: block; - padding: 2rem 0; } - .catalogue-item:hover .catalogue-line, - .catalogue-item:focus .catalogue-line { - width: 5rem; } - .catalogue-item:last-child { - border: 0; } - -.catalogue-time { - color: #aaa; - font-family: Palatino, "Palatino LT STD", "Palatino Linotype", "Book Antiqua", "Georgia", serif; - letter-spacing: .5px; } - -.catalogue-title { - color: #353535; - display: block; - font-family: "Helvetica Neue", "Segoe UI", Helvetica, Arial, sans-serif; - font-size: 2rem; - font-weight: 700; - margin: .5rem 0; } - -.catalogue-line { - -webkit-transition: all 0.3s ease-out; - -moz-transition: all 0.3s ease-out; - transition: all 0.3s ease-out; - border-top: 0.2rem solid #353535; - display: block; - width: 2rem; } - -/*# sourceMappingURL=style.css.map */ \ No newline at end of file diff --git a/src/themes/tale/resources/_gen/assets/scss/scss/tale.scss_5ad6f408b0e3e473c748aac88af0ea18.json b/src/themes/tale/resources/_gen/assets/scss/scss/tale.scss_5ad6f408b0e3e473c748aac88af0ea18.json deleted file mode 100644 index 28c014b..0000000 --- a/src/themes/tale/resources/_gen/assets/scss/scss/tale.scss_5ad6f408b0e3e473c748aac88af0ea18.json +++ /dev/null @@ -1 +0,0 @@ -{"Target":"css/style.css","MediaType":"text/css","Data":{}} \ No newline at end of file diff --git a/src/themes/tale/static/css/fonts.css b/src/themes/tale/static/css/fonts.css deleted file mode 100644 index 141d32a..0000000 --- a/src/themes/tale/static/css/fonts.css +++ /dev/null @@ -1,41 +0,0 @@ -/* libre-baskerville-regular - latin */ -@font-face { - font-family: 'Libre Baskerville'; - font-style: normal; - font-weight: 400; - src: url('../fonts/libre-baskerville-v7-latin-regular.eot'); /* IE9 Compat Modes */ - src: local('Libre Baskerville'), local('LibreBaskerville-Regular'), - url('../fonts/libre-baskerville-v7-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ - url('../fonts/libre-baskerville-v7-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ - url('../fonts/libre-baskerville-v7-latin-regular.woff') format('woff'), /* Modern Browsers */ - url('../fonts/libre-baskerville-v7-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ - url('../fonts/libre-baskerville-v7-latin-regular.svg#LibreBaskerville') format('svg'); /* Legacy iOS */ -} - -/* libre-baskerville-700 - latin */ -@font-face { - font-family: 'Libre Baskerville'; - font-style: normal; - font-weight: 700; - src: url('../fonts/libre-baskerville-v7-latin-700.eot'); /* IE9 Compat Modes */ - src: local('Libre Baskerville Bold'), local('LibreBaskerville-Bold'), - url('../fonts/libre-baskerville-v7-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ - url('../fonts/libre-baskerville-v7-latin-700.woff2') format('woff2'), /* Super Modern Browsers */ - url('../fonts/libre-baskerville-v7-latin-700.woff') format('woff'), /* Modern Browsers */ - url('../fonts/libre-baskerville-v7-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */ - url('../fonts/libre-baskerville-v7-latin-700.svg#LibreBaskerville') format('svg'); /* Legacy iOS */ -} - -/* libre-baskerville-italic - latin */ -@font-face { - font-family: 'Libre Baskerville'; - font-style: italic; - font-weight: 400; - src: url('../fonts/libre-baskerville-v7-latin-italic.eot'); /* IE9 Compat Modes */ - src: local('Libre Baskerville Italic'), local('LibreBaskerville-Italic'), - url('../fonts/libre-baskerville-v7-latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ - url('../fonts/libre-baskerville-v7-latin-italic.woff2') format('woff2'), /* Super Modern Browsers */ - url('../fonts/libre-baskerville-v7-latin-italic.woff') format('woff'), /* Modern Browsers */ - url('../fonts/libre-baskerville-v7-latin-italic.ttf') format('truetype'), /* Safari, Android, iOS */ - url('../fonts/libre-baskerville-v7-latin-italic.svg#LibreBaskerville') format('svg'); /* Legacy iOS */ -} diff --git a/src/themes/tale/static/fonts/libre-baskerville-v7-latin-700.eot b/src/themes/tale/static/fonts/libre-baskerville-v7-latin-700.eot deleted file mode 100644 index b99bedc..0000000 Binary files a/src/themes/tale/static/fonts/libre-baskerville-v7-latin-700.eot and /dev/null differ diff --git a/src/themes/tale/static/fonts/libre-baskerville-v7-latin-700.svg b/src/themes/tale/static/fonts/libre-baskerville-v7-latin-700.svg deleted file mode 100644 index 2ebde49..0000000 --- a/src/themes/tale/static/fonts/libre-baskerville-v7-latin-700.svg +++ /dev/null @@ -1,443 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/themes/tale/static/fonts/libre-baskerville-v7-latin-700.ttf b/src/themes/tale/static/fonts/libre-baskerville-v7-latin-700.ttf deleted file mode 100644 index 20c6897..0000000 Binary files a/src/themes/tale/static/fonts/libre-baskerville-v7-latin-700.ttf and /dev/null differ diff --git a/src/themes/tale/static/fonts/libre-baskerville-v7-latin-700.woff b/src/themes/tale/static/fonts/libre-baskerville-v7-latin-700.woff deleted file mode 100644 index 11e39d5..0000000 Binary files a/src/themes/tale/static/fonts/libre-baskerville-v7-latin-700.woff and /dev/null differ diff --git a/src/themes/tale/static/fonts/libre-baskerville-v7-latin-700.woff2 b/src/themes/tale/static/fonts/libre-baskerville-v7-latin-700.woff2 deleted file mode 100644 index bcaee8b..0000000 Binary files a/src/themes/tale/static/fonts/libre-baskerville-v7-latin-700.woff2 and /dev/null differ diff --git a/src/themes/tale/static/fonts/libre-baskerville-v7-latin-italic.eot b/src/themes/tale/static/fonts/libre-baskerville-v7-latin-italic.eot deleted file mode 100644 index 36fb1b0..0000000 Binary files a/src/themes/tale/static/fonts/libre-baskerville-v7-latin-italic.eot and /dev/null differ diff --git a/src/themes/tale/static/fonts/libre-baskerville-v7-latin-italic.svg b/src/themes/tale/static/fonts/libre-baskerville-v7-latin-italic.svg deleted file mode 100644 index 638670c..0000000 --- a/src/themes/tale/static/fonts/libre-baskerville-v7-latin-italic.svg +++ /dev/null @@ -1,482 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/themes/tale/static/fonts/libre-baskerville-v7-latin-italic.ttf b/src/themes/tale/static/fonts/libre-baskerville-v7-latin-italic.ttf deleted file mode 100644 index 64778f3..0000000 Binary files a/src/themes/tale/static/fonts/libre-baskerville-v7-latin-italic.ttf and /dev/null differ diff --git a/src/themes/tale/static/fonts/libre-baskerville-v7-latin-italic.woff b/src/themes/tale/static/fonts/libre-baskerville-v7-latin-italic.woff deleted file mode 100644 index 98aa98a..0000000 Binary files a/src/themes/tale/static/fonts/libre-baskerville-v7-latin-italic.woff and /dev/null differ diff --git a/src/themes/tale/static/fonts/libre-baskerville-v7-latin-italic.woff2 b/src/themes/tale/static/fonts/libre-baskerville-v7-latin-italic.woff2 deleted file mode 100644 index 9881894..0000000 Binary files a/src/themes/tale/static/fonts/libre-baskerville-v7-latin-italic.woff2 and /dev/null differ diff --git a/src/themes/tale/static/fonts/libre-baskerville-v7-latin-regular.eot b/src/themes/tale/static/fonts/libre-baskerville-v7-latin-regular.eot deleted file mode 100644 index 9cf3f9a..0000000 Binary files a/src/themes/tale/static/fonts/libre-baskerville-v7-latin-regular.eot and /dev/null differ diff --git a/src/themes/tale/static/fonts/libre-baskerville-v7-latin-regular.svg b/src/themes/tale/static/fonts/libre-baskerville-v7-latin-regular.svg deleted file mode 100644 index 5e483f2..0000000 --- a/src/themes/tale/static/fonts/libre-baskerville-v7-latin-regular.svg +++ /dev/null @@ -1,450 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/themes/tale/static/fonts/libre-baskerville-v7-latin-regular.ttf b/src/themes/tale/static/fonts/libre-baskerville-v7-latin-regular.ttf deleted file mode 100644 index 71223c6..0000000 Binary files a/src/themes/tale/static/fonts/libre-baskerville-v7-latin-regular.ttf and /dev/null differ diff --git a/src/themes/tale/static/fonts/libre-baskerville-v7-latin-regular.woff b/src/themes/tale/static/fonts/libre-baskerville-v7-latin-regular.woff deleted file mode 100644 index e31c31a..0000000 Binary files a/src/themes/tale/static/fonts/libre-baskerville-v7-latin-regular.woff and /dev/null differ diff --git a/src/themes/tale/static/fonts/libre-baskerville-v7-latin-regular.woff2 b/src/themes/tale/static/fonts/libre-baskerville-v7-latin-regular.woff2 deleted file mode 100644 index 4606355..0000000 Binary files a/src/themes/tale/static/fonts/libre-baskerville-v7-latin-regular.woff2 and /dev/null differ diff --git a/src/themes/tale/static/images/apple-touch-icon.png b/src/themes/tale/static/images/apple-touch-icon.png deleted file mode 100644 index f4a8c65..0000000 Binary files a/src/themes/tale/static/images/apple-touch-icon.png and /dev/null differ diff --git a/src/themes/tale/static/images/favicon-16x16.png b/src/themes/tale/static/images/favicon-16x16.png deleted file mode 100644 index cfc9142..0000000 Binary files a/src/themes/tale/static/images/favicon-16x16.png and /dev/null differ diff --git a/src/themes/tale/static/images/favicon-32x32.png b/src/themes/tale/static/images/favicon-32x32.png deleted file mode 100644 index 21634dd..0000000 Binary files a/src/themes/tale/static/images/favicon-32x32.png and /dev/null differ diff --git a/src/themes/tale/theme.toml b/src/themes/tale/theme.toml deleted file mode 100644 index 5e56938..0000000 --- a/src/themes/tale/theme.toml +++ /dev/null @@ -1,21 +0,0 @@ -# theme.toml template for a Hugo theme -# See https://github.com/gohugoio/hugoThemes#themetoml for an example - -name = "Tale" -license = "MIT" -licenselink = "https://github.com/EmielH/tale-hugo/blob/master/LICENSE" -description = "A port of the Tale theme for Hugo. Tale is a minimal Jekyll theme curated for storytellers." -homepage = "https://github.com/EmielH/tale-hugo" -tags = ["minimal", "clean", "responsive", "simple", "personal", "blog", "starter", "light", "typography"] -features = ["pagination"] -min_version = "0.50" - -[author] - name = "Emiel Hollander" - homepage = "https://www.emielhollander.nl" - -# If porting an existing theme -[original] - name = "Chester How" - homepage = "https://github.com/chesterhow/tale" - repo = "https://github.com/chesterhow/tale"