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

github.com/pacollins/hugo-future-imperfect-slim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-12-03Use Hugo instead of JS to determine if message should be displayedpatch-theme-messagePatrick Collins
2020-12-03Patch plural i18n errorsPatrick Collins
2020-12-03Remove Instagram Shortcode Posts (Closes #205)Patrick Collins
2020-11-04Fix the Japanese translation of "About" (#204)yyh-gl
"約" → "本サイトについて"
2020-10-31Add theme-level OpenGraph tags (#179)Patrick Collins
* Theme-level SEO * Use .Params.images unless .Params.openGraph is set * add opengraph description tag and image fallback (#180) * add opengraph description tag and image fallback * clean up meta description logic * fix quotes Co-authored-by: Ryan TG <RyanTG@users.noreply.github.com> Co-authored-by: Patrick Collins <patrick@pacollins.com>
2020-10-31fix quotesfix-seoPatrick Collins
2020-10-28add www subdomain to some of the social links to prevent redirects and blc ↵Ingo Richter
complain about them (#198)
2020-10-28Remove double slash before .Params.emailService (#201)Vincent Tam
2020-10-18Adjust theme.toml licensePatrick Collins
2020-09-14Update site-sidebar.html (fix for translation of categories, issue #184) (#192)Christian Humm
* Update site-sidebar.html This should fix issue #184 by counting the number of categories so hugo (or more precise go-i18n) can decide to use the singular or the plural translation. * Update site-sidebar.html Shorter version of the fix.
2020-09-04Update de.toml (#191)Christian Humm
Improved german grammar
2020-09-04Enabled rss in example config (#194)th1l6f
2020-08-25Update de.toml (#190)Christian Humm
Fixed typo and better grammar
2020-08-18Load index.json based on page lang (#188)Patrick Collins
2020-08-16Create ko.toml (#187)DuiNaru
2020-08-13Changed learn_more translation to PL (#183)Piotr Wachulec
'Dowiedz się więcej' is a better translation for 'Learn more' in this context
2020-08-09Patch image width and blur for transparency (#182)Patrick Collins
* Patch image width and blur for transparency * Add site default param * Add to archetype * Update exampleSite default resource
2020-08-09add opengraph description tag and image fallback (#180)Ryan TG
* add opengraph description tag and image fallback * clean up meta description logic
2020-08-08Use .Params.images unless .Params.openGraph is setpacollins
2020-08-04New boolean param for user to choose to hide empty stats (#176)Ryan TG
* new boolean param for user to choose to hide empty stats * refactor logic; address comments * remove unnecessary isset from stats * clean the stats ranges a little
2020-08-02Theme-level SEOpacollins
2020-07-25Add netlify reCAPTCHA support (#173)Patrick Collins
2020-07-25Added support for Dutch language (#170)Kees de Bruin
* Added support for Dutch language * Use i18n translations for previous/next * Fixed some typos * Split date content view in multiple files
2020-07-25Fix Staticman Comments (#169)Ryan TG
* flex wrap on comment paragraphs * nest comment div within comment header * unnest .comment-author-container * fix class name of reply close button
2020-07-19Fix nav link hover desktoppacollins
2020-07-19Update screenshot and tnpacollins
2020-07-19Reduce Theme Specificity (#154)Patrick Collins
* Reduce highlight.js clutter * Lower theme templates in Hugo lookup order * Reduce specificity in config head scripts * Reduce specificity in i18n * Reduce specificity in staticman * Update featured image * Change exampleSite images to known royalty-free images * Enable inline css (fix #151) * Reduce CSS specificity and adjust styling * Add background for backwards compatibility * Add sitewide default value imageStretch * Bug: Fix small image centered * Add Indonesian language (#157) * add Indonesian language * I was update id.toml based PR (#154) new format I was update id.toml based PR (#154) new format on https://github.com/pacollins/hugo-future-imperfect-slim/blob/reduce-specificity/i18n/en.toml * Update theme notification message. * Add cover to featured image (@kdbruin) * Match pagination of single to list * Fix mobile menu border * Fix console error * Fix example site Co-authored-by: ipang dwi <admin@firstplato.com>
2020-07-09Fix invalid hyperlinks in term list pages for non-default languages (#158)Xin Li
* fix the problem of url such as en/en and ja/ja * add google adsense * update the theme notification for seo * update the pagination * update the pagination * update layout for recent posts * update the layout for content list * update the layout for i18n * update css * update the stats for the visibility of tags and categories * add support for table of contents * fix the problem for the visibility of tags and categories by css * change nav template to simplify config.toml * remove the diy part for personal website * remove the diy part for personal website * remove the diy part for personal website * Restore to the same as the original repository * Restore to the same as the original repository * Fix invalid hyperlinks in term list pages for non-default languages
2020-06-11Update documentation to reflect wikipacollins
2020-06-04Fix terms URL (#146)Patrick Collins
2020-06-04Patch index.json pathpacollins
2020-06-04Add search (#143)Patrick Collins
* Add lunr.js * Style search (desktop) * Adjust scripts for templating * Adjust styling * Adjust scripts * Fix layout for search index * Update example site * Update theme notification * Tweak results page styling * Fix post pages * Update theme.toml * Update screenshots
2020-05-22Revert a7ba597pacollins
2020-05-22Remove duplicate variable social.strava (#142)Rob Nugen
After copying the sample config.toml to a new site, I get error Key 'social.strava' has already been defined. Removing this line fixes the error.
2020-05-21Fix img src for theme demopacollins
2020-05-21Add localStorage to dismiss theme message each updatepacollins
2020-05-20Update example sitepacollins
2020-05-19Support RTL lettering (#126)Patrick Collins
2020-05-19Add Strava #139 (#140)Patrick Collins
2020-05-18Fix Home Pagination (Closes #131)pacollins
2020-05-18Update Librariespacollins
2020-05-18Add theme change notification box (#115)Patrick Collins
* Add theme change notification box * Change notification to only home
2020-04-28Update pluralisation for more than 1 minute read (#136)JK Gunnink
There's no need to pluralise minutes when showing how many minutes reading time an article is. It should display: "12 minute read" instead of "12 minutes read"
2020-03-31Patch content types error (#130)pacollins
2020-03-28Patch syntax error (#129)pacollins
2020-03-24Add email translation (#127)Patrick Collins
2020-03-23Address edge cases around multiple content types (#122)Matthew Johnson
* Update taxonomy to support multiple content types Hugo allows multiple content types to specify tags and categories. List all pages in the defined "mainSections" variable that match a given category or tag in the appropriate taxonomies. show all types of tagged content in the taxonomy * Promote list layouts from post to default Since the theme is list centric, other types of content will need list entries to be rendered correctly. The _default/list.html template refers to the content-list template, which previously was only defined for posts. Any new content types a user adds would not show up in lists (i.e. on the main page!) which is especially confusing for people new to hugo. This commit promotes the `content-list.html` template up from posts to the _defaults category, along with the `featured.html` and `stats.html` templates that it refers to. This allows other content types (like blog) which are in the mainSections config parameter to render their previews correctly. * Separate homepage template from section lists The homepage should display all content types in mainSections, but individual sections should probably only display the pages corresponding to their section. This corresponds to the use case and confusion reported by @giom-mallet in #119. This commit creates a separate homepage layout and modifies the list layout to only display pages in a particular section. The homepage and the list template share a lot of duplicated code percentage wise, but it's only 20 lines so I was not sure if it would be worth it to add another layer of templating and abstraction to remove this duplication since most of the list template is already broken into partials. * Make default layouts fully featured Previously the default page layouts were not fully featured like the post type. Notably, they lacked comments, pagination support, social media sharing buttons, and a featured image. This commit makes default content types include all of these features that were previously restricted to posts only. It achieves this goal by moving most post functionality to the _default content type, allowing post to just be another _default. * Remove explicit page types from examples and archetypes With post formatting now the default type, we no longer need to expicitly specify type=post in the front matter of the content files even for non-post sections of the site. * Clarify the role of the mainSections parameter This commit adds a clarifying comment to the example config.toml and removes the non-existant "post" section from the mainSections parameter for clarity.
2020-03-13Move files to proper directory (#123)Patrick Collins
2020-03-13Allow and configure hiding the intro on mobile pages (#108)Matthew Johnson
* Allow and configure hiding the intro on mobile pages The intro section can be quite long, especially when a picture is enabled. By default the intro appears on the left on computer screen sizes, but above the content on mobile devices. This commit adds configuration parameters, css, and template logic to hide the intro on mobile devices, and configure if it is always hidden, or just on content pages that are not the homepage. * Disable intro hiding by default This commit sets the example site into hiding parameters to False to better track the exisiting theme behavior for backwards compatibility. If these parameters are not included in a site config, the intro will also not be hidden, maintaining existing behavior. * Rename "on mobile" to "single column" When referring to intro hiding, the intended behavior is to hide the intro on all single column layouts, not just ones "on mobile." Notably the `for-laptup-up` media type used the single column layout, but the name and intention is for "non-mobile" devices. To more clearly communicate intent this commit renames hideOnMobile to hideWhenSingleColumn and changes the relevant references from mobile hiding to single column hiding.
2020-02-29Remove CDN to match Theme Submission Guidelines (#66)Patrick Collins
* Update Example Site * Create local files and option to enable CDN * Move from static to assets * css to hugo pipes * js to hugo pipes * Create local FontAwesome files * Create local Academicons files * Create local JQuery files * Create local Highlight.js files * Create local Fancybox files * Update pipes and src * Added Staticman JS & updated resources * Fixed 404 errors * Updated template to load HLJS CSS * Added empty add-on.css and add-on.js files and extended the documentation to explain their purpose. * Removed references to add-on.* * Use JSON for resource loop * Update example site Co-authored-by: Vincent Tam <VincentTam@users.noreply.github.com> Co-authored-by: twatzl <twatzl@gmx.at>