tpl/tplimpl: Extract internal templates
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 4 May 2018 15:53:56 +0000 (17:53 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 4 May 2018 21:12:10 +0000 (23:12 +0200)
commit34ad9a4f178fcf50abe7246ad9d30b294327da16
tree897c9094913420fb1bb6a413332f946d298b8d4f
parent914cc85e22af2e6c28f24a5fc70de94e4b9f1b1b
tpl/tplimpl: Extract internal templates

Having them in separate files should make maintainance easier.

When adding new or making changes to the templates:

```bash
mage generate
```

This will get the Go code in sync.

Fixes #4457
29 files changed:
hugolib/shortcode_test.go
magefile.go
tpl/tplimpl/embedded/generate/generate.go [new file with mode: 0644]
tpl/tplimpl/embedded/templates.autogen.go [new file with mode: 0644]
tpl/tplimpl/embedded/templates/README.md [new file with mode: 0644]
tpl/tplimpl/embedded/templates/_default/robots.txt [new file with mode: 0755]
tpl/tplimpl/embedded/templates/_default/rss.xml [new file with mode: 0755]
tpl/tplimpl/embedded/templates/_default/sitemap.xml [new file with mode: 0755]
tpl/tplimpl/embedded/templates/_default/sitemapindex.xml [new file with mode: 0755]
tpl/tplimpl/embedded/templates/disqus.html [new file with mode: 0755]
tpl/tplimpl/embedded/templates/google_analytics.html [new file with mode: 0755]
tpl/tplimpl/embedded/templates/google_analytics_async.html [new file with mode: 0755]
tpl/tplimpl/embedded/templates/google_news.html [new file with mode: 0755]
tpl/tplimpl/embedded/templates/opengraph.html [new file with mode: 0755]
tpl/tplimpl/embedded/templates/pagination.html [new file with mode: 0755]
tpl/tplimpl/embedded/templates/schema.html [new file with mode: 0755]
tpl/tplimpl/embedded/templates/shortcodes/figure.html [new file with mode: 0755]
tpl/tplimpl/embedded/templates/shortcodes/gist.html [new file with mode: 0755]
tpl/tplimpl/embedded/templates/shortcodes/highlight.html [new file with mode: 0755]
tpl/tplimpl/embedded/templates/shortcodes/instagram.html [new file with mode: 0755]
tpl/tplimpl/embedded/templates/shortcodes/ref.html [new file with mode: 0755]
tpl/tplimpl/embedded/templates/shortcodes/relref.html [new file with mode: 0755]
tpl/tplimpl/embedded/templates/shortcodes/speakerdeck.html [new file with mode: 0755]
tpl/tplimpl/embedded/templates/shortcodes/tweet.html [new file with mode: 0755]
tpl/tplimpl/embedded/templates/shortcodes/vimeo.html [new file with mode: 0755]
tpl/tplimpl/embedded/templates/shortcodes/youtube.html [new file with mode: 0755]
tpl/tplimpl/embedded/templates/twitter_cards.html [new file with mode: 0755]
tpl/tplimpl/template.go
tpl/tplimpl/template_embedded.go [deleted file]