Release Juillet
Hugo 0.25 est la Suprise Kinder : Elle ouvre automatiquement la page sur laquelle vous êtes en train de travailler dans le navigateur, elle ajoute une preise en charge complète du AND et OR dans les requêtes de page, et vous pouvez maintenant avoir des modèles par langage.

Si vous travaillez avec hugo server --navigateToChanged, Hugo naviguera vers vers la page pertinente lors de la sauvegarde (voir le GIF animé). Ceci s’avère extrêmement utile pour des éditions sur l’ensemble du site. Une autre fonctionnalité très utile dans cette version est la prise en charge ajoutée des filtres AND (intersect) et OR (union) quand ils sont combinés avec where.
Exemple :
{{ $pages := where .Site.RegularPages "Type" "not in" (slice "page" "about") }}
{{ $pages := $pages | union (where .Site.RegularPages "Params.pinned" true) }}
{{ $pages := $pages | intersect (where .Site.RegularPages "Params.images" "!=" nil) }}
The above fetches regular pages not of page or about type unless they are pinned. And finally, we exclude all pages with no images set in Page params.
This release represents 36 contributions by 12 contributors to the main Hugo code base. @bep still leads the Hugo development with his witty Norwegian humor, and once again contributed a significant amount of additions. But also a big shoutout to @yihui, @anthonyfok, and @kropp for their ongoing contributions. And as always a big thanks to @digitalcraftsman for his relentless work on keeping the documentation and the themes site in pristine condition.
Hugo a maintenant :
- 18209+ stars
- 455+ contributors
- 168+ themes
Améliorations
Templates
- Add
Pagessupport tointersect(AND) andunion(OR). This makes thewheretemplate func even more powerful. ccdd08d5 @bep #3174 - Add
math.Logfunction. This is very handy for creating tag clouds. 34c56677 @artem-sidorenko - Add
WebPimages support 8431c8d3 @bep #3529 - Only show post's own keywords in schema.org da72805a @brunoamaral #2635#2646
- Simplify the
Disqustemplate a little bit (#3655) eccb0647 @yihui - Improve the built-in Disqus template (#3639) 2e1e4934 @yihui
Output
- Support templates per site/language. This is for both regular templates and shortcode templates. aa6b1b9b @bep #3360
Core
- Extend the sections API a1d260b4 @bep #3591
- Make
.Site.Sectionsreturn the top level sections dd9b1baa @bep #3591 - Render
404.htmlfor all languages 41805dca @mitchchn #3598
Autres
- Support human-readable
YAMLboolean values inundraft1039356e @kropp hugo import jekyllsupport nested_postsdirectories 7ee1f25e @coderzh #1890#1911- Update
Dockerfileand add Docker optimizations 118f8f7c @ellerbrock - Add Blackfriday
joinLinesextension support (#3574) a5440496 @choueric - add
--initial-header-level=2to rst2html (#3528) bfce30d8 @frankbraun - Support open “current content page” in browser c825a731 @bep #3643
- Make
--navigateToChangedmore robust on Windows 30e14cc3 @anthonyfok #3645 - Remove the docs submodule 31393f60 @bep #3647
- Use
example.comas homepage for new theme aff1ac32 @anthonyfok
Fixes
Modèles
Autres
Améliorez cette page