aboutsummaryrefslogtreecommitdiff
path: root/layouts/pico8/single.html
blob: 01797cea1a5609071c1ff68074de0519f19c3882 (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
{{ define "main" }}
<div class="posts-container mx-auto my-5">
    <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>

<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 }}