mirror of https://github.com/luizdepra/hugo-coder.git

Alphonse Mariya
10.56.2021 b93ac81256997ec490ad8d5847ae40c76a44f0ee
Remove hide configs (#618)

* Remove "hide" configurations

* Remove "footerContent"
3 files modified
32 ■■■■■ changed files
exampleSite/config.toml 5 ●●●●● patch | view | raw | blame | history
layouts/partials/footer.html 17 ●●●● patch | view | raw | blame | history
stackbit.yaml 10 ●●●●● patch | view | raw | blame | history
exampleSite/config.toml
@@ -18,11 +18,7 @@
info = ["Full Stack DevOps", "Magician"]
avatarURL = "images/avatar.jpg"
#gravatar = "john.doe@example.com"
footerContent = "Enter a text here."
dateFormat = "January 2, 2006"
hideFooter = false
hideCredits = false
hideCopyright = false
since = 2019
# Git Commit in Footer, uncomment the line below to enable it
commit = "https://github.com/luizdepra/hugo-coder/tree/"
@@ -167,7 +163,6 @@
info = "Full Stack DevOps e Mágico"
description = "Sítio pessoal de João Ninguém"
keywords = "blog,desenvolvedor,pessoal"
footerContent = "Coloque algum texto aqui."
[[languages.pt-br.menu.main]]
name = "Sobre"
layouts/partials/footer.html
@@ -1,26 +1,15 @@
{{ if not .Site.Params.hideFooter | default false }}
  <footer class="footer">
    <section class="container">
      {{ with .Site.Params.footerContent | safeHTML }}
        <p>{{ . }}</p>
      {{ end }}
      {{ if not .Site.Params.hideCopyright }}
        ©
        {{ if (and (.Site.Params.since) (lt .Site.Params.since now.Year)) }}
    {{ if (and .Site.Params.since (lt .Site.Params.since now.Year)) }}
          {{ .Site.Params.since }} -
        {{ end }}
        {{ now.Year }}
        {{ with .Site.Params.author }} {{ . }} {{ end }}
      {{ end }}
      {{ if not .Site.Params.hideCredits }}
        {{ if not .Site.Params.hideCopyright }} · {{ end }}
    ·
        {{ i18n "powered_by" }} <a href="https://gohugo.io/">Hugo</a> & <a href="https://github.com/luizdepra/hugo-coder/">Coder</a>.
      {{ end }}
      {{ if .Site.Params.commit }}
        {{ if .GitInfo }}
    {{ if (and .Site.Params.commit .GitInfo) }}
          [<a href="{{ .Site.Params.commit }}/{{ .GitInfo.Hash }}">{{ .GitInfo.AbbreviatedHash }}</a>]
        {{ end }}
      {{ end }}
    </section>
  </footer>
{{ end }}
stackbit.yaml
@@ -51,17 +51,9 @@
            name: info
          - type: string
            name: avatarURL
          - type: boolean
            name: hideFooter
          - type: string
            name: footerContent
          - type: string
            name: dateFormat
          - type: boolean
            name: hideCredits
          - type: boolean
            name: hideCopyright
          - type: boolean
            name: hideColorSchemeToggle
          - type: number
            name: since
@@ -261,8 +253,6 @@
            name: description
          - type: string
            name: keywords
          - type: string
            name: footerContent
          - type: number
            name: since
      - type: object