6.8 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	date: 2017-07-07 title: 0.25
Hugo `0.25` is the **Kinder Surprise**: It automatically opens the page you're working on in the browser, it adds full `AND` and `OR` support in page queries, and you can now have templates per language.
If you start with hugo server --navigateToChanged, Hugo will navigate to the relevant page on save (see animated GIF). This is extremely useful for site-wide edits. Another very useful feature in this version is the added support for AND (intersect)  and OR (union)  filters when combined with where.
Example:
{{ $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 now has:
- 18209+ stars
- 455+ contributors
- 168+ themes
Enhancements
Templates
- Add Pagessupport tointersect(AND) andunion(ÒR). 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
Other
- 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
