-
-
Notifications
You must be signed in to change notification settings - Fork 150
/
Copy pathhat.html
105 lines (90 loc) · 3.47 KB
/
hat.html
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
<!DOCTYPE html>
<html lang="{{ site.lang | default: "en-US" }}">
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,maximum-scale=2">
<script async="" src="//analytics.midwesternmac.com/tracker.js" id="fathom-script"></script>
<link rel="stylesheet" type="text/css" media="screen" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
{% seo %}
</head>
<body>
<!-- HEADER -->
<div id="header_wrap" class="outer">
<header class="inner">
<a id="sponsor_banner" href="https://github.com/sponsors/geerlingguy">Sponsor <i class="fa-solid fa-heart"></i></a>
<a id="forkme_banner" href="https://github.com/geerlingguy/raspberry-pi-pcie-devices">View on GitHub <i class="fa-brands fa-github"></i></a>
<h2 id="project_title"><a href="/">{{ site.title }}</a></h2>
<h2 id="project_tagline">{{ site.description }}</h2>
</header>
</div>
<!-- MAIN CONTENT -->
<div id="main_content_wrap" class="outer">
<section id="main_content" class="inner">
<a href="/hats">< Back to HATs and Boards</a>
<h1 id="board_title">{{ page.title }}</h1>
<div class="board_picture">
{% if page.picture %}
<a href="{{ page.picture }}"><img src="{{ page.picture }}" alt="{{ page.title }}"></a>
{% else %}
<p><em>There is no picture for this HAT yet.</em></p>
{% endif %}
</div>
<table class="board_details_table">
<thead>
<tr>
<th>Website</th>
<th>More Info</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="{{ page.link }}">More Info</a></td>
<td><a href="{{ page.github_issue }}">GitHub Issue</a></td>
</tr>
</tbody>
</table>
<div class="board_content">
<h3>Description</h3>
{{ content }}
</div>
<div class="board_videos">
<h3>Videos Related to this HAT</h2>
{% if page.videos.size >= 1 %}
<ul>
{% for video_url in page.videos %}
<li>{% youtube video_url %}</a></li>
{% endfor %}
</ul>
{% else %}
<p>There are no videos for this HAT yet.</p>
{% endif %}
</div>
</section>
</div>
<!-- FOOTER -->
<div id="footer_wrap" class="outer">
<footer class="inner">
<p class="copyright">The {{ site.title }} project is maintained by <a href="https://github.com/geerlingguy">geerlingguy</a></p>
</footer>
</div>
{% if site.fathom_analytics %}
<!-- Fathom - simple website analytics - https://github.com/usefathom/fathom -->
<script>
(function(f, a, t, h, o, m){
a[h]=a[h]||function(){
(a[h].q=a[h].q||[]).push(arguments)
};
o=f.createElement('script'),
m=f.getElementsByTagName('script')[0];
o.async=1; o.src=t; o.id='fathom-script';
m.parentNode.insertBefore(o,m)
})(document, window, '//analytics.midwesternmac.com/tracker.js', 'fathom');
fathom('set', 'siteId', 'JVIIB');
fathom('trackPageview');
</script>
<!-- / Fathom -->
{% endif %}
</body>
</html>