pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/www/hugo Update hugo to 0.53:



details:   https://anonhg.NetBSD.org/pkgsrc/rev/a03b4ec304dd
branches:  trunk
changeset: 317237:a03b4ec304dd
user:      jmmv <jmmv%pkgsrc.org@localhost>
date:      Wed Jan 02 19:59:32 2019 +0000

description:
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."

diffstat:

 www/hugo/Makefile |    5 +-
 www/hugo/PLIST    |  249 ++++++++++++++++++++++++++++-------------------------
 www/hugo/distinfo |   10 +-
 3 files changed, 140 insertions(+), 124 deletions(-)

diffs (truncated from 523 to 300 lines):

diff -r 0f785bf7e8d8 -r a03b4ec304dd www/hugo/Makefile
--- a/www/hugo/Makefile Wed Jan 02 19:59:06 2019 +0000
+++ b/www/hugo/Makefile Wed Jan 02 19:59:32 2019 +0000
@@ -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 -r 0f785bf7e8d8 -r a03b4ec304dd www/hugo/PLIST
--- a/www/hugo/PLIST    Wed Jan 02 19:59:06 2019 +0000
+++ b/www/hugo/PLIST    Wed Jan 02 19:59:32 2019 +0000
@@ -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/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/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/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_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/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_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_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/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/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.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/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/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/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/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/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/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/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/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



Home | Main Index | Thread Index | Old Index