mirror of https://github.com/theNewDynamic/gohugo-theme-ananke.git

Patrick Kollitsch
8 days ago bc495491553830da7677a22d0a02478b4e3531ae
fix: replace former _internal paths with root paths (v0.146)

Signed-off-by: Patrick Kollitsch <83281+davidsneighbour@users.noreply.github.com>
4 files modified
20 ■■■■■ changed files
layouts/baseof.html 10 ●●●●● patch | view | raw | blame | history
layouts/list.html 4 ●●●● patch | view | raw | blame | history
layouts/post/list.html 3 ●●●● patch | view | raw | blame | history
layouts/single.html 3 ●●●● patch | view | raw | blame | history
layouts/baseof.html
@@ -44,12 +44,14 @@
    {{ end }}
    {{/* NOTE: These Hugo Internal Templates can be found starting at https://github.com/gohugoio/hugo/tree/master/tpl/tplimpl/embedded/templates */}}
    {{- template "_internal/opengraph.html" . -}}
    {{- template "_internal/schema.html" . -}}
    {{- template "_internal/twitter_cards.html" . -}}
    {{/* former internal templates */}}
    {{ partial "opengraph.html" . -}}
    {{ partial "schema.html" . -}}
    {{ partial "twitter_cards.html" . -}}
    {{ if hugo.IsProduction }}
      {{ template "_internal/google_analytics.html" . }}
      {{/* former internal template */}}
      {{ partial "google_analytics.html" . }}
    {{ end }}
    {{ block "head" . }}{{ partials.Include "head-additions.html" . }}{{ end }}
  </head>
layouts/list.html
@@ -9,7 +9,7 @@
          {{ .Render "summary" }}
        </div>
      {{ end }}
    </section>
    {{- template "_internal/pagination.html" . -}}
    </section>{{/* former internal template */}}
    {{ partial "pagination.html" . -}}
  </article>
{{ end }}
layouts/post/list.html
@@ -13,6 +13,7 @@
        </div>
      {{ end }}
    </aside>
    {{ template "_internal/pagination.html" . }}
    {{/* former internal template */}}
    {{ partial "pagination.html" . }}
  </article>
{{ end }}
layouts/single.html
@@ -63,7 +63,8 @@
      {{- partials.Include "tags.html" . -}}
      <div class="mt6 instapaper_ignoref">
      {{ if .Site.Config.Services.Disqus.Shortname }}
        {{ template "_internal/disqus.html" . }}
        {{/* former internal template */}}
        {{ partial "disqus.html" . }}
      {{ end }}
      {{ if .Site.Params.commentoEnable }}
        {{- partials.Include "commento.html" . -}}