-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
minerobber
authored and
minerobber
committed
Apr 27, 2016
1 parent
b7b2a5b
commit 47eaf9b
Showing
7 changed files
with
175 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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’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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<ul> | ||
<li><a href="/">Home</a></li> | ||
</ul> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
|
||
} |