summaryrefslogtreecommitdiffstats
path: root/layouts/partials/obsolete-banner.html
blob: 9bcaab91d78632562541ceec3fb3b335300fac3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{{ if .Params.obsolete }}
  {{ $successor := false }}
  {{ with .Params.successor }}
    {{ $successor = site.GetPage . }}
  {{ end }}
  <div class="banner-obsolete" role="alert">
    <div class="banner-obsolete__inner">
      <i data-feather="alert-triangle" class="w-5 h-5 shrink-0" aria-hidden="true"></i>
      <span class="sr-only">{{ i18n "obsolete_label" }}</span>
      <div class="banner-obsolete__body">
        <p>{{ i18n "obsolete_warning" }}</p>
        {{ if $successor }}
          <a href="{{ $successor.Permalink }}" class="banner-obsolete__cta">
            {{ i18n "obsolete_read_updated" }}
            <i data-feather="arrow-right" class="w-4 h-4" aria-hidden="true"></i>
            <span>{{ $successor.Title }}</span>
          </a>
        {{ end }}
      </div>
    </div>
  </div>
{{ end }}