<footer class="bg-black w-100 pa3 near-white">
  <div class="mw7 center">
    {{ if in .Site.Params.mainSections .Section }}
      <a
        href="/{{ .Section }}/index.xml"
        class="link color-inherit db tc mv2 dim"
      >
        Follow {{ .Section }} updates via RSS feed
        <i class="fa-solid fa-rss"></i>
      </a>
    {{ end }}


    <ul class="ma0 pa0 list overflow-hidden avenir tc bb b--white-40">
      {{ range .Site.Menus.footer }}
        <li class="dib dim">
          <a class="db f6 pa2 link near-white" href="{{ .URL | relLangURL }}"
            >{{ T .Name | safeHTML }}
          </a>
        </li>
      {{ end }}
    </ul>

    {{ with .Site.GetPage "footer.md" }}
      {{ .Content }}
    {{ end }}


    <div class="tc">
      {{ if in (slice "by" "by-nd" "by-sa" "by-nc" "by-nc-nd" "by-nc-sa") .Site.Params.license }}
        {{ $href := printf "http://creativecommons.org/licenses/%s/4.0/" .Site.Params.license }}
        <div
          xmlns:cc="http://creativecommons.org/ns#"
          xmlns:dct="http://purl.org/dc/terms/"
        >
          <span property="dct:title">The content in this website</span>
          by
          {{ with .Site.Params.Author.homepage }}
            <a
              rel="cc:attributionURL dct:creator"
              property="cc:attributionName"
              href="{{ . }}"
              class="link dim"
            >
              {{ $.Site.Params.Author.name }}
            </a>
          {{ else }}
            {{ $.Site.Params.Author.name }}
          {{ end }}

          is licensed under a
          <a
            target="_blank"
            rel="license noopener noreferrer"
            href="{{ $href }}"
            class="db dim link"
          >
            Creative Commons
            {{ with .Site.Params.license }}
              Attribution{{- if in . "by-nc" -}}
                -NonCommercial
              {{- end -}}{{- if in . "-nd" -}}
                -NoDerivatives
              {{- else if in . "-sa" -}}
                -ShareAlike
              {{- end -}}
            {{ end }}
            4.0 International License
            <span class="db ma2">
              <i class="f2 fab fa-creative-commons"></i>
              <i class="f2 fab fa-creative-commons-by"></i>
              {{ with .Site.Params.license }}
                {{ if in . "by-nc" }}
                  <i class="f2 fab fa-creative-commons-nc"></i>
                {{ end }}{{ if in . "-nd" }}
                  <i class="f2 fab fa-creative-commons-nd"></i>
                {{ else if in . "-sa" }}
                  <i class="f2 fab fa-creative-commons-sa"></i>
                {{ end }}
              {{ end }}
            </span>
          </a>
        </div>
      {{ else }}
        Copyright &copy;
        {{ now.Format "2006" }}
        {{ .Site.Params.Author.name }}
      {{ end }}
    </div>

    <div class="tc mv2">
      Made in anger with
      <a
        href="https://git.oscarnajera.com/hugo-minimalist-theme/about/"
        class="link silver hover-near-white"
      >
        hugo-minimalist
      </a>
      theme.
    </div>
  </div>
</footer>