diff options
author | jmmv <jmmv@pkgsrc.org> | 2019-01-02 19:59:32 +0000 |
---|---|---|
committer | jmmv <jmmv@pkgsrc.org> | 2019-01-02 19:59:32 +0000 |
commit | e013b539c550ac5c9ee7b6aca80f4e4a0a7c79cd (patch) | |
tree | 253a4786925dd56a15bebadae4f274d444722ede | |
parent | dc9d67b1f090b1c716fe1e55c07f20b378745cb3 (diff) | |
download | pkgsrc-e013b539c550ac5c9ee7b6aca80f4e4a0a7c79cd.tar.gz |
Update hugo to 0.53:
The main new features in this release are:
* You can now split your configuration into directories per environment.
Hugo did support multiple configuration files before this release, but
it was hard to manage for bigger sites, especially those with multiple
languages. With this we have also formalized the concept of an
environment; the defaults are production (when running hugo) or
development (when running hugo server) but you can create any
environment you like. We will update the documentation, but all the
details are in this issue. Also, see this PR for how the refactored
configuration for the Hugo website looks like.
* transform.Unmarshal (see
the documentation is a new and powerful template function that can
turn Resource objects or strings with JSON, TOML, YAML or CSV into
maps/arrays.
* Two new global variables in site and hugo. hugo gives you
version info etc. ({{ hugo.Version }}, {{ hugo.Environment }}), but
the site is probably more useful, as it allows you to access the
current site's variables (e.g. {{ site.RegularPages }}) without any
context (or ".").
This version is also the fastest to date. A site building benchmark
shows around 10% faster, but that depends on the site. The important
part here is that we're not getting slower. It's quite a challenge
to consistently add significant new functionality and simultaneously
improve performance. It's like not gaining weight during Christmas. We
also had a small performance boost in version 0.50. A user then reported
that his big and complicated site had a 30% reduction in build time.
This is important to us, one of the core features. It's in the slogan:
"The world's รข fastest framework for building websites."
-rw-r--r-- | www/hugo/Makefile | 5 | ||||
-rw-r--r-- | www/hugo/PLIST | 249 | ||||
-rw-r--r-- | www/hugo/distinfo | 10 |
3 files changed, 140 insertions, 124 deletions
diff --git a/www/hugo/Makefile b/www/hugo/Makefile index 10244c7dd21..733e9b4dd3a 100644 --- a/www/hugo/Makefile +++ b/www/hugo/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.9 2018/12/19 15:47:11 bsiegert Exp $ +# $NetBSD: Makefile,v 1.10 2019/01/02 19:59:32 jmmv Exp $ -DISTNAME= hugo-0.52 +DISTNAME= hugo-0.53 PKGNAME= go-${DISTNAME} -PKGREVISION= 1 MASTER_SITES= ${MASTER_SITE_GITHUB:=gohugoio/} CATEGORIES= www GITHUB_TAG= v${PKGVERSION_NOREV} diff --git a/www/hugo/PLIST b/www/hugo/PLIST index 4df7b1749f8..96a9a698098 100644 --- a/www/hugo/PLIST +++ b/www/hugo/PLIST @@ -1,13 +1,15 @@ -@comment $NetBSD: PLIST,v 1.3 2018/12/12 14:26:46 ryoon Exp $ +@comment $NetBSD: PLIST,v 1.4 2019/01/02 19:59:32 jmmv Exp $ bin/generate bin/hugo gopkg/pkg/${GO_PLATFORM}/github.com/gohugoio/hugo/bufferpool.a gopkg/pkg/${GO_PLATFORM}/github.com/gohugoio/hugo/cache.a gopkg/pkg/${GO_PLATFORM}/github.com/gohugoio/hugo/cache/filecache.a +gopkg/pkg/${GO_PLATFORM}/github.com/gohugoio/hugo/cache/namedmemcache.a gopkg/pkg/${GO_PLATFORM}/github.com/gohugoio/hugo/commands.a gopkg/pkg/${GO_PLATFORM}/github.com/gohugoio/hugo/common/collections.a gopkg/pkg/${GO_PLATFORM}/github.com/gohugoio/hugo/common/herrors.a gopkg/pkg/${GO_PLATFORM}/github.com/gohugoio/hugo/common/hugio.a +gopkg/pkg/${GO_PLATFORM}/github.com/gohugoio/hugo/common/hugo.a gopkg/pkg/${GO_PLATFORM}/github.com/gohugoio/hugo/common/loggers.a gopkg/pkg/${GO_PLATFORM}/github.com/gohugoio/hugo/common/maps.a gopkg/pkg/${GO_PLATFORM}/github.com/gohugoio/hugo/common/math.a @@ -23,6 +25,7 @@ gopkg/pkg/${GO_PLATFORM}/github.com/gohugoio/hugo/create.a gopkg/pkg/${GO_PLATFORM}/github.com/gohugoio/hugo/deps.a gopkg/pkg/${GO_PLATFORM}/github.com/gohugoio/hugo/docshelper.a gopkg/pkg/${GO_PLATFORM}/github.com/gohugoio/hugo/helpers.a +gopkg/pkg/${GO_PLATFORM}/github.com/gohugoio/hugo/htesting.a gopkg/pkg/${GO_PLATFORM}/github.com/gohugoio/hugo/hugofs.a gopkg/pkg/${GO_PLATFORM}/github.com/gohugoio/hugo/hugolib.a gopkg/pkg/${GO_PLATFORM}/github.com/gohugoio/hugo/hugolib/filesystems.a @@ -58,6 +61,7 @@ gopkg/pkg/${GO_PLATFORM}/github.com/gohugoio/hugo/tpl/crypto.a gopkg/pkg/${GO_PLATFORM}/github.com/gohugoio/hugo/tpl/data.a gopkg/pkg/${GO_PLATFORM}/github.com/gohugoio/hugo/tpl/encoding.a gopkg/pkg/${GO_PLATFORM}/github.com/gohugoio/hugo/tpl/fmt.a +gopkg/pkg/${GO_PLATFORM}/github.com/gohugoio/hugo/tpl/hugo.a gopkg/pkg/${GO_PLATFORM}/github.com/gohugoio/hugo/tpl/images.a gopkg/pkg/${GO_PLATFORM}/github.com/gohugoio/hugo/tpl/inflect.a gopkg/pkg/${GO_PLATFORM}/github.com/gohugoio/hugo/tpl/internal.a @@ -66,8 +70,10 @@ gopkg/pkg/${GO_PLATFORM}/github.com/gohugoio/hugo/tpl/math.a gopkg/pkg/${GO_PLATFORM}/github.com/gohugoio/hugo/tpl/os.a gopkg/pkg/${GO_PLATFORM}/github.com/gohugoio/hugo/tpl/partials.a gopkg/pkg/${GO_PLATFORM}/github.com/gohugoio/hugo/tpl/path.a +gopkg/pkg/${GO_PLATFORM}/github.com/gohugoio/hugo/tpl/reflect.a gopkg/pkg/${GO_PLATFORM}/github.com/gohugoio/hugo/tpl/resources.a gopkg/pkg/${GO_PLATFORM}/github.com/gohugoio/hugo/tpl/safe.a +gopkg/pkg/${GO_PLATFORM}/github.com/gohugoio/hugo/tpl/site.a gopkg/pkg/${GO_PLATFORM}/github.com/gohugoio/hugo/tpl/strings.a gopkg/pkg/${GO_PLATFORM}/github.com/gohugoio/hugo/tpl/templates.a gopkg/pkg/${GO_PLATFORM}/github.com/gohugoio/hugo/tpl/time.a @@ -95,9 +101,10 @@ gopkg/src/github.com/gohugoio/hugo/cache/filecache/filecache_config_test.go gopkg/src/github.com/gohugoio/hugo/cache/filecache/filecache_pruner.go gopkg/src/github.com/gohugoio/hugo/cache/filecache/filecache_pruner_test.go gopkg/src/github.com/gohugoio/hugo/cache/filecache/filecache_test.go +gopkg/src/github.com/gohugoio/hugo/cache/namedmemcache/named_cache.go +gopkg/src/github.com/gohugoio/hugo/cache/namedmemcache/named_cache_test.go gopkg/src/github.com/gohugoio/hugo/cache/partitioned_lazy_cache.go gopkg/src/github.com/gohugoio/hugo/cache/partitioned_lazy_cache_test.go -gopkg/src/github.com/gohugoio/hugo/commands/benchmark.go gopkg/src/github.com/gohugoio/hugo/commands/check.go gopkg/src/github.com/gohugoio/hugo/commands/check_darwin.go gopkg/src/github.com/gohugoio/hugo/commands/commandeer.go @@ -144,6 +151,14 @@ gopkg/src/github.com/gohugoio/hugo/common/herrors/file_error_test.go gopkg/src/github.com/gohugoio/hugo/common/herrors/line_number_extractors.go gopkg/src/github.com/gohugoio/hugo/common/hugio/readers.go gopkg/src/github.com/gohugoio/hugo/common/hugio/writers.go +gopkg/src/github.com/gohugoio/hugo/common/hugo/hugo.go +gopkg/src/github.com/gohugoio/hugo/common/hugo/hugo_test.go +gopkg/src/github.com/gohugoio/hugo/common/hugo/site.go +gopkg/src/github.com/gohugoio/hugo/common/hugo/vars_extended.go +gopkg/src/github.com/gohugoio/hugo/common/hugo/vars_regular.go +gopkg/src/github.com/gohugoio/hugo/common/hugo/version.go +gopkg/src/github.com/gohugoio/hugo/common/hugo/version_current.go +gopkg/src/github.com/gohugoio/hugo/common/hugo/version_test.go gopkg/src/github.com/gohugoio/hugo/common/loggers/loggers.go gopkg/src/github.com/gohugoio/hugo/common/loggers/loggers_test.go gopkg/src/github.com/gohugoio/hugo/common/maps/maps.go @@ -161,6 +176,7 @@ gopkg/src/github.com/gohugoio/hugo/common/types/types.go gopkg/src/github.com/gohugoio/hugo/common/types/types_test.go gopkg/src/github.com/gohugoio/hugo/common/urls/ref.go gopkg/src/github.com/gohugoio/hugo/compare/compare.go +gopkg/src/github.com/gohugoio/hugo/config/configLoader.go gopkg/src/github.com/gohugoio/hugo/config/configProvider.go gopkg/src/github.com/gohugoio/hugo/config/configProvider_test.go gopkg/src/github.com/gohugoio/hugo/config/privacy/privacyConfig.go @@ -171,6 +187,7 @@ gopkg/src/github.com/gohugoio/hugo/create/content.go gopkg/src/github.com/gohugoio/hugo/create/content_template_handler.go gopkg/src/github.com/gohugoio/hugo/create/content_test.go gopkg/src/github.com/gohugoio/hugo/deps/deps.go +gopkg/src/github.com/gohugoio/hugo/docs/.github/stale.yml gopkg/src/github.com/gohugoio/hugo/docs/.gitignore gopkg/src/github.com/gohugoio/hugo/docs/LICENSE.md gopkg/src/github.com/gohugoio/hugo/docs/README.md @@ -309,6 +326,11 @@ gopkg/src/github.com/gohugoio/hugo/docs/content/en/functions/now.md gopkg/src/github.com/gohugoio/hugo/docs/content/en/functions/os.Stat.md gopkg/src/github.com/gohugoio/hugo/docs/content/en/functions/param.md gopkg/src/github.com/gohugoio/hugo/docs/content/en/functions/partialCached.md +gopkg/src/github.com/gohugoio/hugo/docs/content/en/functions/path.Base.md +gopkg/src/github.com/gohugoio/hugo/docs/content/en/functions/path.Dir.md +gopkg/src/github.com/gohugoio/hugo/docs/content/en/functions/path.Ext.md +gopkg/src/github.com/gohugoio/hugo/docs/content/en/functions/path.Join.md +gopkg/src/github.com/gohugoio/hugo/docs/content/en/functions/path.Split.md gopkg/src/github.com/gohugoio/hugo/docs/content/en/functions/plainify.md gopkg/src/github.com/gohugoio/hugo/docs/content/en/functions/pluralize.md gopkg/src/github.com/gohugoio/hugo/docs/content/en/functions/print.md @@ -319,6 +341,8 @@ gopkg/src/github.com/gohugoio/hugo/docs/content/en/functions/range.md gopkg/src/github.com/gohugoio/hugo/docs/content/en/functions/readdir.md gopkg/src/github.com/gohugoio/hugo/docs/content/en/functions/readfile.md gopkg/src/github.com/gohugoio/hugo/docs/content/en/functions/ref.md +gopkg/src/github.com/gohugoio/hugo/docs/content/en/functions/reflect.IsMap.md +gopkg/src/github.com/gohugoio/hugo/docs/content/en/functions/reflect.IsSlice.md gopkg/src/github.com/gohugoio/hugo/docs/content/en/functions/relLangURL.md gopkg/src/github.com/gohugoio/hugo/docs/content/en/functions/relref.md gopkg/src/github.com/gohugoio/hugo/docs/content/en/functions/relurl.md @@ -348,8 +372,10 @@ gopkg/src/github.com/gohugoio/hugo/docs/content/en/functions/strings.TrimRight.m gopkg/src/github.com/gohugoio/hugo/docs/content/en/functions/strings.TrimSuffix.md gopkg/src/github.com/gohugoio/hugo/docs/content/en/functions/substr.md gopkg/src/github.com/gohugoio/hugo/docs/content/en/functions/symdiff.md +gopkg/src/github.com/gohugoio/hugo/docs/content/en/functions/templates.Exists.md gopkg/src/github.com/gohugoio/hugo/docs/content/en/functions/time.md gopkg/src/github.com/gohugoio/hugo/docs/content/en/functions/title.md +gopkg/src/github.com/gohugoio/hugo/docs/content/en/functions/transform.Unmarshal.md gopkg/src/github.com/gohugoio/hugo/docs/content/en/functions/trim.md gopkg/src/github.com/gohugoio/hugo/docs/content/en/functions/truncate.md gopkg/src/github.com/gohugoio/hugo/docs/content/en/functions/union.md @@ -475,8 +501,12 @@ gopkg/src/github.com/gohugoio/hugo/docs/content/en/news/0.49-relnotes/featured-h gopkg/src/github.com/gohugoio/hugo/docs/content/en/news/0.49-relnotes/index.md gopkg/src/github.com/gohugoio/hugo/docs/content/en/news/0.49.1-relnotes/index.md gopkg/src/github.com/gohugoio/hugo/docs/content/en/news/0.49.2-relnotes/index.md +gopkg/src/github.com/gohugoio/hugo/docs/content/en/news/0.50-relnotes/featured-hugo-50-poster.png gopkg/src/github.com/gohugoio/hugo/docs/content/en/news/0.50-relnotes/index.md +gopkg/src/github.com/gohugoio/hugo/docs/content/en/news/0.51-relnotes/featured-hugo-51-poster.png gopkg/src/github.com/gohugoio/hugo/docs/content/en/news/0.51-relnotes/index.md +gopkg/src/github.com/gohugoio/hugo/docs/content/en/news/0.52-relnotes/featured-hugo-52-poster.png +gopkg/src/github.com/gohugoio/hugo/docs/content/en/news/0.52-relnotes/index.md gopkg/src/github.com/gohugoio/hugo/docs/content/en/news/${PKGVERSION}-relnotes/index.md gopkg/src/github.com/gohugoio/hugo/docs/content/en/news/0.7-relnotes/index.md gopkg/src/github.com/gohugoio/hugo/docs/content/en/news/0.8-relnotes/index.md @@ -627,6 +657,10 @@ gopkg/src/github.com/gohugoio/hugo/docs/netlify.toml gopkg/src/github.com/gohugoio/hugo/docs/pull-theme.sh gopkg/src/github.com/gohugoio/hugo/docs/requirements.txt gopkg/src/github.com/gohugoio/hugo/docs/resources/.gitattributes +gopkg/src/github.com/gohugoio/hugo/docs/resources/_gen/assets/css/output/css/app.css_d11fe7b62c27961c87ecd0f2490357b9.content +gopkg/src/github.com/gohugoio/hugo/docs/resources/_gen/assets/css/output/css/app.css_d11fe7b62c27961c87ecd0f2490357b9.json +gopkg/src/github.com/gohugoio/hugo/docs/resources/_gen/assets/js/output/js/app.js_8848f55d07695b7ff7188138f23d69e3.content +gopkg/src/github.com/gohugoio/hugo/docs/resources/_gen/assets/js/output/js/app.js_8848f55d07695b7ff7188138f23d69e3.json gopkg/src/github.com/gohugoio/hugo/docs/resources/_gen/images/about/new-in-032/sunset_hu59e56ffff1bc1d8d122b1403d34e039f_90587_300x0_resize_q10_catmullrom.jpg gopkg/src/github.com/gohugoio/hugo/docs/resources/_gen/images/about/new-in-032/sunset_hu59e56ffff1bc1d8d122b1403d34e039f_90587_300x0_resize_q75_catmullrom.jpg gopkg/src/github.com/gohugoio/hugo/docs/resources/_gen/images/about/new-in-032/sunset_hu59e56ffff1bc1d8d122b1403d34e039f_90587_90x120_fill_q75_catmullrom_left.jpg @@ -673,6 +707,12 @@ gopkg/src/github.com/gohugoio/hugo/docs/resources/_gen/images/news/0.48-relnotes gopkg/src/github.com/gohugoio/hugo/docs/resources/_gen/images/news/0.48-relnotes/featured-hugo-48-poster_hub95348423e80ff144dfee01d64fb9889_95358_640x0_resize_catmullrom_2.png gopkg/src/github.com/gohugoio/hugo/docs/resources/_gen/images/news/0.49-relnotes/featured-hugo-49-poster_hud9cdb0f9aa2ec95d28fc3f49c81e7940_66352_480x0_resize_catmullrom_2.png gopkg/src/github.com/gohugoio/hugo/docs/resources/_gen/images/news/0.49-relnotes/featured-hugo-49-poster_hud9cdb0f9aa2ec95d28fc3f49c81e7940_66352_640x0_resize_catmullrom_2.png +gopkg/src/github.com/gohugoio/hugo/docs/resources/_gen/images/news/0.50-relnotes/featured-hugo-50-poster_hudcbbb9a5a0079d08447101e6cfae6e40_227240_480x0_resize_catmullrom_2.png +gopkg/src/github.com/gohugoio/hugo/docs/resources/_gen/images/news/0.50-relnotes/featured-hugo-50-poster_hudcbbb9a5a0079d08447101e6cfae6e40_227240_640x0_resize_catmullrom_2.png +gopkg/src/github.com/gohugoio/hugo/docs/resources/_gen/images/news/0.51-relnotes/featured-hugo-51-poster_hu25ab021d1365edeedf46d92fdb888ccf_117678_480x0_resize_catmullrom_2.png +gopkg/src/github.com/gohugoio/hugo/docs/resources/_gen/images/news/0.51-relnotes/featured-hugo-51-poster_hu25ab021d1365edeedf46d92fdb888ccf_117678_640x0_resize_catmullrom_2.png +gopkg/src/github.com/gohugoio/hugo/docs/resources/_gen/images/news/0.52-relnotes/featured-hugo-52-poster_hu7f2ed09038efabda07872a275a935ada_336810_480x0_resize_catmullrom_2.png +gopkg/src/github.com/gohugoio/hugo/docs/resources/_gen/images/news/0.52-relnotes/featured-hugo-52-poster_hu7f2ed09038efabda07872a275a935ada_336810_640x0_resize_catmullrom_2.png gopkg/src/github.com/gohugoio/hugo/docs/resources/_gen/images/news/lets-celebrate-hugos-5th-birthday/featured_hu30cb938a182ebd06b50ed15d006d8f64_179291_480x0_resize_catmullrom_2.png gopkg/src/github.com/gohugoio/hugo/docs/resources/_gen/images/news/lets-celebrate-hugos-5th-birthday/featured_hu30cb938a182ebd06b50ed15d006d8f64_179291_640x0_resize_catmullrom_2.png gopkg/src/github.com/gohugoio/hugo/docs/resources/_gen/images/news/lets-celebrate-hugos-5th-birthday/graph-stars_hu169ba15a8bcaf4ddd6a5a1aa8505c448_15599_600x400_fit_catmullrom_2.png @@ -799,6 +839,46 @@ gopkg/src/github.com/gohugoio/hugo/docs/static/share/powered-by-hugo.png gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/.gitignore gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/README.md gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/archetypes/showcase.md +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/assets/css/_algolia.css +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/assets/css/_anchorforid.css +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/assets/css/_animation.css +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/assets/css/_carousel.css +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/assets/css/_chroma.css +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/assets/css/_code.css +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/assets/css/_color-scheme.css +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/assets/css/_columns.css +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/assets/css/_content-tables.css +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/assets/css/_content.css +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/assets/css/_definition-lists.css +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/assets/css/_documentation-styles.css +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/assets/css/_fluid-type.css +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/assets/css/_font-family.css +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/assets/css/_hljs.css +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/assets/css/_hugo-internal-template-styling.css +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/assets/css/_no-js.css +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/assets/css/_social-icons.css +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/assets/css/_stickyheader.css +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/assets/css/_svg.css +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/assets/css/_tabs.css +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/assets/css/_tachyons.css +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/assets/css/_variables.css +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/assets/css/main.css +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/assets/index.js +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/assets/js/anchorforid.js +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/assets/js/clipboardjs.js +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/assets/js/codeblocks.js +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/assets/js/docsearch.js +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/assets/js/filesaver.js +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/assets/js/hljs.js +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/assets/js/lazysizes.js +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/assets/js/main.js +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/assets/js/menutoggle.js +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/assets/js/nojs.js +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/assets/js/scrolldir.js +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/assets/js/smoothscroll.js +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/assets/js/tabs.js +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/assets/output/css/app.css +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/assets/output/js/app.js gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/data/sponsors.toml gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/layouts/404.html gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/layouts/_default/baseof.html @@ -831,7 +911,6 @@ gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/layouts/partials/ho gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/layouts/partials/home-page-sections/sponsors.html gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/layouts/partials/home-page-sections/tweets.html gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/layouts/partials/icon-link.html -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/layouts/partials/manifest.html gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/layouts/partials/nav-links-docs-mobile.html gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/layouts/partials/nav-links-docs.html gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/layouts/partials/nav-links-global-mobile.html @@ -846,6 +925,7 @@ gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/layouts/partials/pr gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/layouts/partials/previous-next-links.html gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/layouts/partials/related.html gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/layouts/partials/site-footer.html +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/layouts/partials/site-manifest.html gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/layouts/partials/site-nav.html gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/layouts/partials/site-scripts.html gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/layouts/partials/site-search.html @@ -870,13 +950,11 @@ gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/layouts/partials/sv gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/layouts/partials/svg/godoc-icon.html gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/layouts/partials/svg/gopher-2.svg gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/layouts/partials/svg/gopher-front.svg -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/layouts/partials/svg/gopher-hero.svg gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/layouts/partials/svg/gopher-homepage.svg gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/layouts/partials/svg/gopher-side_path.svg gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/layouts/partials/svg/gopher-small.svg gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/layouts/partials/svg/gopher.svg gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/layouts/partials/svg/hugo-h-only.svg -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/layouts/partials/svg/hugo-logo-wide.svg gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/layouts/partials/svg/hugo.svg gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/layouts/partials/svg/ic_arrow_drop_down.svg gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/layouts/partials/svg/ic_arrow_drop_up.svg @@ -920,55 +998,8 @@ gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/layouts/shortcodes/ gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/layouts/showcase/list.html gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/layouts/showcase/single.html gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/license.md -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/src/css/_algolia.css -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/src/css/_anchorforid.css -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/src/css/_animation.css -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/src/css/_carousel.css -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/src/css/_chroma.css -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/src/css/_code.css -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/src/css/_color-scheme.css -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/src/css/_columns.css -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/src/css/_content-tables.css -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/src/css/_content.css -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/src/css/_definition-lists.css -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/src/css/_documentation-styles.css -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/src/css/_fluid-type.css -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/src/css/_font-family.css -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/src/css/_hljs.css -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/src/css/_hugo-internal-template-styling.css -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/src/css/_no-js.css -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/src/css/_social-icons.css -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/src/css/_stickyheader.css -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/src/css/_svg.css -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/src/css/_tabs.css -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/src/css/_tachyons.css -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/src/css/_variables.css -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/src/css/font/_muli-200.css -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/src/css/font/_muli-300.css -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/src/css/font/_muli-400.css -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/src/css/font/_muli-600.css -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/src/css/font/_muli-700.css -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/src/css/font/_muli-800.css -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/src/css/font/_muli-900.css -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/src/css/main.css -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/src/css/postcss.config.js -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/src/js/anchorforid.js -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/src/js/clipboardjs.js -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/src/js/codeblocks.js -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/src/js/docsearch.js -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/src/js/filesaver.js -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/src/js/hljs.js -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/src/js/lazysizes.js -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/src/js/main.js -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/src/js/menutoggle.js -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/src/js/nojs.js -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/src/js/scrolldir.js -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/src/js/smoothscroll.js -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/src/js/tabs.js -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/src/package-lock.json -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/src/package.json -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/src/readme.md -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/src/webpack.config.js +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/package-lock.json +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/package.json gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/android-chrome-144x144.png gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/android-chrome-192x192.png gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/android-chrome-256x256.png @@ -978,73 +1009,45 @@ gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/android-chro gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/android-chrome-96x96.png gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/apple-touch-icon.png gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/browserconfig.xml -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/dist/app.bundle.js -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/dist/main.css gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/favicon-16x16.png gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/favicon-32x32.png gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/favicon.ico -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-200.eot -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-200.svg -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-200.woff -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-200.woff2 -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-200italic.eot -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-200italic.svg -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-200italic.woff -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-200italic.woff2 -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-300.eot -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-300.svg -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-300.woff -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-300.woff2 -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-300italic.eot -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-300italic.svg -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-300italic.woff -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-300italic.woff2 -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-400.eot -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-400.svg -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-400.woff -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-400.woff2 -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-400italic.eot -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-400italic.svg -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-400italic.woff -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-400italic.woff2 -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-600.eot -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-600.svg -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-600.woff -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-600.woff2 -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-600italic.eot -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-600italic.svg -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-600italic.woff -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-600italic.woff2 -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-700.eot -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-700.svg -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-700.woff -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-700.woff2 -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-700italic.eot -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-700italic.svg -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-700italic.woff -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-700italic.woff2 -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-800.eot -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-800.svg -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-800.woff -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-800.woff2 -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-800italic.eot -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-800italic.svg -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-800italic.woff -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-800italic.woff2 -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-900.eot -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-900.svg -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-900.woff -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-900.woff2 -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-900italic.eot -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-900italic.svg -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-900italic.woff -gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/files/muli-latin-900italic.woff2 +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/fonts/muli-latin-200.woff +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/fonts/muli-latin-200.woff2 +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/fonts/muli-latin-200italic.woff +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/fonts/muli-latin-200italic.woff2 +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/fonts/muli-latin-300.woff +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/fonts/muli-latin-300.woff2 +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/fonts/muli-latin-300italic.woff +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/fonts/muli-latin-300italic.woff2 +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/fonts/muli-latin-400.woff +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/fonts/muli-latin-400.woff2 +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/fonts/muli-latin-400italic.woff +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/fonts/muli-latin-400italic.woff2 +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/fonts/muli-latin-600.woff +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/fonts/muli-latin-600.woff2 +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/fonts/muli-latin-600italic.woff +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/fonts/muli-latin-600italic.woff2 +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/fonts/muli-latin-700.woff +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/fonts/muli-latin-700.woff2 +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/fonts/muli-latin-700italic.woff +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/fonts/muli-latin-700italic.woff2 +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/fonts/muli-latin-800.woff +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/fonts/muli-latin-800.woff2 +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/fonts/muli-latin-800italic.woff +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/fonts/muli-latin-800italic.woff2 +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/fonts/muli-latin-900.woff +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/fonts/muli-latin-900.woff2 +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/fonts/muli-latin-900italic.woff +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/fonts/muli-latin-900italic.woff2 gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/images/GitHub-Mark-64px.png gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/images/gohugoio-card.png +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/images/gopher-hero.svg gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/images/gopher-side_color.svg gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/images/home-page-templating-example.png gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/images/homepage-screenshot-hugo-themes.jpg gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/images/homepage-screenshot-hugo-themes_not-optimized-according-to-google.jpg +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/images/hugo-logo-wide.svg gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/images/icon-built-in-templates.svg gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/images/icon-content-management.svg gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/images/icon-fast.svg @@ -1062,6 +1065,7 @@ gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/mstile-150x1 gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/mstile-310x310.png gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/static/safari-pinned-tab.svg gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/theme.toml +gopkg/src/github.com/gohugoio/hugo/docs/themes/gohugoioTheme/webpack.config.js gopkg/src/github.com/gohugoio/hugo/docshelper/docs.go gopkg/src/github.com/gohugoio/hugo/examples/blog/.gitignore gopkg/src/github.com/gohugoio/hugo/examples/blog/README.md @@ -1136,8 +1140,6 @@ gopkg/src/github.com/gohugoio/hugo/helpers/emoji.go gopkg/src/github.com/gohugoio/hugo/helpers/emoji_test.go gopkg/src/github.com/gohugoio/hugo/helpers/general.go gopkg/src/github.com/gohugoio/hugo/helpers/general_test.go -gopkg/src/github.com/gohugoio/hugo/helpers/hugo.go -gopkg/src/github.com/gohugoio/hugo/helpers/hugo_test.go gopkg/src/github.com/gohugoio/hugo/helpers/path.go gopkg/src/github.com/gohugoio/hugo/helpers/path_test.go gopkg/src/github.com/gohugoio/hugo/helpers/pathspec.go @@ -1148,6 +1150,8 @@ gopkg/src/github.com/gohugoio/hugo/helpers/pygments_test.go gopkg/src/github.com/gohugoio/hugo/helpers/testhelpers_test.go gopkg/src/github.com/gohugoio/hugo/helpers/url.go gopkg/src/github.com/gohugoio/hugo/helpers/url_test.go +gopkg/src/github.com/gohugoio/hugo/htesting/test_structs.go +gopkg/src/github.com/gohugoio/hugo/htesting/testdata_builder.go gopkg/src/github.com/gohugoio/hugo/hugofs/basepath_real_filename_fs.go gopkg/src/github.com/gohugoio/hugo/hugofs/fs.go gopkg/src/github.com/gohugoio/hugo/hugofs/fs_test.go @@ -1170,6 +1174,7 @@ gopkg/src/github.com/gohugoio/hugo/hugolib/collections.go gopkg/src/github.com/gohugoio/hugo/hugolib/collections_test.go gopkg/src/github.com/gohugoio/hugo/hugolib/config.go gopkg/src/github.com/gohugoio/hugo/hugolib/config_test.go +gopkg/src/github.com/gohugoio/hugo/hugolib/configdir_test.go gopkg/src/github.com/gohugoio/hugo/hugolib/datafiles_test.go gopkg/src/github.com/gohugoio/hugo/hugolib/disableKinds_test.go gopkg/src/github.com/gohugoio/hugo/hugolib/embedded_shortcodes_test.go @@ -1178,8 +1183,6 @@ gopkg/src/github.com/gohugoio/hugo/hugolib/fileInfo.go gopkg/src/github.com/gohugoio/hugo/hugolib/filesystems/basefs.go gopkg/src/github.com/gohugoio/hugo/hugolib/filesystems/basefs_test.go gopkg/src/github.com/gohugoio/hugo/hugolib/gitinfo.go -gopkg/src/github.com/gohugoio/hugo/hugolib/hugo_info.go -gopkg/src/github.com/gohugoio/hugo/hugolib/hugo_info_test.go gopkg/src/github.com/gohugoio/hugo/hugolib/hugo_sites.go gopkg/src/github.com/gohugoio/hugo/hugolib/hugo_sites_build.go gopkg/src/github.com/gohugoio/hugo/hugolib/hugo_sites_build_errors_test.go @@ -1301,10 +1304,14 @@ gopkg/src/github.com/gohugoio/hugo/parser/metadecoders/format.go gopkg/src/github.com/gohugoio/hugo/parser/metadecoders/format_test.go gopkg/src/github.com/gohugoio/hugo/parser/pageparser/item.go gopkg/src/github.com/gohugoio/hugo/parser/pageparser/pagelexer.go +gopkg/src/github.com/gohugoio/hugo/parser/pageparser/pagelexer_intro.go +gopkg/src/github.com/gohugoio/hugo/parser/pageparser/pagelexer_shortcode.go gopkg/src/github.com/gohugoio/hugo/parser/pageparser/pagelexer_test.go gopkg/src/github.com/gohugoio/hugo/parser/pageparser/pageparser.go gopkg/src/github.com/gohugoio/hugo/parser/pageparser/pageparser_intro_test.go +gopkg/src/github.com/gohugoio/hugo/parser/pageparser/pageparser_main_test.go gopkg/src/github.com/gohugoio/hugo/parser/pageparser/pageparser_shortcode_test.go +gopkg/src/github.com/gohugoio/hugo/parser/pageparser/pageparser_test.go gopkg/src/github.com/gohugoio/hugo/publisher/publisher.go gopkg/src/github.com/gohugoio/hugo/publisher/publisher_test.go gopkg/src/github.com/gohugoio/hugo/pull-docs.sh @@ -1401,6 +1408,8 @@ gopkg/src/github.com/gohugoio/hugo/tpl/encoding/init_test.go gopkg/src/github.com/gohugoio/hugo/tpl/fmt/fmt.go gopkg/src/github.com/gohugoio/hugo/tpl/fmt/init.go gopkg/src/github.com/gohugoio/hugo/tpl/fmt/init_test.go +gopkg/src/github.com/gohugoio/hugo/tpl/hugo/init.go +gopkg/src/github.com/gohugoio/hugo/tpl/hugo/init_test.go gopkg/src/github.com/gohugoio/hugo/tpl/images/images.go gopkg/src/github.com/gohugoio/hugo/tpl/images/images_test.go gopkg/src/github.com/gohugoio/hugo/tpl/images/init.go @@ -1431,12 +1440,18 @@ gopkg/src/github.com/gohugoio/hugo/tpl/path/init.go gopkg/src/github.com/gohugoio/hugo/tpl/path/init_test.go gopkg/src/github.com/gohugoio/hugo/tpl/path/path.go gopkg/src/github.com/gohugoio/hugo/tpl/path/path_test.go +gopkg/src/github.com/gohugoio/hugo/tpl/reflect/init.go +gopkg/src/github.com/gohugoio/hugo/tpl/reflect/init_test.go +gopkg/src/github.com/gohugoio/hugo/tpl/reflect/reflect.go +gopkg/src/github.com/gohugoio/hugo/tpl/reflect/reflect_test.go gopkg/src/github.com/gohugoio/hugo/tpl/resources/init.go gopkg/src/github.com/gohugoio/hugo/tpl/resources/resources.go gopkg/src/github.com/gohugoio/hugo/tpl/safe/init.go gopkg/src/github.com/gohugoio/hugo/tpl/safe/init_test.go gopkg/src/github.com/gohugoio/hugo/tpl/safe/safe.go gopkg/src/github.com/gohugoio/hugo/tpl/safe/safe_test.go +gopkg/src/github.com/gohugoio/hugo/tpl/site/init.go +gopkg/src/github.com/gohugoio/hugo/tpl/site/init_test.go gopkg/src/github.com/gohugoio/hugo/tpl/strings/init.go gopkg/src/github.com/gohugoio/hugo/tpl/strings/init_test.go gopkg/src/github.com/gohugoio/hugo/tpl/strings/regexp.go @@ -1501,6 +1516,8 @@ gopkg/src/github.com/gohugoio/hugo/tpl/transform/remarshal.go gopkg/src/github.com/gohugoio/hugo/tpl/transform/remarshal_test.go gopkg/src/github.com/gohugoio/hugo/tpl/transform/transform.go gopkg/src/github.com/gohugoio/hugo/tpl/transform/transform_test.go +gopkg/src/github.com/gohugoio/hugo/tpl/transform/unmarshal.go +gopkg/src/github.com/gohugoio/hugo/tpl/transform/unmarshal_test.go gopkg/src/github.com/gohugoio/hugo/tpl/urls/init.go gopkg/src/github.com/gohugoio/hugo/tpl/urls/init_test.go gopkg/src/github.com/gohugoio/hugo/tpl/urls/urls.go diff --git a/www/hugo/distinfo b/www/hugo/distinfo index c71da862042..e713843bda9 100644 --- a/www/hugo/distinfo +++ b/www/hugo/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.3 2018/12/12 14:26:46 ryoon Exp $ +$NetBSD: distinfo,v 1.4 2019/01/02 19:59:32 jmmv Exp $ -SHA1 (hugo-0.52.tar.gz) = ed3bcafa6655e47175c529a662d605988a9507ef -RMD160 (hugo-0.52.tar.gz) = 185bce328e5f0175a598dd15051f372eb0a7e3f6 -SHA512 (hugo-0.52.tar.gz) = 45baf7d3b98b7ed5aee7a8d154a87d32f89a56cd00cff48f21d5c69bef7f13ebd9726885885ce74f9c65587669090ce613ae5bb3652a9e1dd3a47a69faa44272 -Size (hugo-0.52.tar.gz) = 19961000 bytes +SHA1 (hugo-0.53.tar.gz) = 8742aa93eb720933fd00ded62d693f9fbe03f6f7 +RMD160 (hugo-0.53.tar.gz) = 2377591e9c560ade4e1d320537fa793a67e0b2bb +SHA512 (hugo-0.53.tar.gz) = 7c5378b905804e489c15ae197187d773941a0ecf1ae0e59ac6c0e986bfc0c8b0f884a41cc92d23285ca1457d0db096d38e829ce1a9b3a5049a21c6b2144dbc74 +Size (hugo-0.53.tar.gz) = 20864977 bytes SHA1 (patch-helpers_content.go) = 7c16f7512f0a3bf2fbb873cebd8ad91686d68521 |