Welcome to mirror list, hosted at ThFree Co, Russian Federation.

list.html « sermons « layouts - github.com/funkydan2/alpha-church.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e27e6bc49b1e6cebe5326271df950f29313891d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{{ define "main" }}
{{ "<!-- Main -->" | safeHTML }}
		<section id="main" class="container">
			<header>
				<h2>{{ .Title | title }}</h2>
				{{ if (.Site.Params.Podcast.feed) }}
					<ul class="icons">
						<li>
							<a href="https://subscribeonandroid.com/{{ index (split .Site.Params.Podcast.feed "://") 1 }}" target="_blank"><i class="icon fab fa-android"><span class="label">Subscribe on Android</span></i>Subscribe on Android</a>
						</li>
						{{ if (.Site.Params.Podcast.itunes ) }}
							<li>
								<a href="{{ .Site.Params.Podcast.iTunes }}" target="_blank"><i class="icon fab fa-apple"><span class="label">Subscribe on Apple Podcasts</span></i>Subscribe on Apple Podcasts</a>
							</li>
						{{ end }}
						{{ if (.Site.Params.Podcast.spotify ) }}
							<li>
								<a href="{{ .Site.Params.Podcast.spotify }}" target="_blank"><i class="icon fab fa-spotify"><span class="label">Subscribe on Spotify</span></i>Subscribe in Spotify</a>
							</li>
						{{ end }}
					</ul>
				{{ end }}
			</header>
			{{ partial "listbody" . }}
	</section>
{{ end }}