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-09-30Add Kurdish translationsRoj Serbest
See #56
2021-09-27Disable TravisCIEmiel Hollander
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
2021-01-30Add Polish language supportPaweł Miech
2020-10-25Add Italian languageGiampaolo Guiducci
See #40
2020-09-28Add Disqus-integrationv2.1.0Haohan Yang
Fixes #38
2020-08-20Update Hugo versions for testsEmiel Hollander
Tests will now only test the minimal required version for Tale and the newest version of Hugo.
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
2020-05-26Fix font urls for sites not published at rootEmiel Hollander
2020-04-13FIx broken linkEmiel Hollander
2020-02-12Add code block long lines wrapping (#31)Tomasz Wisniewski
* Add code block long lines wrapping This change is for the code block style - allowing to wrap long lines.
2019-10-27Update READMEEmiel Hollander
Move menu section to chapter on configuration
2019-10-09Remove unused i18n stringsv2.0.0Emiel Hollander
Since #29, these strings are no longer used.
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-30Update Hugo test versionsv1.1.3Emiel Hollander
2019-09-30Range over .Site.RegularPages in index.htmlEmiel Hollander
See #28
2019-08-03Update Hugo test versionsv1.1.2Emiel Hollander
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-06-18Add French translation (#20)robot275
2019-06-18Add French translation (#19)robot275
2019-04-14Add tests for Hugo 0.55.1v1.1.1Emiel Hollander
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-04-13Use Hugo Theme Test for testingEmiel Hollander
Use this instead of Hugo Basic Example, which is prone to changes that break tests.
2019-04-09Add tests for Hugo 0.55.0Emiel Hollander
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
2019-03-03Disable link checking in CI for nowEmiel Hollander
2019-03-03Include version of htmlproofer in CI logEmiel Hollander
2019-03-03Add background colorEmiel Hollander
See #14
2019-02-02Add tests for Hugo 0.54.0v1.0.0Emiel Hollander
2019-01-27Add generated uncompressed CSS for server mode in Hugo BasicEmiel Hollander
See #2
2019-01-05Add translation to Germanmplatten
2018-12-24Add testing for Hugo 0.53Emiel Hollander
2018-12-04Improve automated testsEmiel Hollander
- Cleanup .travis.yml - Test on multiple versions of Hugo - Make Travis CI also test branches - Add HTMLProofer to validate HTML
2018-12-03Use relURL function to generate favicon URLsEmiel Hollander
See #10
2018-11-29Fix index layout for short titles and summariesEmiel Hollander
Posts appeared next to each other instead of below each other when the title and summary were short enough. See #9
2018-11-28Bump Hugo version to 0.52Emiel Hollander
2018-11-28Add translation to Spanish (#8)Fernando G. Vilar
2018-11-15Add integration with Travis CIEmiel Hollander
2018-11-04Update min_version because of using .NextPage and .PrevPageEmiel Hollander
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.