Skip to content

Commit

Permalink
Added site.
Browse files Browse the repository at this point in the history
  • Loading branch information
minerobber authored and minerobber committed Apr 27, 2016
1 parent b7b2a5b commit 47eaf9b
Show file tree
Hide file tree
Showing 7 changed files with 175 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
TEXTS = $(wildcard *.text)
PAGES = $(patsubst %.text, %.html, $(TEXTS))

%.html: %.text Makefile page.theme
theme $<

all: $(PAGES)


.PHONY:
clean:
rm -f $(PAGES)
1 change: 1 addition & 0 deletions footer
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
(c) Software Needed Coalition 2016-. Design is from the <a href="https://tilde.town/~wiki">tilde.town wiki.</a>
42 changes: 42 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<!doctype html>
<html>
<head>
<title>
index.text
</title>
<link rel="stylesheet" type="text/css"
href="style.css">
<body>
<header>
<p class="sitenav">Software Needed Coalition</p>
</header>

<div id="container">
<div id="sidebar">
<!-- edit `the navigation` file to add more links here -->
<ul>
<li><a href="/">Home</a></li>
</ul>

</div>

<div id="main">
<!-- edit the .text file and run make to generate HTML from markdown -->
<h1 id="Software.Needed.Coalition">Software Needed Coalition</h1>

<p>The Software Needed Coalition creates programs for people to use. We will create a program for a purpose we believe doesn&rsquo;t have enough programs written for it.</p>

<h2 id="Who.are.we.">Who are we?</h2>

<p>Currently, our team consists of:
* <a href="https://tilde.town/~minerobber">~minerobber</a></p>

</div>

<footer>
<p>(c) Software Needed Coalition 2016-. Design is from the <a href="https://tilde.town/~wiki">tilde.town wiki.</a>
</p>
</footer>
</div><!-- container -->
</body>
</html>
6 changes: 6 additions & 0 deletions index.text
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Software Needed Coalition
The Software Needed Coalition creates programs for people to use. We will create a program for a purpose we believe doesn't have enough programs written for it.

## Who are we?
Currently, our team consists of:
* [~minerobber](https://tilde.town/~minerobber)
3 changes: 3 additions & 0 deletions navigation
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<ul>
<li><a href="/">Home</a></li>
</ul>
30 changes: 30 additions & 0 deletions page.theme
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<!doctype html>
<html>
<head>
<title>
<?theme title?>
</title>
<link rel="stylesheet" type="text/css"
href="style.css">
<body>
<header>
<p class="sitenav">Software Needed Coalition</p>
</header>

<div id="container">
<div id="sidebar">
<!-- edit `the navigation` file to add more links here -->
<?theme include(navigation) ?>
</div>

<div id="main">
<!-- edit the .text file and run make to generate HTML from markdown -->
<?theme body?>
</div>

<footer>
<p><?theme include(footer)?></p>
</footer>
</div><!-- container -->
</body>
</html>
81 changes: 81 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
@import url("normalize.css");
html, body {
margin: 0;
color: #000;
background-color: #E0B0FF;
}
a {
color: firebrick;
}

code {
background-color: seashell;
}

#container {
margin: 2em;
}

#sidebar {
width: 200px;
float: left;
padding-top: 1em;
}

#sidebar ul {
list-style: none;
list-style-position: outside;
padding: 0;
margin:0;
}

#sidebar li {
list-style-position: outside;
margin-bottom: 0.2em;
}
#sidebar a
, header
, footer
, header a
, footer a {
color: green;
text-decoration: none;
}
#main {
padding: 2em;
overflow: auto;
min-height: 20em;
background-color: white;
}

#main h1 {
margin-top: 0;
padding-top: 0;
}

header {
margin: 0;
font-size: 1.8em;
}

header
{
padding-left: 1em;
}
footer {
text-align: right;
margin-top: 1em;
padding-top: 1em;
}

@media print {
#sidebar {
display: none;
}
#main
, header
, footer{
margin: 0;
padding: 0;

}

0 comments on commit 47eaf9b

Please sign in to comment.