-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Srujan Thotapally
committed
Nov 14, 2016
1 parent
6b3a273
commit 6075871
Showing
15 changed files
with
311 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
from flask import Flask | ||
app = Flask(__name__) | ||
|
||
from pinacolada_website.views import index | ||
app.register_blueprint(index.mod) |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions
7
pinacolada-website/pinacolada_website/static/bootstrap.min.css
Large diffs are not rendered by default.
Oops, something went wrong.
7 changes: 7 additions & 0 deletions
7
pinacolada-website/pinacolada_website/static/bootstrap.min.js
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,160 @@ | ||
/* | ||
* Globals | ||
*/ | ||
|
||
/* Links */ | ||
a, | ||
a:focus, | ||
a:hover { | ||
color: #fff; | ||
} | ||
|
||
/* Custom default button */ | ||
.btn-secondary, | ||
.btn-secondary:hover, | ||
.btn-secondary:focus { | ||
color: #333; | ||
text-shadow: none; /* Prevent inheritance from `body` */ | ||
background-color: #fff; | ||
border: .05rem solid #fff; | ||
} | ||
|
||
|
||
/* | ||
* Base structure | ||
*/ | ||
|
||
html, | ||
body { | ||
height: 100%; | ||
background-color: #333; | ||
} | ||
body { | ||
color: #fff; | ||
text-align: center; | ||
text-shadow: 0 .05rem .1rem rgba(0,0,0,.5); | ||
} | ||
|
||
/* Extra markup and styles for table-esque vertical and horizontal centering */ | ||
.site-wrapper { | ||
display: table; | ||
width: 100%; | ||
height: 100%; /* For at least Firefox */ | ||
min-height: 100%; | ||
-webkit-box-shadow: inset 0 0 5rem rgba(0,0,0,.5); | ||
box-shadow: inset 0 0 5rem rgba(0,0,0,.5); | ||
} | ||
.site-wrapper-inner { | ||
display: table-cell; | ||
vertical-align: top; | ||
} | ||
.cover-container { | ||
margin-right: auto; | ||
margin-left: auto; | ||
} | ||
|
||
/* Padding for spacing */ | ||
.inner { | ||
padding: 2rem; | ||
} | ||
|
||
|
||
/* | ||
* Header | ||
*/ | ||
|
||
.masthead { | ||
margin-bottom: 2rem; | ||
} | ||
|
||
.masthead-brand { | ||
margin-bottom: 0; | ||
} | ||
|
||
.nav-masthead .nav-link { | ||
padding: .25rem 0; | ||
font-weight: bold; | ||
color: rgba(255,255,255,.5); | ||
background-color: transparent; | ||
border-bottom: .25rem solid transparent; | ||
} | ||
|
||
.nav-masthead .nav-link:hover, | ||
.nav-masthead .nav-link:focus { | ||
border-bottom-color: rgba(255,255,255,.25); | ||
} | ||
|
||
.nav-masthead .nav-link + .nav-link { | ||
margin-left: 1rem; | ||
} | ||
|
||
.nav-masthead .active { | ||
color: #fff; | ||
border-bottom-color: #fff; | ||
} | ||
|
||
@media (min-width: 48em) { | ||
.masthead-brand { | ||
float: left; | ||
} | ||
.nav-masthead { | ||
float: right; | ||
} | ||
} | ||
|
||
|
||
/* | ||
* Cover | ||
*/ | ||
|
||
.cover { | ||
padding: 0 1.5rem; | ||
} | ||
.cover .btn-lg { | ||
padding: .75rem 1.25rem; | ||
font-weight: bold; | ||
} | ||
|
||
|
||
/* | ||
* Footer | ||
*/ | ||
|
||
.mastfoot { | ||
color: rgba(255,255,255,.5); | ||
} | ||
|
||
|
||
/* | ||
* Affix and center | ||
*/ | ||
|
||
@media (min-width: 40em) { | ||
/* Pull out the header and footer */ | ||
.masthead { | ||
position: fixed; | ||
top: 0; | ||
} | ||
.mastfoot { | ||
position: fixed; | ||
bottom: 0; | ||
} | ||
/* Start the vertical centering */ | ||
.site-wrapper-inner { | ||
vertical-align: middle; | ||
} | ||
/* Handle the widths */ | ||
.masthead, | ||
.mastfoot, | ||
.cover-container { | ||
width: 100%; /* Must be percentage or pixels for horizontal alignment */ | ||
} | ||
} | ||
|
||
@media (min-width: 62em) { | ||
.masthead, | ||
.mastfoot, | ||
.cover-container { | ||
width: 42rem; | ||
} | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<!doctype html> | ||
<title>Chapter 404: The Lost Page</title> | ||
<style type=text/css> | ||
body, html { | ||
height: 100%; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
body { | ||
background: url({{ url_for('static', filename='ship.png') }}) no-repeat center right; | ||
} | ||
|
||
body:after { | ||
content: ""; | ||
display: block; | ||
position: absolute; | ||
top: 0; | ||
bottom: 0; | ||
width: 30px; | ||
background: url({{ url_for('static', filename='mask.png') }}) repeat-y left; | ||
} | ||
|
||
a { color: #004B6B; } | ||
a:hover { color: #6D4100; } | ||
|
||
h1 { | ||
font-family: 'Garamond', 'Georgia', serif; | ||
font-weight: normal; | ||
color: #222; | ||
font-size: 36px; | ||
padding: 50px 0 10px 50px; | ||
margin: 0; | ||
} | ||
|
||
p { | ||
font-family: 'Georgia', serif; | ||
color: #000; | ||
font-size: 17px; | ||
padding: 10px 0 0 90px; | ||
margin: 0; | ||
width: 360px; | ||
} | ||
</style> | ||
<h1>Chapter 404: The Lost Page</h1> | ||
<p>A careful and diligent search has been made for the desired page, but it just cannot be found. | ||
<p>And so they returned to <a href=/>familiar waters</a>. |
67 changes: 67 additions & 0 deletions
67
pinacolada-website/pinacolada_website/templates/index/index.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | ||
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> | ||
<meta name="description" content=""> | ||
<meta name="author" content=""> | ||
<link rel="icon" href="../../favicon.ico"> | ||
|
||
<title>Cover Template for Bootstrap</title> | ||
|
||
<!-- Bootstrap core CSS --> | ||
<link href="../../static/bootstrap.min.css" rel="stylesheet"> | ||
|
||
<!-- Custom styles for this template --> | ||
<link href="../../static/cover.css" rel="stylesheet"> | ||
</head> | ||
<style> | ||
body { | ||
background: linear-gradient( rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) ), url('../../static/background.gif'); | ||
background-repeat: no-repeat; | ||
background-size: cover; | ||
} | ||
</style> | ||
<body> | ||
|
||
<div class="site-wrapper"> | ||
|
||
<div class="site-wrapper-inner"> | ||
|
||
<div class="cover-container"> | ||
|
||
<div class="masthead clearfix"> | ||
<div class="inner"> | ||
<h3 class="masthead-brand">Piña Colada</h3> | ||
<nav class="nav nav-masthead"> | ||
<a class="nav-link active" href="#">Home</a> | ||
<a class="nav-link" href="#">Features</a> | ||
<a class="nav-link" href="#">Connect to Core</a> | ||
</nav> | ||
</div> | ||
</div> | ||
|
||
<div class="inner cover"> | ||
<h1 class="cover-heading"></h1> | ||
<p class="lead">Piña Colada is the ultimate wifi pineapple. idk what else to put here.</p> | ||
</div> | ||
|
||
</div> | ||
|
||
</div> | ||
|
||
</div> | ||
|
||
<!-- Bootstrap core JavaScript | ||
================================================== --> | ||
<!-- Placed at the end of the document so the pages load faster --> | ||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.0.0/jquery.min.js" integrity="sha384-THPy051/pYDQGanwU6poAc/hOdQxjnOEXzbT+OuUAFqNqFjL+4IGLBgCJC3ZOShY" crossorigin="anonymous"></script> | ||
<script>window.jQuery || document.write('<script src="../../assets/js/vendor/jquery.min.js"><\/script>')</script> | ||
<script src="../../static/tether.min.js" integrity="sha384-Plbmg8JY28KFelvJVai01l8WyZzrYWG825m+cZ0eDDS1f7d/js6ikvy1+X+guPIB" crossorigin="anonymous"></script> | ||
<script src="../../static/bootstrap.min.js"></script> | ||
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug --> | ||
<script src="../../assets/js/ie10-viewport-bug-workaround.js"></script> | ||
</body> | ||
</html> |
Empty file.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
from flask import Blueprint, render_template, session, redirect, url_for, \ | ||
request, flash, g, jsonify, abort | ||
|
||
mod = Blueprint('index', __name__) | ||
|
||
@mod.route('/') | ||
def index(): | ||
return render_template( | ||
'index/index.html' | ||
) | ||
|
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
from pinacolada_website import app | ||
app.run(debug=True) |