first commit
commit
563ad732ee
@ -0,0 +1,31 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title><?=isset($title) ? $title : "Welcome to Alberta Fidonet - Downloads"?> </title>
|
||||
<link rel="stylesheet" href="/style.css">
|
||||
</head>
|
||||
<body>
|
||||
<?php include "nav.html"; ?>
|
||||
<div class="content">
|
||||
<h1 id="fancyboi">Welcome to Fidonet in Northern Alberta</h1>
|
||||
<div class="grid">
|
||||
<div class="row">
|
||||
<div class="col">
|
||||
<h2>NET342 Downloads:</h2>
|
||||
<br>
|
||||
<p><a href="http://rdnetbbs.com/nodelist.txt" target="_blank">Daily Fidonet Nodelist</a></p>
|
||||
<br>
|
||||
<p><a href="downloads/policy4.txt" target="_blank">Fidonet Policy 4.07</a></p>
|
||||
<br>
|
||||
<p>More downloads coming soon..</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php include "footer.php"; ?>
|
||||
</body>
|
||||
</html>
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,4 @@
|
||||
<br>
|
||||
<footer class="text-center">
|
||||
<a href="https://tildegit.org/fidonet1342/site">page source</a>
|
||||
</footer>
|
Binary file not shown.
After Width: | Height: | Size: 143 KiB |
Binary file not shown.
After Width: | Height: | Size: 9.4 KiB |
Binary file not shown.
After Width: | Height: | Size: 19 KiB |
Binary file not shown.
After Width: | Height: | Size: 19 KiB |
@ -0,0 +1,30 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title><?=isset($title) ? $title : "Welcome to Alberta Fidonet - Home"?> </title>
|
||||
<link rel="stylesheet" href="/style.css">
|
||||
</head>
|
||||
<body>
|
||||
<?php include "nav.html"; ?>
|
||||
<div class="content">
|
||||
<h1 id="fancyboi">Welcome to Fidonet in Northern Alberta</h1>
|
||||
<div class="grid">
|
||||
<div class="row">
|
||||
<div class="col">
|
||||
<h2>UPDATE: May 07 2021:</h2>
|
||||
<p>If you have a node in NET342 already and haven't contacted the incoming NC. Please do by filling out our <a href="join/">Sign up form.</a></p>
|
||||
<br>
|
||||
<p>All BBS's that are north of Airdrie fall under NET342.</p>
|
||||
</div>
|
||||
<div class="col">
|
||||
<img src="images/doggy111.png">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php include "footer.php"; ?>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -0,0 +1,28 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title><?=isset($title) ? $title : "Welcome to Alberta Fidonet - Join"?> </title>
|
||||
<link rel="stylesheet" href="/style.css">
|
||||
<link rel="stylesheet" type="text/css" href="view.css" media="all">
|
||||
<script type="text/javascript" src="view.js"></script>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<?php include "nav.html"; ?>
|
||||
<div class="content">
|
||||
<h1 id="fancyboi">Welcome to Fidonet in Northern Alberta</h1>
|
||||
<div class="grid">
|
||||
<div class="row">
|
||||
<div class="col">
|
||||
<script type="text/javascript" src="https://form.jotform.com/jsform/211261269369055"></script>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php include "../footer.php"; ?>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,7 @@
|
||||
<div id="navbar">
|
||||
<a href="/">HOME</a>
|
||||
<a href="https://web.tilde.chat/?join=#NET342" target="_blank">CHAT</a>
|
||||
<a href="../nodes.php">OUR NODES</a>
|
||||
<a href="../downloads.php">DOWNLOADS</a>
|
||||
<a href="./">JOIN NET342</a>
|
||||
</div>
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,7 @@
|
||||
<div id="navbar">
|
||||
<a href="/">HOME</a>
|
||||
<a href="https://web.tilde.chat/?join=#NET342" target="_blank">CHAT</a>
|
||||
<a href="nodes.php">OUR NODES</a>
|
||||
<a href="downloads.php">DOWNLOADS</a>
|
||||
<a href="join/">JOIN NET342</a>
|
||||
</div>
|
@ -0,0 +1,47 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title><?=isset($title) ? $title : "Welcome to Alberta Fidonet- Our Nodes"?> </title>
|
||||
<link rel="stylesheet" href="/style.css">
|
||||
</head>
|
||||
<body>
|
||||
<?php include "nav.html"; ?>
|
||||
<div class="content">
|
||||
<h1 id="fancyboi">Welcome to Fidonet in Northern Alberta</h1>
|
||||
<div class="grid">
|
||||
<div class="row">
|
||||
<div class="col">
|
||||
<h2>Our Nodes:</h2>
|
||||
<pre>
|
||||
RetroDigital BBS (1:342/11)
|
||||
WWW: <a href="http://rdnetbbs.com/" target="_blank">http://rdnetbbs.com/</a>
|
||||
Telnet: telnet://rdnetbbs.com
|
||||
Location: Calgary, Alberta
|
||||
---------------------------------------------------------------
|
||||
The Undermine (1:342/17)
|
||||
WWW:
|
||||
Telnet: telnet://bbs.undermine.ca:423
|
||||
Location: Calgary, Alberta
|
||||
---------------------------------------------------------------
|
||||
Star Flight BBS (1:342/19)
|
||||
WWW: <a href="https://www.stateoftheark.ca/Pages/bbs.html" target="_blank">https://stateoftheark.ca/</a>
|
||||
Telnet: telnet://stateoftheark.ca:1990
|
||||
Location: Calgary, Alberta
|
||||
---------------------------------------------------------------
|
||||
Joe's Computer & BBS (1:342/200 1:342/201)
|
||||
www: <a href="https://joesbbs.com" target="_blank">https://joesbbs.com</a>
|
||||
Telnet: telnet://joesbbs.com
|
||||
Location: Edmonton, Alberta
|
||||
---------------------------------------------------------------
|
||||
</pre>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php include "footer.php"; ?>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -0,0 +1,155 @@
|
||||
/* {font-size:13pt;font-weight:normal;} */
|
||||
|
||||
@media (min-width: 64em) {
|
||||
.row {
|
||||
display: flex;
|
||||
flex-wrap: nowrap;
|
||||
flex-direction: row-reverse;
|
||||
}
|
||||
.col { flex-grow: 1; }
|
||||
}
|
||||
|
||||
.grid {
|
||||
border-collapse: collapse;
|
||||
}
|
||||
.col {
|
||||
border: 6px double #fb5;
|
||||
padding: 1em;
|
||||
}
|
||||
|
||||
.user-list {
|
||||
display: flex;
|
||||
flex-flow: row wrap;
|
||||
justify-content: space-evenly;
|
||||
list-style-type: none;
|
||||
padding: 0;
|
||||
}
|
||||
.user-list li {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
flex: 10em;
|
||||
}
|
||||
.user-list::after {
|
||||
content: "";
|
||||
}
|
||||
|
||||
body {
|
||||
margin: auto;
|
||||
padding: 1em;
|
||||
max-width: 64em;
|
||||
font-family: "courier new", monospace;
|
||||
color: #fb5;
|
||||
background: #111;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: #f70;
|
||||
font-weight: bold;
|
||||
padding-right: 0.25em;
|
||||
}
|
||||
a:hover {color: #f20;}
|
||||
hr {
|
||||
border-color: #fb5;
|
||||
}
|
||||
.text-center {
|
||||
text-align: center
|
||||
}
|
||||
.advisory {
|
||||
background: #fc4;
|
||||
color: #222;
|
||||
font-weight: bold;
|
||||
padding: 1em;
|
||||
border-radius: 0.25em;
|
||||
}
|
||||
h1 {
|
||||
text-transform: uppercase;
|
||||
color: #fb5;
|
||||
font-family: monospace;
|
||||
}
|
||||
|
||||
/* THEGOODS */
|
||||
#fancyboi::before {
|
||||
content: "$ ";
|
||||
}
|
||||
@media (prefers-reduced-motion: no-preference) {
|
||||
@keyframes flash {
|
||||
50% { opacity: 0; }
|
||||
}
|
||||
@keyframes reveal {
|
||||
from { width: 2em; } /* Width of ::before */
|
||||
to { width: 100%; }
|
||||
}
|
||||
#fancyboi {
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
animation: reveal 4s linear;
|
||||
text-overflow: "█";
|
||||
}
|
||||
#fancyboi::after {
|
||||
content: "█";
|
||||
animation: flash 0.5s step-end infinite;
|
||||
}
|
||||
}
|
||||
/* SDOOGEHT */
|
||||
|
||||
.sourceCode {
|
||||
color:#008000;
|
||||
}
|
||||
|
||||
code > span.fl {
|
||||
color: #008000;
|
||||
}
|
||||
|
||||
/* Style the navbar */
|
||||
#navbar {
|
||||
overflow: hidden;
|
||||
background-color: #fb5;
|
||||
color: #222;
|
||||
z-index: 99;
|
||||
position: relative;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
border-radius: 0.25em;
|
||||
}
|
||||
|
||||
#navbar a:hover {
|
||||
background-color: #f93;
|
||||
}
|
||||
|
||||
/* Navbar links */
|
||||
#navbar a {
|
||||
float: left;
|
||||
display: block;
|
||||
color: black;
|
||||
text-align: center;
|
||||
padding: 14px;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/* Page content */
|
||||
.content {
|
||||
padding-top: 5px;
|
||||
}
|
||||
|
||||
input[type="text"],
|
||||
textarea {
|
||||
background-color: #333;
|
||||
color: darkorange;
|
||||
}
|
||||
|
||||
div.alert-warning {
|
||||
background-color: darkred;
|
||||
}
|
||||
div.alert-success {
|
||||
background-color: darkgreen;
|
||||
}
|
||||
|
||||
/* Mobile */
|
||||
@media (max-width: 768px) {
|
||||
td {
|
||||
display: block;
|
||||
}
|
||||
}
|
@ -0,0 +1,30 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title><?=isset($title) ? $title : "Welcome to Alberta Fidonet - Join"?> </title>
|
||||
<link rel="stylesheet" href="/style.css">
|
||||
<link rel="stylesheet" type="text/css" href="view.css" media="all">
|
||||
<script type="text/javascript" src="view.js"></script>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<?php include "nav.html"; ?>
|
||||
<div class="content">
|
||||
<h1 id="fancyboi">Welcome to Fidonet in Northern Alberta</h1>
|
||||
<div class="grid">
|
||||
<div class="row">
|
||||
<div class="col">
|
||||
<h1>THANK YOU!</h1>
|
||||
<br>
|
||||
<p>We will reply back to you in the next couple days. :)
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php include "../footer.php"; ?>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue