2014-01-09 17:33:20 -05:00
|
|
|
// Copyright © 2013 Steve Francia <spf@spf13.com>.
|
|
|
|
//
|
|
|
|
// Licensed under the Simple Public License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
// http://opensource.org/licenses/Simple-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2014-11-20 12:32:21 -05:00
|
|
|
package tpl
|
2014-01-09 17:33:20 -05:00
|
|
|
|
|
|
|
type Tmpl struct {
|
2014-01-29 17:50:31 -05:00
|
|
|
Name string
|
|
|
|
Data string
|
2014-01-09 17:33:20 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func (t *GoHtmlTemplate) EmbedShortcodes() {
|
Provide (relative) reference funcs & shortcodes.
- `.Ref` and `.RelRef` take a reference (the logical filename for a
page, including extension and/or a document fragment ID) and return
a permalink (or relative permalink) to the referenced document.
- If the reference is a page name (such as `about.md`), the page
will be discovered and the permalink will be returned: `/about/`
- If the reference is a page name with a fragment (such as
`about.md#who`), the page will be discovered and used to add the
`page.UniqueID()` to the resulting fragment and permalink:
`/about/#who:deadbeef`.
- If the reference is a fragment and `.*Ref` has been called from
a `Node` or `SiteInfo`, it will be returned as is: `#who`.
- If the reference is a fragment and `.*Ref` has been called from
a `Page`, it will be returned with the page’s unique ID:
`#who:deadbeef`.
- `.*Ref` can be called from either `Node`, `SiteInfo` (e.g.,
`Node.Site`), `Page` objects, or `ShortcodeWithPage` objects in
templates.
- `.*Ref` cannot be used in content, so two shortcodes have been
created to provide the functionality to content: `ref` and `relref`.
These are intended to be used within markup, like `[Who]({{% ref
about.md#who %}})` or `<a href="{{% ref about.md#who %}}">Who</a>`.
- There are also `ref` and `relref` template functions (used to create
the shortcodes) that expect a `Page` or `Node` object and the
reference string (e.g., `{{ relref . "about.md" }}` or `{{
"about.md" | ref . }}`). It actually looks for `.*Ref` as defined on
`Node` or `Page` objects.
- Shortcode handling had to use a *differently unique* wrapper in
`createShortcodePlaceholder` because of the way that the `ref` and
`relref` are intended to be used in content.
2014-11-24 01:15:34 -05:00
|
|
|
t.AddInternalShortcode("ref.html", `{{ .Get 0 | ref .Page }}`)
|
|
|
|
t.AddInternalShortcode("relref.html", `{{ .Get 0 | relref .Page }}`)
|
2014-02-25 23:57:31 -05:00
|
|
|
t.AddInternalShortcode("highlight.html", `{{ .Get 0 | highlight .Inner }}`)
|
|
|
|
t.AddInternalShortcode("test.html", `This is a simple Test`)
|
|
|
|
t.AddInternalShortcode("figure.html", `<!-- image -->
|
|
|
|
<figure {{ with .Get "class" }}class="{{.}}"{{ end }}>
|
|
|
|
{{ with .Get "link"}}<a href="{{.}}">{{ end }}
|
2014-10-30 11:37:00 -04:00
|
|
|
<img src="{{ .Get "src" }}" {{ if or (.Get "alt") (.Get "caption") }}alt="{{ with .Get "alt"}}{{.}}{{else}}{{ .Get "caption" }}{{ end }}" {{ end }}{{ with .Get "width" }}width="{{.}}" {{ end }}/>
|
2014-02-25 23:57:31 -05:00
|
|
|
{{ if .Get "link"}}</a>{{ end }}
|
|
|
|
{{ if or (or (.Get "title") (.Get "caption")) (.Get "attr")}}
|
2014-01-09 17:33:20 -05:00
|
|
|
<figcaption>{{ if isset .Params "title" }}
|
2014-02-25 23:57:31 -05:00
|
|
|
<h4>{{ .Get "title" }}</h4>{{ end }}
|
|
|
|
{{ if or (.Get "caption") (.Get "attr")}}<p>
|
|
|
|
{{ .Get "caption" }}
|
|
|
|
{{ with .Get "attrlink"}}<a href="{{.}}"> {{ end }}
|
|
|
|
{{ .Get "attr" }}
|
|
|
|
{{ if .Get "attrlink"}}</a> {{ end }}
|
2014-01-09 17:33:20 -05:00
|
|
|
</p> {{ end }}
|
|
|
|
</figcaption>
|
|
|
|
{{ end }}
|
|
|
|
</figure>
|
|
|
|
<!-- image -->`)
|
|
|
|
}
|
2014-04-09 17:45:34 -04:00
|
|
|
|
|
|
|
func (t *GoHtmlTemplate) EmbedTemplates() {
|
|
|
|
|
|
|
|
t.AddInternalTemplate("_default", "rss.xml", `<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
|
|
<channel>
|
2014-11-16 09:41:07 -05:00
|
|
|
<title>{{ with .Title }}{{.}} on {{ end }}{{ .Site.Title }}</title>
|
2014-04-09 17:45:34 -04:00
|
|
|
<link>{{ .Permalink }}</link>
|
2014-11-16 09:41:07 -05:00
|
|
|
<description>Recent content {{ with .Title }}in {{.}} {{ end }}on {{ .Site.Title }}</description>
|
|
|
|
<generator>Hugo -- gohugo.io</generator>
|
2014-04-09 17:45:34 -04:00
|
|
|
{{ with .Site.LanguageCode }}<language>{{.}}</language>{{end}}
|
2015-01-14 23:05:13 -05:00
|
|
|
{{ with .Site.Author.email }}<managingEditor>{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}</managingEditor>{{end}}
|
|
|
|
{{ with .Site.Author.email }}<webMaster>{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}</webMaster>{{end}}
|
2014-04-09 17:45:34 -04:00
|
|
|
{{ with .Site.Copyright }}<copyright>{{.}}</copyright>{{end}}
|
2015-01-19 04:04:57 -05:00
|
|
|
<lastBuildDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" }}</lastBuildDate>
|
2014-11-16 09:41:07 -05:00
|
|
|
<atom:link href="{{.Url}}" rel="self" type="application/rss+xml" />
|
2014-04-09 17:45:34 -04:00
|
|
|
{{ range first 15 .Data.Pages }}
|
|
|
|
<item>
|
|
|
|
<title>{{ .Title }}</title>
|
|
|
|
<link>{{ .Permalink }}</link>
|
2015-01-19 04:04:57 -05:00
|
|
|
<pubDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" }}</pubDate>
|
2015-01-14 23:05:13 -05:00
|
|
|
{{ with .Site.Author.email }}<author>{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}</author>{{end}}
|
2014-04-09 17:45:34 -04:00
|
|
|
<guid>{{ .Permalink }}</guid>
|
|
|
|
<description>{{ .Content | html }}</description>
|
|
|
|
</item>
|
|
|
|
{{ end }}
|
|
|
|
</channel>
|
|
|
|
</rss>`)
|
|
|
|
|
2014-05-06 06:50:23 -04:00
|
|
|
t.AddInternalTemplate("_default", "sitemap.xml", `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
|
|
|
{{ range .Data.Pages }}
|
|
|
|
<url>
|
|
|
|
<loc>{{ .Permalink }}</loc>
|
|
|
|
<lastmod>{{ safeHtml ( .Date.Format "2006-01-02T15:04:05-07:00" ) }}</lastmod>{{ with .Sitemap.ChangeFreq }}
|
2014-05-06 11:02:56 -04:00
|
|
|
<changefreq>{{ . }}</changefreq>{{ end }}{{ if ge .Sitemap.Priority 0.0 }}
|
|
|
|
<priority>{{ .Sitemap.Priority }}</priority>{{ end }}
|
2014-05-06 06:50:23 -04:00
|
|
|
</url>
|
|
|
|
{{ end }}
|
|
|
|
</urlset>`)
|
|
|
|
|
2014-04-23 02:52:01 -04:00
|
|
|
t.AddInternalTemplate("", "disqus.html", `{{ if .Site.DisqusShortname }}<div id="disqus_thread"></div>
|
|
|
|
<script type="text/javascript">
|
|
|
|
var disqus_shortname = '{{ .Site.DisqusShortname }}';
|
|
|
|
var disqus_identifier = '{{with .GetParam "disqus_identifier" }}{{ . }}{{ else }}{{ .Permalink }}{{end}}';
|
|
|
|
var disqus_title = '{{with .GetParam "disqus_title" }}{{ . }}{{ else }}{{ .Title }}{{end}}';
|
|
|
|
var disqus_url = '{{with .GetParam "disqus_url" }}{{ . | html }}{{ else }}{{ .Permalink }}{{end}}';
|
|
|
|
|
|
|
|
(function() {
|
|
|
|
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
|
|
|
|
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
|
|
|
|
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
|
|
|
|
})();
|
|
|
|
</script>
|
|
|
|
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
|
|
|
<a href="http://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>{{end}}`)
|
|
|
|
|
2014-12-09 13:33:55 -05:00
|
|
|
// Add SEO & Social metadata
|
|
|
|
t.AddInternalTemplate("_default", "opengraph.html", `<meta property="og:title" content="{{ .Title }}" />
|
|
|
|
<meta property="og:description" content="{{ if .Description }}{{ .Description }}{{ else }}{{if .IsPage}}{{ .Summary }}{{ end }}{{ end }}" />
|
|
|
|
<meta property="og:type" content="{{ if .IsPage }}article{{ else }}website{{ end }}" />
|
|
|
|
<meta property="og:url" content="{{ .Permalink }}" />
|
|
|
|
{{ with .Params.images }}{{ range first 6 . }}
|
|
|
|
<meta property="og:image" content="{{ . }}" />
|
|
|
|
{{ end }}{{ end }}
|
|
|
|
|
|
|
|
<meta property="og:updated_time" content="{{ .Date }}"/>{{ with .Params.audio }}
|
|
|
|
<meta property="og:audio" content="{{ . }}" />{{ end }}{{ with .Params.locale }}
|
|
|
|
<meta property="og:locale" content="{{ . }}" />{{ end }}{{ with .Site.Params.title }}
|
|
|
|
<meta property="og:site_name" content="{{ . }}" />{{ end }}{{ with .Params.videos }}
|
|
|
|
{{ range .Params.videos }}
|
|
|
|
<meta property="og:video" content="{{ . }}" />
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
<!-- If it is part of a series, link to related articles -->
|
|
|
|
{{ $permalink := .Permalink }}
|
|
|
|
{{ $siteSeries := .Site.Taxonomies.series }}{{ with .Params.series }}
|
|
|
|
{{ range $name := . }}
|
|
|
|
{{ $series := index $siteSeries $name }}
|
|
|
|
{{ range $page := first 6 $series.Pages }}
|
|
|
|
{{ if ne $page.Permalink $permalink }}<meta property="og:see_also" content="{{ $page.Permalink }}" />{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}{{ end }}
|
|
|
|
|
|
|
|
{{ if .IsPage }}
|
|
|
|
{{ range .Site.Authors }}{{ with .Social.facebook }}
|
|
|
|
<meta property="article:author" content="https://www.facebook.com/{{ . }}" />{{ end }}{{ with .Site.Social.facebook }}
|
|
|
|
<meta property="article:publisher" content="https://www.facebook.com/{{ . }}" />{{ end }}
|
|
|
|
<meta property="article:published_time" content="{{ .PublishDate }}" />
|
|
|
|
<meta property="article:modified_time" content="{{ .Date }}" />
|
|
|
|
<meta property="article:section" content="{{ .Section }}" />
|
|
|
|
{{ with .Params.tags }}{{ range first 6 . }}
|
|
|
|
<meta property="article:tag" content="{{ . }}" />{{ end }}{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
<!-- Facebook Page Admin ID for Domain Insights -->
|
|
|
|
{{ with .Site.Social.facebook_admin }}<meta property="fb:admins" content="{{ . }}" />{{ end }}`)
|
|
|
|
|
|
|
|
t.AddInternalTemplate("_default", "twitter_cards.html", `{{ if .IsPage }}
|
|
|
|
{{ with .Params.images }}
|
|
|
|
<!-- Twitter summary card with large image must be at least 280x150px -->
|
|
|
|
<meta name="twitter:card" content="summary_large_image"/>
|
|
|
|
<meta name="twitter:image:src" content="{{ index . 0 }}"/>
|
|
|
|
{{ else }}
|
|
|
|
<meta name="twitter:card" content="summary"/>
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
<!-- Twitter Card data -->
|
|
|
|
<meta name="twitter:title" content="{{ .Title }}"/>
|
|
|
|
<meta name="twitter:description" content="{{ if .Description }}{{ .Description }}{{ else }}{{if .IsPage}}{{ .Summary }}{{ end }}{{ end }}"/>
|
|
|
|
{{ with .Site.Social.twitter }}<meta name="twitter:site" content="@{{ . }}"/>{{ end }}
|
|
|
|
{{ with .Site.Social.twitter_domain }}<meta name="twitter:domain" content="{{ . }}"/>{{ end }}
|
|
|
|
{{ range .Site.Authors }}
|
|
|
|
{{ with .twitter }}<meta name="twitter:creator" content="@{{ . }}"/>{{ end }}
|
|
|
|
{{ end }}{{ end }}`)
|
|
|
|
|
|
|
|
t.AddInternalTemplate("_default", "google_news.html", `{{ if .IsPage }}{{ with .Params.news_keywords }}
|
|
|
|
<meta name="news_keywords" content="{{ range $i, $kw := first 10 . }}{{ if $i }},{{ end }}{{ $kw }}{{ end }}" />
|
|
|
|
{{ end }}{{ end }}`)
|
|
|
|
|
|
|
|
t.AddInternalTemplate("_default", "schema.html", `{{ with .Site.Social.GooglePlus }}<link rel="publisher" href="{{ . }}"/>{{ end }}
|
|
|
|
<meta itemprop="name" content="{{ .Title }}">
|
|
|
|
<meta itemprop="description" content="{{ if .Description }}{{ .Description }}{{ else }}{{if .IsPage}}{{ .Summary }}{{ end }}{{ end }}">
|
|
|
|
|
|
|
|
{{if .IsPage}}
|
|
|
|
<meta itemprop="datePublished" content="{{ .PublishDate }}" />
|
|
|
|
<meta itemprop="dateModified" content="{{ .Date }}" />
|
|
|
|
<meta itemprop="wordCount" content="{{ .WordCount }}">
|
|
|
|
{{ with .Params.images }}{{ range first 6 . }}
|
|
|
|
<meta itemprop="image" content="{{ . }}">
|
|
|
|
{{ end }}{{ end }}
|
|
|
|
|
|
|
|
<!-- Output all taxonomies as schema.org keywords -->
|
|
|
|
<meta itemprop="keywords" content="{{ range $plural, $terms := .Site.Taxonomies }}{{ range $term, $val := $terms }}{{ printf "%s," $term }}{{ end }}{{ end }}" />
|
|
|
|
{{ end }}{{ end }}`)
|
|
|
|
|
2014-04-09 17:45:34 -04:00
|
|
|
}
|