aboutsummaryrefslogtreecommitdiff
path: root/layouts/pico8/single.html
blob: 44bf5343d986e00128bfd0ffff294a5d6485f8a2 (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
{{ define "main" }}
<div class="container">
    <div class="row">
        <div class="col-xs-12 col-sm-12 col-md-4 sidebar">
            <h1 class="post-title fw-semibold">&larr;<a href="{{.Page.FirstSection.RelPermalink}}">{{.Page.FirstSection.Title}}</a></h1>
            {{if .Page.CurrentSection.Pages}}
            <h2 class="fw-semibold">Остальное</h2>
            <ul>
                {{ range .Page.CurrentSection.Pages }}
                <li>
                    <a href="{{ .RelPermalink }}">{{ .Title }}</a>
                </li>
                {{ end }}
            </ul>
            {{ end }}
        </div>
        <div class="col-xs-12 col-sm-12 col-md-8 content">
            <div class="post">
                {{ partial "single/header.html" . }}
                    <div id="pico-container">
                        <!-- <div class="buttons">
                            <button
                                id="pico-up"
                                style="grid-area: up"
                                onclick="PicoPress(3, 0)"
                            >
                                &uArr;
                            </button>
                            <button
                                id="pico-down"
                                style="grid-area: down"
                                onclick="PicoPress(3, 0)"
                            >
                                &dArr;
                            </button>
                            <button
                                id="pico-left"
                                style="grid-area: left"
                                onclick="PicoPress(3, 0)"
                            >
                                &lArr;
                            </button>
                            <button
                                id="pico-right"
                                style="grid-area: right"
                                onclick="PicoPress(3, 0)"
                            >
                                &rArr;
                            </button>
                            <button
                                id="pico-a"
                                style="grid-area: a"
                                onclick="PicoPress(3, 0)"
                            >
                                A
                            </button>
                            <button
                                id="pico-b"
                                style="grid-area: b"
                                onclick="PicoPress(3, 0)"
                            >
                                B
                            </button>
                            <div class="square_hack"></div>
                        </div> -->
                    </div>
                    <h2>Управление</h2>
                    <h3>Игрок 1</h3>
                    <img src="/img/p8_lf.webp" />&larr;&nbsp;
                    <img src="/img/p8_rt.webp" />&rarr;&nbsp;
                    <img src="/img/p8_up.webp" />&uarr;&nbsp;
                    <img src="/img/p8_dw.webp" />&darr;&nbsp;
                    <img src="/img/p8_x.webp" />Z C&nbsp;
                    <img src="/img/p8_o.webp" />X V&nbsp;
                    <h3>Игрок 2</h3>
                    <img src="/img/p8_lf.webp" /> S&nbsp;
                    <img src="/img/p8_rt.webp" /> F&nbsp;
                    <img src="/img/p8_up.webp" /> E&nbsp;
                    <img src="/img/p8_dw.webp" /> D&nbsp;
                    <img src="/img/p8_x.webp" />Q W&nbsp;
                    <img src="/img/p8_o.webp" />TAB&nbsp;
                    <h3>Пауза</h3>
                    P/Enter
                    <footer>
                        <div class="row between-xs">
                            <a href="{{ .Params.Game }}">Скачать</a>
                        </div>
                    </footer>
                    {{ partial "single/footer.html" . }}
                </div>
            </div>
          </div>
    </div>
</div>

<script src="/js/picoplayer.js"></script>
<script src="/js/pico8.js"></script>

<script>
    document.addEventListener("DOMContentLoaded", function (event) {
        PicoPlayer("pico-container", "{{.Params.Game}}");
    });
</script>
{{ end }}