mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2025-02-02 12:06:58 +01:00
Add website skeleton.
This commit is contained in:
parent
a7b9ba0506
commit
5a1eb102ef
4
website/posts/2017/05/29/testing.markdown
Normal file
4
website/posts/2017/05/29/testing.markdown
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
@title Testing
|
||||||
|
@pubDate Mon May 29 10:36:02 -0700 2017
|
||||||
|
@modDate Mon May 29 10:36:02 -0700 2017
|
||||||
|
This thing on?
|
9
website/snippets/footer.html
Normal file
9
website/snippets/footer.html
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
</div> <!-- content -->
|
||||||
|
|
||||||
|
<div id="footer">
|
||||||
|
<p>© 1995-2017 Ranchero Software, LLC</p>
|
||||||
|
<p>Made in Seattle.</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
15
website/snippets/header.html
Normal file
15
website/snippets/header.html
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
<!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>
|
||||||
|
<title>Ranchero Software: [[@title]]</title>
|
||||||
|
<meta name="MSSmartTagsPreventParsing" content="true" />
|
||||||
|
<meta name="viewport" content="width=device-width" />
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
|
[[styleSheetLink()]]
|
||||||
|
<script type="text/javascript"> </script> <!-- FOUC hack: http://www.bluerobot.com/web/css/fouc.asp -->
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="banner"><div id="innerbanner"><h1><a href="http://inessential.com/">Ranchero Software</a></span></h1></div></div>
|
||||||
|
|
||||||
|
<div id="content">
|
90
website/styles/styleSheet.css
Normal file
90
website/styles/styleSheet.css
Normal file
@ -0,0 +1,90 @@
|
|||||||
|
body {
|
||||||
|
margin-top: 0px;
|
||||||
|
margin-bottom: 0px;
|
||||||
|
margin-left: 0px;
|
||||||
|
margin-right: 0px;
|
||||||
|
line-height: 1.55em;
|
||||||
|
font-family: "Helvetica Neue", Helvetica, sans-serif;
|
||||||
|
font-size: 18px;
|
||||||
|
color: #333;
|
||||||
|
background-color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
#banner {
|
||||||
|
line-height: 2em;
|
||||||
|
padding-top: 34px;
|
||||||
|
padding-bottom: 1px;
|
||||||
|
background-color: #445088;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
#innerbanner {
|
||||||
|
max-width: 30em;
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
#content {
|
||||||
|
padding-bottom: 2em;
|
||||||
|
max-width: 30em;
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
margin-top: 3.5em;
|
||||||
|
}
|
||||||
|
h1 a:link, h1 a:visited {
|
||||||
|
color: white;
|
||||||
|
text-decoration: none;
|
||||||
|
font-size: 48px;
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
h1 {
|
||||||
|
margin-bottom: 15px;
|
||||||
|
}
|
||||||
|
h2 {
|
||||||
|
color: #666;
|
||||||
|
margin-top: 2em;
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
a:link {
|
||||||
|
color: #437C95;
|
||||||
|
}
|
||||||
|
a:visited {
|
||||||
|
color: #614395;
|
||||||
|
}
|
||||||
|
#footer {
|
||||||
|
margin-top: 3em;
|
||||||
|
padding-top: 32px;
|
||||||
|
padding-bottom: 29px;
|
||||||
|
color: #999;
|
||||||
|
font-size: 0.9em;
|
||||||
|
text-align: center;
|
||||||
|
border-toxp: 1px solid #ddd;
|
||||||
|
backgrxound-color: #6A7DD4;
|
||||||
|
}
|
||||||
|
code, pre {
|
||||||
|
font-family: Menlo, monospace;
|
||||||
|
font-size: 14px;
|
||||||
|
color: maroon;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@media (max-width: 700px) {
|
||||||
|
#innerbanner {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
#content {
|
||||||
|
max-width 600px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 590px) {
|
||||||
|
#banner {
|
||||||
|
line-height: 2.25em;
|
||||||
|
}
|
||||||
|
#content {
|
||||||
|
padding-left: 15px;
|
||||||
|
padding-right: 15px;
|
||||||
|
}
|
||||||
|
}
|
5
website/templates/page.html
Normal file
5
website/templates/page.html
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
[[=header.html]]
|
||||||
|
[[@bodytext]]
|
||||||
|
[[=footer.html]]
|
||||||
|
</body>
|
||||||
|
</html>
|
3
website/templates/page_weblog.html
Normal file
3
website/templates/page_weblog.html
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
[[=header.html]]
|
||||||
|
[[@bodytext]]
|
||||||
|
[[=footer.html]]
|
3
website/templates/page_weblogOnePostArchive.html
Normal file
3
website/templates/page_weblogOnePostArchive.html
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
[[=header.html]]
|
||||||
|
[[@bodytext]]
|
||||||
|
[[=footer.html]]
|
5
website/templates/post_weblog.html
Normal file
5
website/templates/post_weblog.html
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
<div class="weblogPost">
|
||||||
|
<h3><a href="[[linkOrPermalink()]]">[[@title]]</a></h3>
|
||||||
|
<div class="weblogPostBody">[[@bodytext]]</div>
|
||||||
|
<div class="weblogPostDateline"><span class="weblogPostDisplayDate"><a href="[[@permalink]]">[[displayDate()]]</a></span></div>
|
||||||
|
</div>
|
5
website/templates/post_weblogOnePostArchive.html
Normal file
5
website/templates/post_weblogOnePostArchive.html
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
<div class="weblogPost">
|
||||||
|
<h3>[[onePostArchiveExternalLink(@title)]]</h3>
|
||||||
|
<div class="weblogPostBody">[[@bodytext]]</div>
|
||||||
|
<div class="weblogPostDateline"><span class="weblogPostDisplayDate">[[displayDate()]]</span></div>
|
||||||
|
</div>
|
1
website/templates/weblogDayGroup.html
Normal file
1
website/templates/weblogDayGroup.html
Normal file
@ -0,0 +1 @@
|
|||||||
|
[[@bodytext]]
|
Loading…
x
Reference in New Issue
Block a user