Initial commit for the new website!

This commit is contained in:
Shashank Mehta
2014-01-18 19:50:24 +05:30
commit 1f5b6cf998
69 changed files with 3558 additions and 0 deletions

10
_includes/footer.html Normal file
View File

@ -0,0 +1,10 @@
<footer class="pure-g">
<div class="pure-u-2-3">
<nav>
<a href="/team/">Team</a>
<a href="/about/">About Us</a>
<a href="http://fb.com/WatchOutNewsAgency">Facebook</a>
</nav>
<p>&copy; Copyrght 2014 &#8212; Watch Out! News Agency</p>
</div>
</footer>

23
_includes/head.html Normal file
View File

@ -0,0 +1,23 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-us">
<head>
<meta charset="utf-8">
<title>
{% if page.title %}
{{ page.title }} &ndash;
{% endif %}
{{ site.name }}
</title>
<meta name="author" content="{{ site.name }}" />
<meta name="description" content="{{ site.description }}" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="alternate" type="application/rss+xml" href="/atom.xml" />
<link rel="stylesheet" href="/css/pure.css" type="text/css" media="screen, projection" />
<link rel="stylesheet" href="/css/pygments.css" type="text/css" />
<link rel="stylesheet" href="/css/base.css" type="text/css" media="screen, projection" />
<script type="text/javascript" src="/js/masonry.min.js"></script>
<script type="text/javascript" src="/js/application.js"></script>
</head>

12
_includes/header.html Normal file
View File

@ -0,0 +1,12 @@
<div class="pure-g redhead">
<header class="pure-u-2-3">
<img src="/images/logo.png" alt="">
<h1>Watch Out! News Agency</h1>
<h3>The Official News Magazine of IIT Roorkee</h3>
<nav>
<a href="/">Home</a>
<a href="/columns/">Columns</a>
<a href="/news/">News</a>
</nav>
</header>
</div>