summaryrefslogtreecommitdiff
path: root/_includes/nav.liquid
blob: ea497f2d5e9907d08ef1aa6c5e1db1b9cf8c2a44 (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
<!-- begin navbar -->
<div class="container">
    <nav class="navbar is-primary">
        <!-- begin brand -->
        <div class="navbar-brand">
            <a class="navbar-item"
               title="Home"
               href="/"
               >
               <img src="/public/images/logo.png">
            </a>
                <a class="navbar-item"
                   href="/rss.xml"
                   title="RSS Feed"
                   download="rss.xml"
                   >
                   <span class="icon">
                       {% include mdi-rss-box.html %}
                   </span>
                </a>

                <a class="navbar-item"
                   href="mailto:atc@53hor.net"
                   title="E-mail"
                   >
                   <span class="icon">
                       {% include mdi-mail.html %}
                   </span>
                </a>

                <a class="navbar-item"
                   href="https://git.53hor.net"
                   title="Git Repositories"
                   target="_blank"
                   >
                   <span class="icon">
                       {% include mdi-git.html %}
                   </span>
                </a>

                <a class="navbar-item"
                   href="https://youtube.com/user/my53hornet"
                   title="53hornet YouTube Channel"
                   target="_blank"
                   >
                   <span class="icon">
                       {% include mdi-youtube.html %}
                   </span>
                </a>

                <a class="navbar-item"
                   href="https://www.youtube.com/user/STMUAC"
                   title="STMUAC YouTube Channel"
                   target="_blank"
                   >
                   <span class="icon">
                       {% include mdi-video-vintage.html %}
                   </span>
                </a>

                <a class="navbar-item"
                   href="https://www.linkedin.com/in/adam-carpenter/"
                   title="LinkedIn"
                   target="_blank"
                   >
                   <span class="icon">
                       {% include mdi-linkedin.html %}
                   </span>
                </a>

        </div>
        <!-- end brand -->

        <!-- begin menu -->
        <div class="navbar-menu is-active">

            <!-- begin start -->
            <div class="navbar-start">
            </div>
            <!-- end start -->

            <!-- begin end -->
            <div class="navbar-end">
                <!--<a class="navbar-item"
                    href-"/53hornet"
                    >
                    53hornet Project
                    </a>

                    <a class="navbar-item"
                    href="/driver"
                    >
                    Driver
                    </a>-->

                    <a class="navbar-item"
                       href="/journal"
                       >
                       Journal
                    </a>
            </div>
            <!-- end end -->

        </div>
        <!-- end menu -->

    </nav>
</div>
<!-- end navbar -->