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

github.com/themefisher/airspace-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-02-07modified baseURL && updated internal page linksSojon
2021-12-30correct formulationVladimir Glusic
2021-12-30Fix DE translationsVladimir Glusic
2021-11-23fix .htaccesssomratpro
2021-10-31feat: add recatptcha v3 to paramsFrederic Leger
2021-10-11language duplication fix && overlay color updatedSojon
2021-10-03layout re-organized, speed optimized, added fontawesome icons and some minor ↵Sojon
update added
2021-09-20modified gitignoresomratpro
2021-09-06added netlify.toml, updated theme.toml, license, and README.md fileshampaakter
2021-08-16Fix Italian sub-menuSalim B
This fixes #192
2021-08-14Merge pull request #187 from salim-b/add-default-tzSomrat Sorkar
Set default `timeZone`
2021-08-04Remove surplus blank lineSalim B
2021-08-04Set default `timeZone`Salim B
cf. https://gohugo.io/getting-started/configuration/#timezone
2021-08-04Replace custom solution to localize timestamps with Hugo's official oneSalim B
The latter was introduced in [Hugo 0.87.0](https://github.com/gohugoio/hugo/releases/tag/v0.87.0).
2021-07-20Merge pull request #183 from salim-b/move-menuMehedi Sharif Titas
Move footer menu definitions to content files
2021-07-19added favicon and hugo version on config filev1.0.0somratpro
2021-07-06Move footer menu definitions to content filesSalim B
This simplifies menu adjustments since the content and its menu entries are now all found in the same place. E.g. you can now simply set `draft = true` in a specific content file and all its menu entries will automatically be disabled (i.e. have draft status), too. Cf. #149
2021-06-02Add support for multi-category projectsSalim B
Before this, only a single front-matter `category` was supported. Now both single values as well as arrays are supported.
2021-05-19I18N: translated navigation menu to GermanAlexander Willner
2021-05-13Add terminating newline to all text filesSalim B
making them [POSIX-compliant](https://stackoverflow.com/questions/729692/why-should-text-files-end-with-a-newline); this is necessary to make Unix tools like `cat` properly recognize the files as actual text files
2021-05-10Increase Hugo version for ForestrySalim B
Fixes #155
2021-05-04Properly align blog title post titles and sidebar widgetSalim B
Plus - only include comments `<div>` when Disqus is actually enabled. - cometic changes
2021-05-03Merge branch 'master' into highlight-navSomrat Sorkar
2021-05-03Merge branch 'master' into highlight-navbarSomrat Sorkar
2021-05-02Optimize responsive CSS layoutSalim B
2021-05-02Add navigation highlighting in top navbarSalim B
2021-05-02Add taxonomy page highlighting in nav widgetsSalim B
2021-04-23Improve font sizes on small screen sizesSalim B
2021-04-22modify meta dataSomrat Sorkar
2021-04-21Merge pull request #136 from salim-b/custom-scssSomrat Sorkar
Provide dedicated files for custom SCSS and JS
2021-04-20Add support for counter.dev analyticsSalim B
counter.dev offers a [privacy-friendly](https://counter.dev/privacy.html) and leightweight alternative to Google Analytics that probably satisfies most basic needs. AFAIC it doesn't need any kind of privacy notice / cookie banner in EU (GDPR) since it doesn't collect any personal data from website visitors and doesn't rely on cookies at all.
2021-04-20Provide dedicated file for custom JSSalim B
2021-04-20Provide dedicated file for custom SCSSSalim B
2021-04-10Add form submission success page, improve 404 page and moreSalim B
- Add custom form success page (only works with [Netlify Forms](https://docs.netlify.com/forms/setup/#success-messages) out-of-the-box; Formspree doesn't support this anymore in the free tier, but paying customers can [manually set the URL (`/message_sent.html`) in the Formspree UI](https://help.formspree.io/hc/en-us/articles/360012378333--Thank-You-redirect)) Predefined image [is public domain](https://pixabay.com/illustrations/graphic-plane-plane-paper-symbol-1552354/) - Enable `params.contact.form.use_netlify` by default since Netlify Forms offers the superior free tier than Formspree.io - Change Bootstrap's default navbar collapse breakpoint of 768px to 992px (=desktop) since the default menu has too many items to fit on one line between desktop and tablet width Style source: https://silvawebdesigns.com/how-to-change-the-bootstrap-navbar-breakpoint/ - Fix wrong `media-query` order in `_404.scss` - Fix 404 (and other custom) page height to be truly 100% viewport height: - Ensure header `min-height` of 90/100px (dependent on screen width) - Ensure footer `min-height` of 205px and center text vertically - Assign page `min-height` of `calc(100vh - ([header-height] + [footer-height]))` - Remove duplicated copyright line on 404 page - Move `static/images/marker.png` from `exampleSite` to theme since users most likely won't replace it with custom image - Fix typo in in CSS class `.footer-manu` -> `.footer-menu` and update all references - Lint some SCSS files - Update precompiled SCSS files under `exampleSite/resources/_gen/`
2021-04-08Improve contact page:Salim B
- Assign e-mail field the proper [`type="email"`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/email); allows clients to automatically validate the input to ensure that it's either empty or a properly-formatted e-mail address - Add [`autocomplete="email"`](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete) to e-mail field; allows clients to properly autocomplete the field (e-mail addresses only) - Use `name="email"` for e-mail field which enables Netlify Forms to automatically add the right `Reply-To:` header in e-mail notifications - Use `name="subject"` for subject field which enables Netlify Forms to use the submitted value of this field as subject in e-mail notifications - Add labels for all relevant fields (allows Netlify Forms to pick these up when sending e-mail notifications with form submissions) - Allow Markdown in contact 'location' address - Properly align all address components with icons; disable `address_descriptors` by default (looks better) - Cloak contact e-mail address and make it clickable (`mailto:` link) using JS; the procedure is largely borrowed from https://github.com/martignoni/hugo-cloak-email/blob/master/layouts/shortcodes/cloakemail.html
2021-04-06Add Italian, translate dates and more:Salim B
- Add Italian translation. - Translate "Pretty-formatted" dates: Since Hugo's date formatting functions do not support i18n yet (and will likely stay unsupported for some time), add a custom clean-as-possible workaround leveraging i18n keys for each month, a custom partial `layout/partials/date_i18n.html` and an optional shortcode `layout/shortcodes/date_i18n.html`. These can be easily replaced once Hugo supports more sophisticated locale-aware i18n. - Convert i18n files from YAML to TOML since the latter format supports comments - Fix typo in filename `exampleSite/static/images/featue-bg.jpg` -> `exampleSite/static/images/feature-bg.jpg` and update all references.
2021-04-01Merge branch 'master' into fix-copyrightSalim B
2021-04-01replace address with ToC on FAQ pageSalim B
2021-04-01Merge pull request #119 from salim-b/simplify-multiauthorSomrat Sorkar
Simplify multi-author support
2021-04-01fix last modification date in FAQSalim B
`.Lastmod` automatically is complemented by `date` and `publishDate`, cf. https://gohugo.io/getting-started/configuration/#configure-dates
2021-04-01cosmetic changeSalim B
2021-04-01make address elements optionalSalim B
2021-04-01clean/tidy `config.toml`:Salim B
- reorganize keys - improve comments
2021-04-01improve OpenGraph / Twitter Card metadata:Salim B
- add `params.title` to `config.toml` in order to enable [`og:site_name` tags](https://ogp.me/#optional) - add `params.images` to `config.toml` in order to enable fallback for [`og:image` tags](https://ogp.me/#metadata)
2021-04-01fix Google Analytics config key nameSalim B
cf. https://gohugo.io/templates/internal#google-analytics
2021-04-01improve contact page:Salim B
- translate placeholders - allow to disable contact form via `config.toml` - add support for [Netlify Forms](https://docs.netlify.com/forms/setup/) as contact form provider (incl. a [honey pot field](https://docs.netlify.com/forms/spam-filters/#honeypot-field)) - make all contact form fields mandatory by adding the [`required` attribute](https://developer.mozilla.org/docs/Web/HTML/Attributes/required) - opt-in support for omission of address descriptors (icons should already be self-explanatory) via `config.toml`
2021-04-01improve i18n:Salim B
- add German translation, improve French translation, tweak English translation - move translation (`i18n` folder) from `/exampleSite` to theme root; this is cleaner; theme users can still override translation keys individually of course - order i18n keys alphabetically
2021-03-31remove unused i18n keysSalim B
2021-03-30translate 404 pageSalim B
and - fix language drop-down on 404 page - fix copyright in 404 footer - order i18n keys alphabetically
2021-03-29simplify multi-author support:Salim B
with these changes, the config option `multi_author` is not needed anymore since both atomic strings as well as string arrays are supported in the `author` frontmatter param