generated from corysanin/nodejs-web-template
39 lines
1.4 KiB
Plaintext
39 lines
1.4 KiB
Plaintext
<!DOCTYPE html>
|
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
|
|
|
|
<head>
|
|
<%- include("head", locals) %>
|
|
</head>
|
|
|
|
<body class="preload">
|
|
<%- include("navigation", locals) %>
|
|
<div class="content">
|
|
<% if (adminMode) { %>
|
|
<%- include("installform", locals) %>
|
|
<% } %>
|
|
<h1>Linux Install Party Madison</h1>
|
|
<% if (installs && installs.length) { %>
|
|
<div id="installs">
|
|
<h1>We have saved <span><%= installs.length %></span> computer<% if (installs.length > 1) { %>s<% } %>!</h1>
|
|
</div>
|
|
<% } %>
|
|
<h2>Thanks for saving your computers!</h2>
|
|
<p>
|
|
Thank you all for attending! It was great meeting everyone and I hope you all
|
|
enjoy your new OS's! Thanks to <a href="https://www.sector67.org/">Sector67</a>
|
|
for hosting the event and recruiting volunteers as well.
|
|
</p>
|
|
<p>
|
|
No promises, but perhaps we'll do this again in the future. You better believe if
|
|
Windows 10 ends up in the news due to a major vulnerability, I will almost certainly
|
|
be contemplating organizing another event. So stay tuned.
|
|
</p>
|
|
<h2>Need help?</h2>
|
|
<p>
|
|
If we set up your Linux installation and you need help or guidance, shoot me an
|
|
email at <a href="mailto:endof10@cory.sanin.dev">endof10@cory.sanin.dev</a>.
|
|
</p>
|
|
</div>
|
|
</body>
|
|
</html>
|