Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added static/img/Wall 47.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/img/community.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
68 changes: 68 additions & 0 deletions templates/head_mine.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">

<title>ARM | Archangel Raphael's Mission</title>

<!-- Google Fonts -->
<link href='http://fonts.googleapis.com/css?family=Vollkorn|Open+Sans|Signika|Source+Sans+Pro:400,600,700' rel='stylesheet' type='text/css'>

<link href="http://fonts.googleapis.com/css?family=Overlock:400i" rel="stylesheet">
<link href='http://fonts.googleapis.com/css?family=PT+Sans:400,700' rel='stylesheet' type='text/css'>


<!--<link rel="stylesheet" href="../static/bower_components/font-awesome/css/font-awesome.min.css"> --> <!-- Resource style -->

<style>

.container{
background-color:gray;
background-image: url("../static/img/arm_banner.png");
background-repeat:no-repeat;
background-position: left;
background-size: 50% 100%;
font-family: 'Vollkorn', serif;
height: 100px;
width: 100%;
}

.container > ul > li > a{
color: white;
}

html{
overflow: scroll;
}
body{
margin: 0px;
padding: 0px;
position: relative;
}

ul{
margin: 0px;
padding-top: 40px;
padding-left: 700px;
}

li{
display: inline;
padding-left: 80px;
font-weight: bold;
}

@import url(https://fonts.googleapis.com/css?family=Raleway);

.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: red;
color: white;
text-align: center;
}
</style>

{% include seo.html %}
</head>
28 changes: 28 additions & 0 deletions templates/landing.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{% extends "start.html" %}
{% block content %}

<main>
<div class = "stuffs">
<img src = "../static/img/Wall 47.png" style = "height: 500px; width: 100%; vertical-align:middle;">
</div>

<div class = "class2">
<p style = "text-align: center; padding-top: 25px; font-size: 25px;"><b>YOUR CONTRIBUTION MATTERS!</b></p>
<hr style = "width: 20px;">
<p style = "text-align: center;">Lorem ipsum dolor sit amet, consectetur adipiscing elit. <br></p>
</div>

<div class = "another-banner">
<img src = "../static/img/community.jpg" style = "padding-bottom: 80px;"></img>
</div>

<!--<footer id="sticky">&copy; ARM New Brunswick, 2017</footer>-->

<footer class = "row">
<p style = "text-align: center; background-color:red; bottom:0; margin: 0px; padding: 0px; height: 50px; color: white;" ><br/>&copy; SAMPLE</p>
</footer>


</main>

{% endblock %}
25 changes: 25 additions & 0 deletions templates/start.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<!doctype html>
<html lang="en">

{% include 'head_mine.html' %}

<body>
<header>
<div class = "container">
<ul>
<li><a href="#Home">Home</a></li>
<li><a href="#Blog">Blog</a></li>
<li><a href="#Contact">Contact</a></li>
<li><a href="#About">About</a></li>
<li><a href="#Donate">Donate</a></li>
</ul>
</div>

</header>

{% block content %}
{# Actual content specific to each page will be rendered here in the content block #}
{% endblock %}

</body>
</html>