Prechádzať zdrojové kódy

Remove hide configs (#618)

* Remove "hide" configurations

* Remove "footerContent"
Alphonse Mariya 4 rokov pred
rodič
commit
b93ac81256
3 zmenil súbory, kde vykonal 15 pridanie a 41 odobranie
  1. 0 5
      exampleSite/config.toml
  2. 15 26
      layouts/partials/footer.html
  3. 0 10
      stackbit.yaml

+ 0 - 5
exampleSite/config.toml

@@ -18,11 +18,7 @@ keywords = "blog,developer,personal"
 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 @@ author = "João Ninguém"
 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"

+ 15 - 26
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)) }}
-          {{ .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 }}
-          [<a href="{{ .Site.Params.commit }}/{{ .GitInfo.Hash }}">{{ .GitInfo.AbbreviatedHash }}</a>]
-        {{ end }}
-      {{ end }}
-    </section>
-  </footer>
-{{ end }}
+<footer class="footer">
+  <section class="container">
+    ©
+    {{ if (and .Site.Params.since (lt .Site.Params.since now.Year)) }}
+      {{ .Site.Params.since }} -
+    {{ end }}
+    {{ now.Year }}
+    {{ with .Site.Params.author }} {{ . }} {{ end }}
+    ·
+    {{ i18n "powered_by" }} <a href="https://gohugo.io/">Hugo</a> & <a href="https://github.com/luizdepra/hugo-coder/">Coder</a>.
+    {{ if (and .Site.Params.commit .GitInfo) }}
+      [<a href="{{ .Site.Params.commit }}/{{ .GitInfo.Hash }}">{{ .GitInfo.AbbreviatedHash }}</a>]
+    {{ end }}
+  </section>
+</footer>

+ 0 - 10
stackbit.yaml

@@ -51,16 +51,8 @@ models:
             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
@@ -261,8 +253,6 @@ models:
             name: description
           - type: string
             name: keywords
-          - type: string
-            name: footerContent
           - type: number
             name: since
       - type: object