forked from pcengines/pcengines.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
145 lines (141 loc) · 4.76 KB
/
about.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!DOCTYPE html>
<html lang="en">
<head>
<link
href="https://fonts.googleapis.com/css?family=Roboto:300,400,700&subset=latin-ext"
rel="stylesheet"
/>
<link rel="stylesheet" type="text/css" href="css/style.css" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>PC Engines - github pages - About</title>
</head>
<body>
<!-- header -->
<nav id="nav" class="navigation">
<div class="navigation__container">
<div id="nav-icon">
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
</div>
<ul class="navigation__list">
<li class="navigation__list-item navigation__list-item-logo">
<a href="index.html">PC ENGINES ™</a>
</li>
<li class="navigation__list-item navigation__list-item-link">
<a
target="_blank"
href="https://docs.opnsense.org/manual/install.html"
>OPNsense</a
>
</li>
<li class="navigation__list-item navigation__list-item-link">
<a
target="_blank"
href="https://github.com/pcengines/apu2-documentation/blob/master/docs/pfSense-install-guide.md"
>pfSense</a
>
</li>
<li class="navigation__list-item navigation__list-item-link">
<a
target="_blank"
href="https://github.com/pcengines/apu2-documentation/blob/master/docs/pxelinux-cfg.md"
>Pxelinux</a
>
</li>
<li class="navigation__list-item navigation__list-item-link">
<a
target="_blank"
href="https://github.com/pcengines/apu2-documentation"
>Documentation</a
>
</li>
<li class="navigation__list-item navigation__list-item-link">
<a
target="_blank"
href="https://docs.google.com/spreadsheets/d/1_uRhVo9eYeZONnelymonYp444zYHT_Q_qmJEJ8_XqJc/edit#gid=0"
>Regression Test Results</a
>
</li>
<li class="navigation__list-item navigation__list-item-link">
<a
target="_blank"
href="https://gitlab.com/pcengines/coreboot/pipelines"
>GitLab CI</a
>
</li>
<li class="navigation__list-item navigation__list-item-link">
<a href="/blog">Blog</a>
</li>
<li class="navigation__list-item navigation__list-item-link">
<a href="about.html">About</a>
</li>
</ul>
</div>
</nav>
<div class="container--image--about">
<div class="container--image--about-filter"></div>
<div class="container--image--about-description">
<span></span>
<h2 class="header-title">About</h2>
</div>
</div>
<main>
<div class="container">
<div class="wrapper--about">
<div class="about__info">
<p class="big-text">
<a class="green-text" href="https://3mdeb.com/"
>3mdeb Embedded Systems Consulting</a
>
maintains
<a href="https://pcengines.github.io"
>https://pcengines.github.io</a
>
and
<a href="https://github.com/pcengines"
>https://github.com/pcengines</a
>
on behalf of
<a class="green-text" href="https://pcengines.ch/">PC Engines</a>.
</p>
<p class="big-text">
Those services are provided as part of our coreboot maintainership
package.
</p>
</div>
<div class="about__contact">
<p>If you are interested in similar support please</p>
<a href="index.html">CONTACT US</a>
</div>
</div>
</div>
</main>
<footer id="responsive-footer">
<div class="footer-text">
<a target="_blank" href="https://pcengines.ch/"> PC ENGINES </a>
</div>
</footer>
<script>
document.addEventListener("touchstart", function () {}, true);
let open = false;
const button = document.getElementById("nav-icon");
const nav = document.getElementById("nav");
const buttonClickHandler = function () {
open = !open;
if (open) {
button.classList.add("open");
nav.classList.add("navigation-active");
} else {
button.classList.remove("open");
nav.classList.remove("navigation-active");
}
};
button.addEventListener("click", buttonClickHandler);
</script>
</body>
</html>