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

list.html « _default « layouts - github.com/djuelg/Shapez-Theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c79656bc24b3521680383b4cfc64b1ecfc51fa99 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="{{ with .Site.LanguageCode }}{{ . }}{{ else }}en-US{{ end }}">
    <head>
        {{ partial "head.html" . }}
        <script src="/js/single-text-align.js"></script>
    </head>
    <body>
        <div class="wrapper">
            {{ range .Data.Pages.ByDate.Reverse }}
                <div class="top-nav">
                    <img src="{{ .Site.Params.logo }}">
                    <h3>{{ .Site.Title }}</h3>
                    <text>·</text>
                    <a href="{{ .Site.Params.button_1 }}">Home</a>
                    <a href="{{ .Site.Params.button_2 }}">Playground</a>
                    <a href="{{ .Site.Params.button_3 }}" rel="me">About</a>
                </div>

                <div class="side-nav">
                    {{ partial "sidebar.svg" . }}
                </div>

                <div class="playground-header-container">
                    <div class="playground-header">
                        <table>
                            <tr>
                                <th><hr class="playground-line"></th>
                                <th style="width: 104px;">
                                    <div class="playground-date">
                                        <h3>{{ .Date.Format "02" }}</h3></br>{{ .Date.Format "January" | upper }}
                                    </div>
                                </th>
                                <th><hr class="playground-line"></th>
                            </tr>
                        </table>
                    </div>
                </div>
                <div class="playground-body">
                    {{ .Content }}
                </div>
            {{ end }}
            {{ partial "footer.html" . }}
        </div>
    </body>
</html>