diff options
author | sstvinc2 <sstvinc2@gmail.com> | 2017-02-12 21:45:13 -0600 |
---|---|---|
committer | sstvinc2 <sstvinc2@gmail.com> | 2017-02-12 21:45:13 -0600 |
commit | 9e4ab3d644929d467e1f3de6f456508d03d4db15 (patch) | |
tree | c5834b83773498f731b9a4a17736bba95c4879f7 /html_template | |
parent | 1289131d2300bd991a2a2308d2a9396364c3fb62 (diff) |
Obfuscated h1 links
Added redirect files to the server. Main html template file now has
static links to those files; those files are written with javascript
redirect to actual articles.
Diffstat (limited to 'html_template')
-rw-r--r--[-rwxr-xr-x] | html_template/Penguins.jpg | bin | 777835 -> 777835 bytes | |||
-rw-r--r--[-rwxr-xr-x] | html_template/template.html | 6 | ||||
-rw-r--r--[-rwxr-xr-x] | html_template/unbiased.css | 5 |
3 files changed, 8 insertions, 3 deletions
diff --git a/html_template/Penguins.jpg b/html_template/Penguins.jpg Binary files differindex 030ab8a..030ab8a 100755..100644 --- a/html_template/Penguins.jpg +++ b/html_template/Penguins.jpg diff --git a/html_template/template.html b/html_template/template.html index ead234e..393a862 100755..100644 --- a/html_template/template.html +++ b/html_template/template.html @@ -17,7 +17,7 @@ <div id="page-container">
<div id="top-stories">
<div class="top-story">
- <a target="_blank" href="xxURL1-1xx" id="top-story-1">
+ <a target="_blank" href="redirects/h1-1.html" id="top-story-1">
<div class="top-stories-img">
<img src="xxImg1-1xx" />
</div>
@@ -27,7 +27,7 @@ </div>
<div class="top-story">
- <a target="_blank" href="xxURL1-2xx" id="top-story-2">
+ <a target="_blank" href="redirects/h1-2.html" id="top-story-2">
<div class="top-stories-img">
<img src="xxImg1-2xx" />
</div>
@@ -37,7 +37,7 @@ </div>
<div class="top-story">
- <a target="_blank" href="xxURL1-3xx" id="top-story-3">
+ <a target="_blank" href="redirects/h1-3.html" id="top-story-3">
<div class="top-stories-img">
<img src="xxImg1-3xx" />
</div>
diff --git a/html_template/unbiased.css b/html_template/unbiased.css index 564b6a7..ade390b 100755..100644 --- a/html_template/unbiased.css +++ b/html_template/unbiased.css @@ -1,3 +1,8 @@ +a:link, a:visited, a:hover, a:active {
+ color: #00f;
+ text-decoration:none;
+ }
+
#page-header{
text-align:center;
padding:.5em 0 1em;
|