aboutsummaryrefslogtreecommitdiff
path: root/layouts/index.html
blob: f81afc0af1fc34e0890c9d6e302c20623acde5c7 (plain) (blame)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!DOCTYPE html>
<html lang="en">
{{- partial "head.html" . -}}
<body id="page-top">
{{- partial "header.html" . -}}
        <!-- Masthead-->
        <header class="masthead">
            <div class="container main px-4 px-lg-5 py-lg-5 d-flex h-95 align-items-end justify-content-center">
                <div class="d-flex justify-content-center">
                    <div class="text-center">
                        {{ with site.Data.homepage.main }}
                        <h1 class="mx-auto my-0 text-uppercase">{{ .header.title }}</h1>
                        <h2 class="text-white-75 mx-auto mt-2 mb-2 text-uppercase">{{ .header.description }}</h2>
                        <a class="btn btn-primary" href="{{ .header.button.url }}">{{ .header.button.text }}</a>
                        {{ end }}
                    </div>
                </div>
            </div>
        </header>
        <!-- About-->
        {{ with site.Data.homepage.about }}
        <section class="about-section text-center" id="about">
            <div class="container px-4 px-lg-5">
                <div class="row gx-4 gx-lg-5 justify-content-center">
                    <div class="col-lg-8">
                        <h2 class="text-white mb-4 text-uppercase">{{ .title }}</h2>
                        <p class="text-white-75">{{ .desc }}</p>
                        {{ if .button.enable }}
                        <a class="btn btn-primary about-btn" href="{{ .button.url }}">{{ .button.text }}</a>
                        {{ end }}
                    </div>
                    <div class="about-row">
                        <figure class="column text-center">
                            <img class="about-img" src="{{ .image0.src }}" alt="A live picture of {{ .image0.text }}"/>
                            <figcaption class="text-white-75 mx-auto mt-2 mb-5 text-uppercase">{{ .image0.text }}</figcaption>
                        </figure>
                        <figure class="column text-center">
                            <img class="about-img" src="{{ .image1.src }}" alt="A live picture of {{ .image1.text }}"/>
                            <figcaption class="text-white-75 mx-auto mt-2 mb-5 text-uppercase">{{ .image1.text }}</figcaption>
                        </figure>
                        <figure class="column text-center">
                            <img class="about-img" src="{{ .image2.src }}" alt="A live picture of {{ .image2.text }}"/>
                            <figcaption class="text-white-75 mx-auto mt-2 mb-5 text-uppercase">{{ .image2.text }}</figcaption>
                        </figure>
                        <figure class="column text-center">
                            <img class="about-img" src="{{ .image3.src }}" alt="A live picture of {{ .image3.text }}"/>
                            <figcaption class="text-white-75 mx-auto mt-2 mb-3 text-uppercase">{{ .image3.text }}</figcaption>
                        </figure>
                    </div>
                </div>
            </div>
        </section>
        {{ end }}
        {{ with site.Data.homepage.musicvideo }}
        <!-- Listen-->
        <section class="watch-section" id="watch">
            <div class="container px-4 px-lg-5">
                <div class="d-flex justify-content-center">
                    <div class="col-lg-8 text-center">
                        <h2 class="text-white mb-4 text-uppercase">{{ .title }}</h2>
                        <p class="text-white-75 h2">{{ .desc }}</p>
                    </div>
                </div>
                <div class="text-center gx-4 gx-lg-5 justify-content-center about-row">
                    <video class="musicvideo mx-auto" controls preload="metadata" alt="Music video for Path of Emotions">
                        <source src='{{ .src }}' type="audio/ogg">
                    </video>
                </div>
            </div>
        </section>
        {{ end }}
        {{ with site.Data.homepage.listen }}
        <!-- Listen-->
        <section class="listen-section" id="listen">
            <div class="container px-4 px-lg-5">
                <div class="d-flex justify-content-center">
                    <div class="col-lg-8 text-center">
                        <h2 class="text-white mb-4 text-uppercase">{{ .title }}</h2>
                        <p class="text-white-75 h2">{{ .desc }}</p>
                    </div>
                </div>
                <div class="text-center mx-auto mt-2 mb-2">
                    <img class="listen-img" src="{{ .image }}" alt="Workart for our EP Take Away"/>
                </div>
                <div class="text-center gx-4 gx-lg-5 justify-content-center about-row">
                    <section class="text-white-75 text-uppercase"> {{ .audio0.title }} </section>
                    <audio class="mx-auto mt-1 mb-1" controls preload="metadata">
                        <source src='{{ .audio0.src }}' type="audio/ogg">
                    </audio>

                    <section class="text-white-75 text-uppercase"> {{ .audio1.title }} </section>
                    <audio class="mx-auto mt-1 mb-1" controls preload="metadata">
                        <source src='{{ .audio1.src }}' type="audio/ogg">
                    </audio>

                    <section class="text-white-75 text-uppercase"> {{ .audio2.title }} </section>
                    <audio class="mx-auto mt-1 mb-1" controls preload="metadata">
                        <source src='{{ .audio2.src }}' type="audio/ogg">
                    </audio>

                    <section class="text-white-75 text-uppercase"> {{ .audio3.title }} </section>
                    <audio class="mx-auto mt-1 mb-1" controls preload="metadata">
                        <source src='{{ .audio3.src }}' type="audio/ogg">
                    </audio>
                </div>
            </div>
        </section>
        {{ end }}
        <!-- Contact-->
        {{ with site.Data.homepage.contact }}
        <section class="contact-section bg-black" id="contact">
            <div class="d-flex justify-content-center">
                <div class="col-lg-8 text-center">
                    <h2 class="text-white mb-4 text-uppercase">{{ .title }}</h2>
                </div>
            </div>
            <div class="container px-4 px-lg-5">
                <div class="row gx-4 gx-lg-5 justify-content-center">
                    <div class="btn btn-primary mx-2 col-md-4 mb-3 mb-md-0">
                            <a  href="mailto:{{ .email }}">
                            <i class="fas fa-envelope text-primary mb-2"></i>
                            <h4 class="text-uppercase m-4 text-white-75">Email</h4>
                            <div class="small my-4 text-white-75">{{ .email }}</div>
                        </a>
                        </div>
                    <div class="column btn btn-primary mx-2 col-md-4 mb-3 mb-md-0">
                            <a href="xmpp:{{ .xmpp }}?message">
                            <i class="fas fa-envelope text-primary mb-2"></i>
                            <h4 class="text-uppercase m-4 text-white-75">XMPP</h4>
                            <div class="small my-4 text-white-75">{{ .xmpp }}</div>
                        </a>
                        </div>
                </div>
                {{ with site.Data.homepage.social }}
                <div class="social d-flex justify-content-center">
                    <a class="mx-2" href="{{ .fediverse.url }}"><img class="social-img" src="{{ .fediverse.src }}" alt="{{ .fediverse.altext }}"/></a>
                    <a class="mx-2" href="{{ .spotify.url }}"><img class="social-img" src="{{ .spotify.src }}" alt="{{ .spotify.altext }}"/></a>
                    <a class="mx-2" href="{{ .instagram.url }}"><img class="social-img" src="{{ .instagram.src }}" alt="{{ .instagram.altext }}"/></a>
                    <a class="mx-2" href="{{ .youtube.url }}"><img class="social-img" src="{{ .youtube.src }}" alt="{{ .youtube.altext }}"/></a>
                    <a class="mx-2" href="{{ .peertube.url }}"><img class="social-img" src="{{ .peertube.src }}" alt="{{ .peertube.altext }}"/></a>
                    <a class="mx-2" href="{{ .linktree.url }}"><img class="social-img" src="{{ .linktree.src }}" alt="{{ .linktree.altext }}"/></a>
                </div>
                {{ end }}
            </div>
        </section>
        {{ end }}
{{- partial "footer.html" . -}}
</body>
</html>