Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/EmielH/tale-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-05-05Add dark modeHEADmasterlberki
Add dark mode See #65
2022-05-05Add table of contentslberki
Add table of contents See #64
2022-03-27Fix favicon.ico linkslberki
Unlike the other links to favicon, this one was not passed through relURL. Co-authored-by: Lukacs T. Berki <blog@lberki.net>
2021-12-04Add archive page supportisaced
See #60
2021-08-23Change summary titles on homepage to h2Gavin Rehkemper
See #52 See #54
2021-08-23Change site title to h1 on homepageGavin Rehkemper
See #52 See #53
2021-08-16Add default favicon locationLena Fuhrimann
See #51
2021-03-10Add support for Google Analyticsv2.2.0Gabriel Koch
2020-09-28Add Disqus-integrationv2.1.0Haohan Yang
Fixes #38
2020-08-20Use .Site.Author.name in post infoEmiel Hollander
The footer already used .Site.Author.name instead of .Site.Params.Author and now post info uses this variable as well. You can now safely delete .Site.Params.Author from your configuration. See #36
2019-10-09Add dynamic header menu using Hugo Menu'sGavin Rehkemper
Added dynamic header menu, Hugo-style Template from https://gohugo.io/templates/menu-templates Removed unused i18n See #29
2019-10-06Add local font files instead of using Google CDNdadosch
See #30
2019-09-30Range over .Site.RegularPages in index.htmlEmiel Hollander
See #28
2019-08-03Delete space in title tag (#24)Hikaru Miyahara
2019-07-27Parse Markdown in summary in page frontmatterEmiel Hollander
It was impossible to use Markdown in the summary variable in the page frontmatter. Markdown inside this variable is now parsed. See #23
2019-04-14Remove deprecated .RSSLinkEmiel Hollander
Use .OutputFormats.Get "RSS" instead.
2019-04-14Remove deprecated .Page.URLEmiel Hollander
Replaced with .RelPermalink where applicable. Checking if a page is the home page can be done using .IsHome instead.
2019-03-03Add option to include additional CSS filesv1.1.0Emiel Hollander
Put additional CSS files in the static folder of your site and add the filenames to config.toml in the css parameter. See #13
2018-12-03Use relURL function to generate favicon URLsEmiel Hollander
See #10
2018-11-04Remove deprecated .Next and .Prev callsEmiel Hollander
Page's .Next and .Prev are deprecated and will be removed in a future release. Replaced these with .NextPage and .PrevPage. Also removed the links to the previous and next page from the about template. This assumes there is only ever one about page.
2018-10-28Use .Site.Author.name in footer instead of .Site.Params.AuthorEmiel Hollander
Hugo provides an Author site variable that can be set in the site configuration. Instead of setting the author variable in the params, section from this commit on, you have to use the name variable in the Author section. This adheres more to Hugo standards. See README.MD for an example.
2018-10-21Remove duplicate closing tags from footerEmiel Hollander
2018-10-21Add partial for introduction on index pageEmiel Hollander
2018-10-21Extract summary from list templates into its own layout fileEmiel Hollander
Extract the summary into its own layout file and use the .Render function to include the summary, which is the same for all list templates.
2018-10-20Use relURL function to generate URLsEmiel Hollander
2018-10-20Merge branch 'master' of https://github.com/EmielH/tale-hugoEmiel Hollander
2018-10-20Fix broken about pageEmiel Hollander
2018-10-18Remove extraneous slash from header partialDavid Zukowski
When using a baseURL such as "/", the extra slash in this partial leads to an invalid href of "//".
2018-10-16Add partials for single post header and footerEmiel Hollander
2018-10-16Fix duplicate headerEmiel Hollander
Partial head.html was included in baseof.html, but also in header.html, causing the body to contain html and head tags.
2018-10-15Add basic support for taxonomiesEmiel Hollander
2018-10-15Split single post header partial for more flexibilityEmiel Hollander
2018-10-14Split some templates into partialsEmiel Hollander
This makes it easier to change or override parts of the theme on your site without losing updates to the theme.
2018-10-07Add manually setting the summary in page frontmatterEmiel Hollander
2018-10-07Add localisation option for publishdateEmiel Hollander
2018-09-30Add i18n capabilitiesEmiel Hollander
2018-09-19Fix reading language from config and include default language codeEmiel Hollander
.Site.Language is actually an object used for multilingual websites. The correct one to use is .Site.LanguageCode. See https://gohugo.io/variables/site/#site-variables-list Also included a default language code, and fixed an HTML syntax error.
2018-09-16Change hardcoded language tag to be read from config filePablo Lorenzo
2018-08-25Tidy up HTML outputEmiel Hollander
2018-08-25Improve SCSS processingEmiel Hollander
2018-08-25Iterate over all pages instead of only pages of type postEmiel Hollander
Resolves #1
2018-08-25Add layout for about pageEmiel Hollander
Resolves #1
2018-08-05Update footer link to correct repo for HugoEmiel Hollander
2018-07-31Use relative permalink for the CSS styles, so the theme works on the Hugo ↵Emiel Hollander
Themes site. See https://github.com/gohugoio/hugoThemes/issues/395
2018-07-28Initial commitEmiel Hollander