summaryrefslogtreecommitdiff
path: root/html_template
diff options
context:
space:
mode:
Diffstat (limited to 'html_template')
-rwxr-xr-xhtml_template/BAKtemplate.html118
-rwxr-xr-xhtml_template/BAKunbiased.css104
-rwxr-xr-xhtml_template/Penguins.jpgbin777835 -> 0 bytes
3 files changed, 0 insertions, 222 deletions
diff --git a/html_template/BAKtemplate.html b/html_template/BAKtemplate.html
deleted file mode 100755
index 94a3796..0000000
--- a/html_template/BAKtemplate.html
+++ /dev/null
@@ -1,118 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <meta charset="utf-8">
- <link rel="stylesheet" href="html_template/unbiased.css">
- <link rel="stylesheet" href="unbiased.css">
- <title>UnBiased</title>
- </head>
-<body>
-
-<div id="page-header">
- <span id="title-1" class="title">un</span><span id="title-2" class="title">biased</span><br />
- <span id="subtitle">a different way to read the news</span>
- <p id="timestamp">Last updated: xxTimexx</p>
-</div>
-
-<div id="page-container">
-<div id="top-stories">
- <div class="top-story">
- <a target="_blank" href="redirects/h1-1.html" id="top-story-1">
- <div class="top-stories-img">
- <img src="xxImg1-1xx" />
- </div>
- <div class="top-stories-hed">xxTitle1-1xx</div>
- </a>
- <div class="top-stories-desc">xxDesc1-1xx</div>
- </div>
-
- <div class="top-story">
- <a target="_blank" href="redirects/h1-2.html" id="top-story-2">
- <div class="top-stories-img">
- <img src="xxImg1-2xx" />
- </div>
- <div class="top-stories-hed">xxTitle1-2xx</div>
- </a>
- <div class="top-stories-desc">xxDesc1-2xx</div>
- </div>
-
- <div class="top-story">
- <a target="_blank" href="redirects/h1-3.html" id="top-story-3">
- <div class="top-stories-img">
- <img src="xxImg1-3xx" />
- </div>
- <div class="top-stories-hed">xxTitle1-3xx</div>
- </a>
- <div class="top-stories-desc">xxDesc1-3xx</div>
- </div>
-</div>
-
-<div id="middle-stories">
-
- <a target="_blank" href="redirects/h2-1.html" >
- <div class="middle-story">
- <div class="middle-stories-img">
- <img src="xxImg2-1xx" />
- <p class="middle-stories-hed">xxTitle2-1xx</p>
- </div>
- </div>
- </a>
-
- <a target="_blank" href="redirects/h2-2.html" >
- <div class="middle-story">
- <div class="middle-stories-img">
- <img src="xxImg2-2xx" />
- <span class="middle-stories-hed">xxTitle2-2xx</span>
- </div>
- </div>
- </a>
-
- <a target="_blank" href="redirects/h2-3.html" >
- <div class="middle-story">
- <div class="middle-stories-img">
- <img src="xxImg2-3xx" />
- <span class="middle-stories-hed">xxTitle2-3xx</span>
- </div>
- </div>
- </a>
-
-
- <a target="_blank" href="redirects/h2-4.html" >
- <div class="middle-story">
- <div class="middle-stories-img">
- <img src="xxImg2-4xx" />
- <span class="middle-stories-hed">xxTitle2-4xx</span>
- </div>
- </div>
- </a>
-
- <a target="_blank" href="redirects/h2-5.html" >
- <div class="middle-story">
- <div class="middle-stories-img">
- <img src="xxImg2-5xx" />
- <span class="middle-stories-hed">xxTitle2-5xx</span>
- </div>
- </div>
- </a>
-
- <a target="_blank" href="redirects/h2-6.html" >
- <div class="middle-story">
- <div class="middle-stories-img">
- <img src="xxImg2-6xx" />
- <span class="middle-stories-hed">xxTitle2-6xx</span>
- </div>
- </div>
- </a>
-
-</div>
-
-<div id="bottom-stories">
-</div>
-
-</div>
-
-<div id="sources">
- Sources: xxSourcesxx
-</div>
-</body>
-</html>
diff --git a/html_template/BAKunbiased.css b/html_template/BAKunbiased.css
deleted file mode 100755
index ade390b..0000000
--- a/html_template/BAKunbiased.css
+++ /dev/null
@@ -1,104 +0,0 @@
-a:link, a:visited, a:hover, a:active {
- color: #00f;
- text-decoration:none;
- }
-
-#page-header{
- text-align:center;
- padding:.5em 0 1em;
- margin-bottom:1em;
- border-bottom:1px solid #000;
-}
-
-.title{
- font-size:3em;
-}
-
-#title-1{
- font-style:italic;
- color:#d00;
-}
-
-#title-2{
- color:#00d;
-}
-
-#subtitle{
- font-size:1.25em;
-}
-
-#timestamp{
- margin:.5em 0 0 0;
- font-size:.8em;
-}
-
-#page-container{
- width:1150px;
- padding:0 1em;
- margin-left:auto;
- margin-right:auto;
-}
-
-#top-stories{
- width:1150px;
- margin-left:auto;
- margin-right:auto;
- font-size:1.25em;
-}
-
-.top-story{
- width:350px;
- float:left;
- margin:0 .5em;
-}
-
-.top-stories-img{
- width:350px;
- height:200px;
- overflow:hidden;
-}
-
-.top-stories-img img{
- width:100%;
- display:block;
- vertical-align:text-bottom;
-}
-
-.top-stories-desc{
- font-size:.8em;
- padding-top:.5em;
-}
-
-#middle-stories{
- clear:both;
- width:1000px;
- margin:0 auto;
-}
-
-.middle-story{
- margin:2em 5px;
- width:45%;
- float:left;
- height:100px;
-}
-
-.middle-story img{
- vertical-align:middle;
- height:100px;
- float:left;
- margin-right:1em;
-}
-
-.middle-stories-hed{
- font-size:1.1em;
-}
-
-.middle-story p{
- display:block;
-}
-
-#sources{
- clear:both;
- padding-top:4em;
- font-size:.8em;
-} \ No newline at end of file
diff --git a/html_template/Penguins.jpg b/html_template/Penguins.jpg
deleted file mode 100755
index 030ab8a..0000000
--- a/html_template/Penguins.jpg
+++ /dev/null
Binary files differ