summaryrefslogtreecommitdiff
path: root/pages/calendar.mustache
blob: 79475cba38da185696f9ca7f2db63043e5d295d0 (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>Calendar {{channel}} ({{network}}) - ircbrowse2</title>
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" href="/style.css">
</head>
<body>
  <div id="gridwrapper" data-page="withheader">
    <header>
      <a href="/" class="hdritem">Home</a>
      {{network}}/{{channel}}:
      <a href="/log/{{alias}}" class="hdritem">Logs</a>
      <a href="/cal/{{alias}}" class="hdritem">Calendar</a>
    </header>
    <main>
      <h1>Calendar: {{network}}/{{channel}}</h1>
      {{#years}}
        <h2>{{year}}</h2>
        <table><tbody>
          {{#monrows}}
            <tr>
              {{#months}}
                <td class="calmonth">
                  {{#monthname}}
                    <b>{{monthname}}</b><br>
                    <table class="calmonth"><tbody>
                      {{#weeks}}
                        <tr>
                          {{#days}}
                            <td>{{#date}}<a href="/cal/{{alias}}/{{year}}-{{month00}}-{{date00}}">{{date}}</a>{{/date}}</td>
                          {{/days}}
                          {{^days}}
                            <td>&nbsp;</td>
                          {{/days}}
                        </tr>
                      {{/weeks}}
                      {{#phantomweek}}
                        <tr style="opacity:0">
                          <td>30</td><td>30</td><td>30</td><td>30</td><td>30</td><td>30</td><td>30</td>
                        </tr>
                      {{/phantomweek}}
                    </tbody></table>
                  {{/monthname}}
                </td>
              {{/months}}
            </tr>
          {{/monrows}}
        </tbody></table>
      {{/years}}
    </main>
    <footer>
      An IRC log viewer by
      <a href="https://tomsmeding.com">Tom Smeding</a>.
    </footer>
  </div>
</body>
</html>