Stuff happened
BIN
.sass-cache/3856f687e0e91848948005cbf1461cd51c68dcf5/_main.scssc
Normal file
BIN
.sass-cache/3856f687e0e91848948005cbf1461cd51c68dcf5/_menu.scssc
Normal file
BIN
.sass-cache/9728ab19b668c44d4c78ffeb3f43a35ccf26d9e3/_box.scssc
Normal file
BIN
.sass-cache/9728ab19b668c44d4c78ffeb3f43a35ccf26d9e3/_form.scssc
Normal file
BIN
.sass-cache/9728ab19b668c44d4c78ffeb3f43a35ccf26d9e3/_icon.scssc
Normal file
BIN
.sass-cache/9728ab19b668c44d4c78ffeb3f43a35ccf26d9e3/_list.scssc
Normal file
BIN
.sass-cache/e31700bddb69acc7b6be2c53e1ebe60dda03fa0e/_page.scssc
Normal file
BIN
.sass-cache/fa2613c83176529da78aaac2676ac27d565fca00/_skel.scssc
Normal file
BIN
.sass-cache/fa2613c83176529da78aaac2676ac27d565fca00/_vars.scssc
Normal file
7
DeepSpace.md
Normal file
@ -0,0 +1,7 @@
|
||||
---
|
||||
layout: post
|
||||
title: Generic
|
||||
description: The code behind 5024's 2019 robot
|
||||
image: assets/images/DeepSpace.jpg
|
||||
source: projects
|
||||
---
|
12
Dockerfile
Normal file
@ -0,0 +1,12 @@
|
||||
FROM ubuntu:18.04
|
||||
|
||||
WORKDIR /srv/jekyll
|
||||
|
||||
RUN apt update -y && \
|
||||
apt install -y ruby-dev gcc make curl libc-dev libffi-dev libxml2-dev libgcrypt-dev libxslt-dev python git
|
||||
|
||||
RUN gem update --system
|
||||
|
||||
RUN bundle install
|
||||
|
||||
EXPOSE 4000
|
2
Gemfile
@ -5,4 +5,4 @@ group :jekyll_plugins do
|
||||
gem "jekyll-feed", "~> 0.6"
|
||||
end
|
||||
|
||||
gem "jemoji"
|
||||
gem "jemoji"
|
||||
|
@ -2,9 +2,9 @@
|
||||
title: Evan Pratten
|
||||
subtitle: retrylife
|
||||
email: ewpratten@gmail.com
|
||||
description: Computer wizard, student, @frc5024 programming team lead, and radio enthusiast.
|
||||
baseurl: "/" # the subpath of your site, e.g. /blog
|
||||
url: https://retrylife.ca # the base hostname & protocol for your site
|
||||
description: Computer wizard, student, <a href="https://github.com/frc5024">@frc5024</a> programming team lead, and radio enthusiast.
|
||||
baseurl: "" # the subpath of your site, e.g. /blog
|
||||
url: https://retrylife.ca
|
||||
author:
|
||||
street_address:
|
||||
city:
|
||||
|
@ -29,7 +29,6 @@
|
||||
<ul class="copyright">
|
||||
<li>© {{ site.title }} {{ site.subtitle }}</li>
|
||||
<li>Design: <a href="https://html5up.net" target="_blank">HTML5 UP</a></li>
|
||||
<li>Jekyll integration: <a href="http://andrewbanchi.ch" target="_blank">Andrew Banchich</a></li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
13
_includes/projects.html
Normal file
@ -0,0 +1,13 @@
|
||||
<section id="one" class="tiles">
|
||||
{% for page in site.pages limit:site.tiles-count %} {% if page.source == 'projects' and page.show_tile != false %}
|
||||
<article>
|
||||
<span class="image">
|
||||
<img src="{{ page.image }}" alt="" />
|
||||
</span>
|
||||
<header class="major">
|
||||
<h3><a href="{{ page.url | relative_url }}" class="link">{{ page.title }}</a></h3>
|
||||
<p>{{ page.description }}</p>
|
||||
</header>
|
||||
</article>
|
||||
{% endif %} {% endfor %}
|
||||
</section>
|
@ -30,7 +30,24 @@
|
||||
<!-- Main -->
|
||||
<div id="main">
|
||||
|
||||
<!-- One -->
|
||||
<!-- <section id="two">
|
||||
<div class="inner">
|
||||
<header class="major">
|
||||
<h2>Projects</h2>
|
||||
</header>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{% include projects.html %}
|
||||
|
||||
<section id="two">
|
||||
<div class="inner">
|
||||
<header class="major">
|
||||
<h2>Posts</h2>
|
||||
</header>
|
||||
</div>
|
||||
</section> -->
|
||||
|
||||
{% include tiles.html %}
|
||||
|
||||
<!-- Two -->
|
||||
|
10
_posts/WPI-2019-06-16-NewSite.md
Normal file
@ -0,0 +1,10 @@
|
||||
---
|
||||
layout: post
|
||||
title: "I have a new website!"
|
||||
date: 2019-06-16 10:19:00+0000
|
||||
categories: web
|
||||
---
|
||||
|
||||
Since 2015, this website has been constantly changing. For the curious, the origional site is still alive over [HERE](http://retrylife.weebly.com/).
|
||||
|
||||
This site get
|
@ -24,7 +24,7 @@
|
||||
|
||||
<!-- Header -->
|
||||
<header id="header" >
|
||||
<a href="http://localhost:4000//" class="logo"><strong>Evan Pratten</strong> <span>ewpratten</span></a>
|
||||
<a href="http://localhost:4000//" class="logo"><strong>Evan Pratten</strong> <span>retrylife</span></a>
|
||||
<nav>
|
||||
<!-- <a href="#menu">Menu</a> -->
|
||||
</nav>
|
||||
@ -52,11 +52,9 @@
|
||||
|
||||
|
||||
|
||||
<li><a href="http://localhost:4000/all_posts.html">All posts</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="http://localhost:4000/generic.html">Generic</a></li>
|
||||
<li><a href="http://localhost:4000/all_posts.html">All posts</a></li>
|
||||
|
||||
|
||||
|
||||
@ -105,9 +103,8 @@
|
||||
<li><a href="/feed.xml" class="icon alt fa-rss" target="_blank"><span class="label">RSS</span></a></li>
|
||||
</ul>
|
||||
<ul class="copyright">
|
||||
<li>© Evan Pratten ewpratten</li>
|
||||
<li>© Evan Pratten retrylife</li>
|
||||
<li>Design: <a href="https://html5up.net" target="_blank">HTML5 UP</a></li>
|
||||
<li>Jekyll integration: <a href="http://andrewbanchi.ch" target="_blank">Andrew Banchich</a></li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
1
_site/Backup/CNAME
Normal file
@ -0,0 +1 @@
|
||||
www.retrylife.ca
|
1
_site/Backup/README.md
Normal file
@ -0,0 +1 @@
|
||||
# retrylife.github.io
|
47
_site/Backup/about-mobile.html
Normal file
@ -0,0 +1,47 @@
|
||||
<head>
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
|
||||
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet'>
|
||||
<style>
|
||||
body {
|
||||
font-family: Roboto;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
</style>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div style="margin-left: 15%">
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="about" style=" width:90%;height:100%;">
|
||||
<div class="card" style="width: 90%;">
|
||||
<div class="card-block">
|
||||
<h4 class="card-title" style="font-size:100px">About Us</h4>
|
||||
<p class="card-text" style="font-size:60px">We are a group of young content creators who have joined together to create cool stuff for you guys to enjoy!</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div style="height:5%;"></div>
|
||||
|
||||
|
||||
<div style="height:0.5rem;"></div>
|
||||
<a href="people.html" class="btn btn-primary" style="font-size:75px;margin-left: 13%;">What we do</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<script src="https://code.jquery.com/jquery-3.1.1.slim.min.js" integrity="sha384-A7FZj7v+d/sdmMqp/nOQwliLvUsJfDHW+k9Omg/a/EheAdgtzNs3hpfag6Ed950n" crossorigin="anonymous"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js" integrity="sha384-DztdAPBWPRXSA/3eYEEUWrWCy7G5KFbe8fFjk5JAIxUYHKkDx6Qin1DkWx51bBrb" crossorigin="anonymous"></script>
|
||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/js/bootstrap.min.js" integrity="sha384-vBWWzlZJ8ea9aCX4pEW3rVHjgjt7zpkNpZk+02D9phzyeVkE+jo0ieGizqPLForn" crossorigin="anonymous"></script>
|
||||
|
||||
</div>
|
||||
</body>
|
30
_site/Backup/about.html
Normal file
@ -0,0 +1,30 @@
|
||||
<html><head>
|
||||
<link href="https://unpkg.com/picnic" rel="stylesheet">
|
||||
<title>RetryLife</title>
|
||||
<style>
|
||||
@font-face{
|
||||
font-family: "8-bit";
|
||||
src: url('./font.txt'),
|
||||
url('./font.txt'); /* IE */
|
||||
}
|
||||
body {
|
||||
font-family: "8-bit";
|
||||
}
|
||||
|
||||
</style>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="flex one three-600 demo">
|
||||
<div><span></span></div>
|
||||
<div style="text-align:center;" class="lll"><span>
|
||||
<br>
|
||||
<br>
|
||||
<h1>About Me</h1>
|
||||
<p style="text-align:left;font-size:medium;">Hi. I am the human behind this thing called RetryLife. There is a good chance that you have seen me somewhere on the internet. My username is usually <a href="https://twitter.com/ewpratten">@ewpratten</a> but sometimes I prefer to use a diffrent username because, why not? So.. what is RetryLife and why did I decide to invest my time into it? RetryLife is really just a name that I publish my work under. There is no set release schedule, and there is no video series as well. This is because I have to go to school and I also have other side projects that I work on. RetryL:ife is just a fun thing that I use to publish anything that is music / video related (as well as some code here and there). This is all I have to say here for now, but I will probably change the site soon.</p>
|
||||
|
||||
</span></div>
|
||||
<div><span></span></div>
|
||||
</div>
|
||||
|
||||
</body></html>
|
40
_site/Backup/button/index.html
Normal file
@ -0,0 +1,40 @@
|
||||
<html><head>
|
||||
<link href="https://unpkg.com/picnic" rel="stylesheet">
|
||||
<title>The Button</title>
|
||||
<style>
|
||||
@font-face{
|
||||
font-family: "8-bit";
|
||||
src: url('../font.txt'),
|
||||
url('../font.txt'); /* IE */
|
||||
}
|
||||
body {
|
||||
font-family: "8-bit";
|
||||
}
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="flex one three-600 demo">
|
||||
<div><span></span></div>
|
||||
<div style="text-align:center;" class="lll"><span>
|
||||
<br>
|
||||
<br>
|
||||
<h3>It's a button, click it</h3>
|
||||
|
||||
|
||||
<a href="https://twitter.com/intent/tweet?hashtags=RTLButton&ref_src=twsrc%5Etfw&related=ewpratten&text=I%20pressed%20the%20button!&tw_p=tweetbutton&url=http%3A%2F%2Fwww.retrylife.ca%2Fbutton"><button>Button</button></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</span></div>
|
||||
<div><span></span></div>
|
||||
</div>
|
||||
|
||||
</body></html>
|
80
_site/Backup/card.html
Normal file
@ -0,0 +1,80 @@
|
||||
|
||||
|
||||
<head>
|
||||
<link href="https://unpkg.com/picnic" rel="stylesheet">
|
||||
<title>ewpratten</title>
|
||||
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
|
||||
<style>
|
||||
@font-face{
|
||||
font-family: "8-bit";
|
||||
src: url('./font.txt'),
|
||||
url('./font.txt'); /* IE */
|
||||
}
|
||||
body {
|
||||
font-family: 'Roboto', sans-serif;
|
||||
background-color:#2e3440;
|
||||
color:#3b4252;
|
||||
}
|
||||
h1{
|
||||
font-size:230%;
|
||||
padding:1px;
|
||||
}
|
||||
.card{
|
||||
border:none;
|
||||
background-color:#4c566a;
|
||||
}
|
||||
.card-top{
|
||||
width:100%;
|
||||
height:20%;
|
||||
background-color:#4c566a;
|
||||
border:none;
|
||||
}
|
||||
.card-bottem{
|
||||
width:100%;
|
||||
height:80%;
|
||||
background-color:#d8dee9;
|
||||
text-align:center;
|
||||
border-radius:5px;
|
||||
}
|
||||
.pic2 {
|
||||
height:100%;
|
||||
display:flex;
|
||||
margin-left: auto;
|
||||
margin-right:auto;
|
||||
border-radius:100%;
|
||||
}
|
||||
.b1 {
|
||||
background-color:#5e81ac;
|
||||
font-size:190%;
|
||||
width:90%;
|
||||
}
|
||||
h2 {
|
||||
padding:1px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="flex one three-600 demo">
|
||||
<div><span></span></div>
|
||||
<div style="text-align:center;" class="lll"><span>
|
||||
<div class="card">
|
||||
<div class="card-top">
|
||||
<img class="pic2" src="profile.jpg">
|
||||
</div>
|
||||
<div class="card-bottem">
|
||||
<br>
|
||||
<h1>Evan Pratten</h1>
|
||||
<h2>@ewpratten</h2>
|
||||
<p>I am an average human who likes to make stuff.</p>
|
||||
<br><br>
|
||||
<a href="https://twitter.com/ewpratten"><button class="b1">Twitter</button></a><br>
|
||||
<a href="https://github.com/ewpratten"><button class="b1">GitHub</button></a><br>
|
||||
<a href="https://keybase.io/ewpratten"><button class="b1">Keybase</button></a><br>
|
||||
<a href="https://r.retrylife.ca"><button class="b1">RetryLife</button></a><br>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</span></div>
|
||||
<div><span></span></div>
|
||||
</div>
|
||||
</body>
|
8
_site/Backup/community/content/lostwarrior.json
Normal file
@ -0,0 +1,8 @@
|
||||
{
|
||||
"title": "The Lost Warrior",
|
||||
"author": "Nathan",
|
||||
"type": "img",
|
||||
"src": "http://art.ngfiles.com/images/477000/477954_glitchop_the-lost-warrior-2.png",
|
||||
"href": "http://www.newgrounds.com/art/view/glitchop/the-lost-warrior-2",
|
||||
"datetime": ""
|
||||
}
|
8
_site/Backup/community/content/steampunk.json
Normal file
@ -0,0 +1,8 @@
|
||||
{
|
||||
"title": "Steampunk Girl",
|
||||
"author": "Nathan",
|
||||
"type": "img",
|
||||
"src": "http://art.ngfiles.com/images/478000/478522_glitchop_steampunk-girl.png",
|
||||
"href": "http://www.newgrounds.com/art/view/glitchop/steampunk-girl",
|
||||
"datetime": ""
|
||||
}
|
8
_site/Backup/community/content/template.jsot
Normal file
@ -0,0 +1,8 @@
|
||||
{
|
||||
"title": "",
|
||||
"author": "",
|
||||
"type": "",
|
||||
"src": "",
|
||||
"href": "",
|
||||
"datetime": ""
|
||||
}
|
44
_site/Backup/community/getrss.php
Normal file
@ -0,0 +1,44 @@
|
||||
<?php
|
||||
function getContent() {
|
||||
//Thanks to https://davidwalsh.name/php-cache-function for cache idea
|
||||
$file = "./feed-cache.txt";
|
||||
$current_time = time();
|
||||
$expire_time = 5 * 60;
|
||||
$file_time = filemtime($file);
|
||||
if(file_exists($file) && ($current_time - $expire_time < $file_time)) {
|
||||
return file_get_contents($file);
|
||||
}
|
||||
else {
|
||||
$content = getFreshContent();
|
||||
file_put_contents($file, $content);
|
||||
return $content;
|
||||
}
|
||||
}
|
||||
function getFreshContent() {
|
||||
$html = "";
|
||||
$newsSource = array(
|
||||
array(
|
||||
"title" => "RetryLife-all",
|
||||
"url" => "http://www.rssmix.com/u/8252161/rss.xml"
|
||||
)
|
||||
|
||||
);
|
||||
function getFeed($url){
|
||||
$rss = simplexml_load_file($url);
|
||||
$count = 0;
|
||||
$html .= '<ul class="rantlist">';
|
||||
foreach($rss->channel->item as$item) {
|
||||
$count++;
|
||||
if($count > 1000){
|
||||
break;
|
||||
}
|
||||
$html .= '><a href="'.htmlspecialchars($item->link).'"><li class="rant-comment-row-widget" data-id="829770" data-type="rant" style="background-color:#243447;color:white;"><div class="rantlist-title-text" > '.htmlspecialchars($item->description).'</div></li>';
|
||||
|
||||
}
|
||||
$html .= '</ul>';
|
||||
return $html;
|
||||
}
|
||||
return $html;
|
||||
}
|
||||
print getContent();
|
||||
?>
|
136
_site/Backup/community/index.html
Normal file
@ -0,0 +1,136 @@
|
||||
<html lang="en"><head>
|
||||
<meta charset="utf-8">
|
||||
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||
<meta name="viewport" content="width=device-width, minimumscale=1.0, maximum-scale=1.0">
|
||||
|
||||
|
||||
<title>RetryLife Community</title>
|
||||
|
||||
<style>
|
||||
body {
|
||||
font-family: Roboto;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background-image: url("../img/Background.png");
|
||||
background-size: 100% 100%;
|
||||
background-attachment: fixed;
|
||||
|
||||
}
|
||||
.rant-top-bar {
|
||||
background-color:white;
|
||||
}
|
||||
</style>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Comfortaa" rel="stylesheet" type="text/css">
|
||||
|
||||
<link href="./style.css" rel="stylesheet" type="text/css">
|
||||
<link href="https://devrant.io/static/devrant/css/font-style.css?v=5" rel="stylesheet" type="text/css">
|
||||
|
||||
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script>
|
||||
|
||||
|
||||
<script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>
|
||||
|
||||
</head>
|
||||
<body >
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="container">
|
||||
|
||||
<div class="interior-centered">
|
||||
<div class="interior-content" style="min-height: 804px;background-color:white;">
|
||||
|
||||
<div class="body-col1">
|
||||
<div class="body-col1-content">
|
||||
|
||||
<div style="background-color:#243447;padding:15px;border-radius:10px;color:white;">
|
||||
<img src="https://pbs.twimg.com/profile_images/884167837891342336/F8JOfFAf_400x400.jpg">
|
||||
<h1>RetryLife</h1>
|
||||
<p>Canada</p>
|
||||
<br>
|
||||
<br>
|
||||
|
||||
<div style="padding:6px; background-color:#1ca2f2; border-radius:8px;">
|
||||
<a href="https://twitter.com/retrylife_music" class="twitter-follow-button" data-show-count="false">Follow @retrylife_music</a>
|
||||
</div>
|
||||
<br>
|
||||
<div style="padding:6px; background-color:#1ca2f2; border-radius:8px;">
|
||||
<a href="https://twitter.com/ewpratten" class="twitter-follow-button" data-show-count="false">Follow @ewpratten</a>
|
||||
</div>
|
||||
<br>
|
||||
<div style="padding:6px; background-color:#1ca2f2; border-radius:8px;">
|
||||
<a href="https://twitter.com/nsdesjardins345" class="twitter-follow-button" data-show-count="false">Follow @nsdesjardins345</a>
|
||||
</div>
|
||||
<br>
|
||||
<div style="padding:6px; background-color:#ff0000; border-radius:8px;">
|
||||
<a href="https://www.youtube.com/channel/UCrHT3Lt0Mg90bspbMHJfTcA?sub_confirmation=1">Subscribe to RetryLife Official</a>
|
||||
</div>
|
||||
<br>
|
||||
<div style="padding:6px; background-color:#ff0000; border-radius:8px;">
|
||||
<a href="https://www.youtube.com/channel/UCxzARKt0_U0sLHbF4pDN1Pw?sub_confirmation=1">Subscribe to Nathan Desjardins</a>
|
||||
</div>
|
||||
<br>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="body-col2 page-feed">
|
||||
|
||||
|
||||
|
||||
<div class="rantlist-bg">
|
||||
<ul class="rantlist">
|
||||
|
||||
<?php
|
||||
$i = 0; // counter
|
||||
$url = "http://www.rssmix.com/u/8252161/rss.xml"; // url to parse
|
||||
$rss = simplexml_load_file($url); // XML parser
|
||||
|
||||
// RSS items loop
|
||||
|
||||
print '<h2><img style="vertical-align: middle;" src="'.$rss->channel->image->url.'" /> '.$rss->channel->title.'</h2>'; // channel title + img with src
|
||||
|
||||
foreach($rss->channel->item as $item) {
|
||||
if ($i < 1000) { // parse only 10 items
|
||||
print '<a href="'.$item->link.'"><li class="rant-comment-row-widget" data-id="829770" data-type="rant" style="background-color:#243447;color:white;"><div class="rantlist-title-text" > '.$item->description.'</div></li></a>';
|
||||
}
|
||||
|
||||
$i++;
|
||||
}
|
||||
?>
|
||||
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
<div class="clearfix"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div> <!-- end container -->
|
||||
|
||||
|
||||
|
||||
</body></html>
|
237
_site/Backup/community/index.php
Normal file
@ -0,0 +1,237 @@
|
||||
<html lang="en"><head>
|
||||
<meta charset="utf-8">
|
||||
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||
<meta name="viewport" content="width=device-width, minimumscale=1.0, maximum-scale=1.0">
|
||||
|
||||
|
||||
<title>RetryLife Community</title>
|
||||
|
||||
<style>
|
||||
body {
|
||||
font-family: Roboto;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background-image: url("../img/Background.png");
|
||||
background-size: 100% 100%;
|
||||
background-attachment: fixed;
|
||||
|
||||
}
|
||||
.rant-top-bar {
|
||||
background-color:white;
|
||||
}
|
||||
</style>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Comfortaa" rel="stylesheet" type="text/css">
|
||||
|
||||
<link href="./style.css" rel="stylesheet" type="text/css">
|
||||
<link href="https://devrant.io/static/devrant/css/font-style.css?v=5" rel="stylesheet" type="text/css">
|
||||
|
||||
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script>
|
||||
|
||||
|
||||
<script src="/widgets.js" async></script>
|
||||
|
||||
</head>
|
||||
<body >
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="container">
|
||||
|
||||
<div class="interior-centered">
|
||||
<div class="interior-content" style="min-height: 804px;background-color:white;">
|
||||
|
||||
<div class="body-col1">
|
||||
<div class="body-col1-content">
|
||||
|
||||
<div style="background-color:#243447;padding:15px;border-radius:10px;color:white;">
|
||||
<img src="https://pbs.twimg.com/profile_images/884167837891342336/F8JOfFAf_400x400.jpg">
|
||||
<h1>RetryLife</h1>
|
||||
<p>Canada</p>
|
||||
<br>
|
||||
<br>
|
||||
|
||||
<div style="padding:6px; background-color:#1ca2f2; border-radius:8px;">
|
||||
<a href="https://twitter.com/retrylife_music" class="twitter-follow-button" data-show-count="false">Follow @retrylife_music</a>
|
||||
</div>
|
||||
<br>
|
||||
<div style="padding:6px; background-color:#1ca2f2; border-radius:8px;">
|
||||
<a href="https://twitter.com/ewpratten" class="twitter-follow-button" data-show-count="false">Follow @ewpratten</a>
|
||||
</div>
|
||||
<br>
|
||||
<div style="padding:6px; background-color:#1ca2f2; border-radius:8px;">
|
||||
<a href="https://twitter.com/nsdesjardins345" class="twitter-follow-button" data-show-count="false">Follow @nsdesjardins345</a>
|
||||
</div>
|
||||
<br>
|
||||
<div style="padding:6px; background-color:#ff0000; border-radius:8px;">
|
||||
<a href="https://www.youtube.com/channel/UCrHT3Lt0Mg90bspbMHJfTcA?sub_confirmation=1">Subscribe to RetryLife Official</a>
|
||||
</div>
|
||||
<br>
|
||||
<div style="padding:6px; background-color:#ff0000; border-radius:8px;">
|
||||
<a href="https://www.youtube.com/channel/UCxzARKt0_U0sLHbF4pDN1Pw?sub_confirmation=1">Subscribe to Nathan Desjardins</a>
|
||||
</div>
|
||||
<br>
|
||||
|
||||
</div>
|
||||
<br>
|
||||
|
||||
<div style="background-color:#243447;padding:15px;border-radius:10px;color:white;">
|
||||
<?php
|
||||
require_once('login/twitteroauth/OAuth.php');
|
||||
require_once('login/twitteroauth/twitteroauth.php');
|
||||
// define the consumer key and secet and callback
|
||||
define('CONSUMER_KEY', 'YOUR_CONSUMER_KEY');
|
||||
define('CONSUMER_SECRET', 'YOUR_CONSUMER_SECRET');
|
||||
define('OAUTH_CALLBACK', 'YOUR_CONSUMER_CALLBACK_URL');
|
||||
// start the session
|
||||
session_start();
|
||||
|
||||
/*
|
||||
* PART 2 - PROCESS
|
||||
* 1. check for logout
|
||||
* 2. check for user session
|
||||
* 3. check for callback
|
||||
*/
|
||||
|
||||
// 1. to handle logout request
|
||||
if(isset($_GET['logout'])){
|
||||
//unset the session
|
||||
session_unset();
|
||||
// redirect to same page to remove url paramters
|
||||
$redirect = 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF'];
|
||||
header('Location: ' . filter_var($redirect, FILTER_SANITIZE_URL));
|
||||
}
|
||||
|
||||
|
||||
// 2. if user session not enabled get the login url
|
||||
if(!isset($_SESSION['data']) && !isset($_GET['oauth_token'])) {
|
||||
// create a new twitter connection object
|
||||
$connection = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET);
|
||||
// get the token from connection object
|
||||
$request_token = $connection->getRequestToken(OAUTH_CALLBACK);
|
||||
// if request_token exists then get the token and secret and store in the session
|
||||
if($request_token){
|
||||
$token = $request_token['oauth_token'];
|
||||
$_SESSION['request_token'] = $token ;
|
||||
$_SESSION['request_token_secret'] = $request_token['oauth_token_secret'];
|
||||
// get the login url from getauthorizeurl method
|
||||
$login_url = $connection->getAuthorizeURL($token);
|
||||
}
|
||||
}
|
||||
|
||||
// 3. if its a callback url
|
||||
if(isset($_GET['oauth_token'])){
|
||||
// create a new twitter connection object with request token
|
||||
$connection = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET, $_SESSION['request_token'], $_SESSION['request_token_secret']);
|
||||
// get the access token from getAccesToken method
|
||||
$access_token = $connection->getAccessToken($_REQUEST['oauth_verifier']);
|
||||
if($access_token){
|
||||
// create another connection object with access token
|
||||
$connection = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET, $access_token['oauth_token'], $access_token['oauth_token_secret']);
|
||||
// set the parameters array with attributes include_entities false
|
||||
$params =array('include_entities'=>'false');
|
||||
// get the data
|
||||
$data = $connection->get('account/verify_credentials',$params);
|
||||
if($data){
|
||||
// store the data in the session
|
||||
$_SESSION['data']=$data;
|
||||
// redirect to same page to remove url parameters
|
||||
$redirect = 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF'];
|
||||
header('Location: ' . filter_var($redirect, FILTER_SANITIZE_URL));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* PART 3 - FRONT END
|
||||
* - if userdata available then print data
|
||||
* - else display the login url
|
||||
*/
|
||||
|
||||
if(isset($login_url) && !isset($_SESSION['data'])){
|
||||
// echo the login url
|
||||
echo "<a href='$login_url'><button>Login with twitter </button></a>";
|
||||
}
|
||||
else{
|
||||
// get the data stored from the session
|
||||
$data = $_SESSION['data'];
|
||||
// echo the name username and photo
|
||||
echo "Name : ".$data->name."<br>";
|
||||
echo "Username : ".$data->screen_name."<br>";
|
||||
echo "Photo : <img src='".$data->profile_image_url."'/><br><br>";
|
||||
// echo the logout button
|
||||
echo "<a href='?logout=true'><button>Logout</button></a>";
|
||||
// echo content box if user is approved
|
||||
if($data->screen_name == "ewpratten"){
|
||||
echo '<?php
|
||||
if (!empty($_GET[';
|
||||
echo "'act'";
|
||||
echo '])) {
|
||||
|
||||
echo "Hello world!"; //Your code here
|
||||
} else {
|
||||
?>
|
||||
(.. your html ..)
|
||||
<form action="index.php" method="get">
|
||||
<input type="hidden" name="act" value="run">
|
||||
<input type="submit" value="Creator Page">
|
||||
</form>
|
||||
<?php
|
||||
}
|
||||
?>';
|
||||
}
|
||||
}
|
||||
?>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="body-col2 page-feed">
|
||||
|
||||
|
||||
|
||||
<div class="rantlist-bg">
|
||||
<ul class="rantlist">
|
||||
|
||||
|
||||
<a class="twitter-timeline" data-dnt="true" data-theme="dark" href="https://twitter.com/RetryLife_Music">Tweets by RetryLife_Music</a> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
|
||||
|
||||
<a class="twitter-timeline" data-dnt="true" data-theme="dark" href="https://twitter.com/nsdesjardins345">Tweets by RetryLife_Music</a> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
|
||||
|
||||
|
||||
<a class="twitter-timeline" data-dnt="true" data-theme="dark" href="https://twitter.com/ewpratten">Tweets by RetryLife_Music</a> <script async src="Https://platform.twitter.com/widgets.js" charset="utf-8"></script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
<div class="clearfix"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div> <!-- end container -->
|
||||
|
||||
|
||||
|
||||
</body></html>
|
25
_site/Backup/community/json.js
Normal file
@ -0,0 +1,25 @@
|
||||
var txt = '';
|
||||
var xmlhttp = new XMLHttpRequest();
|
||||
xmlhttp.onreadystatechange = function(){
|
||||
if(xmlhttp.status == 200 && xmlhttp.readyState == 4){
|
||||
txt = xmlhttp.responseText;
|
||||
}
|
||||
};
|
||||
xmlhttp.open("GET","./content/test.json",false);
|
||||
xmlhttp.send();
|
||||
console.log(txt)
|
||||
var json = JSON.parse(txt);
|
||||
alert(json.src);
|
||||
|
||||
if (json.type == "img") {
|
||||
var contenttype = "img"
|
||||
} else {
|
||||
var contenttype = "iframe"
|
||||
}
|
||||
|
||||
var options = ' src = "';
|
||||
var options = options.concat(json.src);
|
||||
var options = options.concat('"');
|
||||
var content = document.createElement(contenttype,[options]);
|
||||
|
||||
document.body.appendChild(content)
|
27
_site/Backup/community/phpjsonloader.php
Normal file
@ -0,0 +1,27 @@
|
||||
<?php
|
||||
|
||||
$files = glob('content/*.{json}', GLOB_BRACE);
|
||||
foreach($files as $file) {
|
||||
//do your work here
|
||||
|
||||
|
||||
$url = $file;
|
||||
$content = file_get_contents($url);
|
||||
$json = json_decode($content, true);
|
||||
echo '<li class="rant-comment-row-widget" data-id="829770" data-type="rant" style="background-color:#243447;color:white;"><div class="rantlist-title-text" >';
|
||||
echo $json{title};
|
||||
echo " - ";
|
||||
echo $json{author};
|
||||
echo '</div> <';
|
||||
echo $json{type};
|
||||
echo ' src="';
|
||||
echo $json{src}; echo '" href="';
|
||||
echo $json{href};
|
||||
echo '" width=100%>';
|
||||
echo $json{body};
|
||||
echo '</';
|
||||
echo $json{type};
|
||||
echo '>';
|
||||
echo '</li>';
|
||||
}
|
||||
?>
|
2754
_site/Backup/community/style.css
Normal file
1
_site/Backup/composer.json
Normal file
@ -0,0 +1 @@
|
||||
{}
|
1
_site/Backup/content/featured.html
Normal file
@ -0,0 +1 @@
|
||||
<iframe style="border: 0; width: 99%; height: 95%;" src="https://bandcamp.com/EmbeddedPlayer/album=3082028873/size=large/bgcol=ffffff/linkcol=0687f5/artwork=small/transparent=true/" seamless><a href="http://retrylife.bandcamp.com/album/sir-dankleys-mlg-restaurant">Sir Dankley's MLG Restaurant by RetryLife</a></iframe>
|
1
_site/Backup/content/newrelease.html
Normal file
@ -0,0 +1 @@
|
||||
<iframe style="border: 0; width: 99%; height: 95%;" src="https://bandcamp.com/EmbeddedPlayer/album=3082028873/size=large/bgcol=ffffff/linkcol=0687f5/artwork=small/transparent=true/" seamless><a href="http://retrylife.bandcamp.com/album/sir-dankleys-mlg-restaurant">Sir Dankley's MLG Restaurant by RetryLife</a></iframe>
|
1
_site/Backup/content/t
Normal file
@ -0,0 +1 @@
|
||||
t
|
54
_site/Backup/desktop/index.html
Normal file
@ -0,0 +1,54 @@
|
||||
<head>
|
||||
<title>RetryLife</title>
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
|
||||
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet'>
|
||||
<link rel="shortcut icon" type="image/x-icon" href="../favicon.ico" />
|
||||
<style>
|
||||
body {
|
||||
font-family: Roboto;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background-image: url("../img/Background.png");
|
||||
background-size: 100% 100%;
|
||||
|
||||
}
|
||||
</style>
|
||||
|
||||
</head>
|
||||
|
||||
<body >
|
||||
<div class="content">
|
||||
<div style="float:left;width: 38%;height:100%;">
|
||||
<div style="height:30%"></div>
|
||||
<h1 style="float:left;margin-left:26%;font-size:80px;">RetryLife</h1>
|
||||
<div style="height:20%"></div>
|
||||
|
||||
|
||||
|
||||
<div class="btn-group btn-group-lg" role="group" aria-label="..." style="float:left;margin-left:25%;font-size:80px;">
|
||||
|
||||
<a target="main" href="../music/index.html"><button type="button" class="btn btn-info">Music</button></a>
|
||||
<div style="width:10%;color:rgba(255, 255, 255, 0)">-</div>
|
||||
<a target="main" href="../youtube.html"><button type="button" class="btn btn-primary">Youtube</button></a>
|
||||
<div style="width:10%;color:rgba(255, 255, 255, 0);">-</div>
|
||||
<a href="https://www.patreon.com/bePatron?u=7175648"><button type="button" class="btn btn-info">Support Us</button></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
<div style="float:right;width: 62%;height:100%;padding:4%;">
|
||||
<iframe name="main" frameBorder="0" style="margin-left:21%;height:100%;width:75%;" src="../about.html" allowtransparency="true"></iframe>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<script src="https://code.jquery.com/jquery-3.1.1.slim.min.js" integrity="sha384-A7FZj7v+d/sdmMqp/nOQwliLvUsJfDHW+k9Omg/a/EheAdgtzNs3hpfag6Ed950n" crossorigin="anonymous"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js" integrity="sha384-DztdAPBWPRXSA/3eYEEUWrWCy7G5KFbe8fFjk5JAIxUYHKkDx6Qin1DkWx51bBrb" crossorigin="anonymous"></script>
|
||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/js/bootstrap.min.js" integrity="sha384-vBWWzlZJ8ea9aCX4pEW3rVHjgjt7zpkNpZk+02D9phzyeVkE+jo0ieGizqPLForn" crossorigin="anonymous"></script>
|
||||
|
||||
</body>
|
8
_site/Backup/desktop/load.html
Normal file
@ -0,0 +1,8 @@
|
||||
<div id = "myDiv"><img id = "myImage" src = "../img/load.gif" style="width:100%;"></div><br>
|
||||
|
||||
<script type = "text/javascript">
|
||||
setTimeout(function(){
|
||||
document.getElementById("myDiv").style.display="none";
|
||||
}, 6000);
|
||||
document.location = "./index.html";
|
||||
</script>
|
32
_site/Backup/donate/index.html
Normal file
29
_site/Backup/error.html
Normal file
@ -0,0 +1,29 @@
|
||||
<html><head>
|
||||
<link href="https://unpkg.com/picnic" rel="stylesheet">
|
||||
<title>RetryLife</title>
|
||||
<style>
|
||||
@font-face{
|
||||
font-family: "8-bit";
|
||||
src: url('http://www.retrylife.ca/font.txt'),
|
||||
url('./font.txt'); /* IE */
|
||||
}
|
||||
body {
|
||||
font-family: "8-bit";
|
||||
}
|
||||
|
||||
</style>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="flex one three-600 demo">
|
||||
<div><span></span></div>
|
||||
<div style="text-align:center;" class="lll"><span>
|
||||
<br>
|
||||
<br>
|
||||
<h1>An Error Occurred</h1>
|
||||
<p>Try checking the spelling of the link you followed. Or <a href="./index.html">Go Back</a></p>
|
||||
</span></div>
|
||||
<div><span></span></div>
|
||||
</div>
|
||||
|
||||
</body></html>
|
BIN
_site/Backup/favicon.ico
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
_site/Backup/font.ttf
Normal file
BIN
_site/Backup/font.txt
Normal file
3
_site/Backup/humans.txt
Normal file
@ -0,0 +1,3 @@
|
||||
/* Team */
|
||||
Developed by: Evan Pratten
|
||||
Art by: Nathan Desjardins
|
BIN
_site/Backup/img/Background.png
Normal file
After Width: | Height: | Size: 3.4 MiB |
1
_site/Backup/img/Rd
Normal file
@ -0,0 +1 @@
|
||||
Ignore
|
BIN
_site/Backup/img/load.gif
Normal file
After Width: | Height: | Size: 125 KiB |
BIN
_site/Backup/img/nds.png
Normal file
After Width: | Height: | Size: 82 KiB |
BIN
_site/Backup/img/rtl.png
Normal file
After Width: | Height: | Size: 68 KiB |
69
_site/Backup/index.html
Normal file
@ -0,0 +1,69 @@
|
||||
|
||||
<head>
|
||||
<link href="https://unpkg.com/picnic" rel="stylesheet">
|
||||
<title>RetryLife</title>
|
||||
<style>
|
||||
@font-face{
|
||||
font-family: "8-bit";
|
||||
src: url('./font.txt'),
|
||||
url('./font.txt'); /* IE */
|
||||
}
|
||||
body {
|
||||
font-family: "8-bit";
|
||||
}
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="flex one three-600 demo">
|
||||
<div><span></span></div>
|
||||
<div style="text-align:center;" class="lll"><span>
|
||||
<br>
|
||||
<br>
|
||||
<h1>RetryLife</h1>
|
||||
<p id="demo">21d 12h 19m 33s </p>
|
||||
<a href="Http://retrylife.bandcamp.com"><h2>Music</h2></a>
|
||||
<a href="https://www.youtube.com/channel/UCrHT3Lt0Mg90bspbMHJfTcA"><h2>YouTube</h2></a>
|
||||
<a href="https://twitch.tv/retrylife/"><h2>Twitch</h2></a>
|
||||
<a href="https://ewpratten.deviantart.com/"><h2>DeviantArt</h2></a>
|
||||
<a href="https://devcredits.herokuapp.com/"><h2>devCredits</h2></a>
|
||||
<a href="http://www.retrylife.ca/button/"><h2>The Button</h2></a>
|
||||
<a href="https://github.com/Ewpratten"><h2>Github</h2></a>
|
||||
<a href="https://keybase.io/ewpratten"><h2>Keybase</h2></a>
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
// Set the date we're counting down to
|
||||
var countDownDate = new Date("Dec 25, 2017 9:0:0").getTime();
|
||||
|
||||
// Update the count down every 1 second
|
||||
var x = setInterval(function() {
|
||||
|
||||
// Get todays date and time
|
||||
var now = new Date().getTime();
|
||||
|
||||
// Find the distance between now an the count down date
|
||||
var distance = countDownDate - now;
|
||||
|
||||
// Time calculations for days, hours, minutes and seconds
|
||||
var days = Math.floor(distance / (1000 * 60 * 60 * 24));
|
||||
var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
|
||||
var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
|
||||
var seconds = Math.floor((distance % (1000 * 60)) / 1000);
|
||||
|
||||
// Output the result in an element with id="demo"
|
||||
document.getElementById("demo").innerHTML = days + "d " + hours + "h "
|
||||
+ minutes + "m " + seconds + "s ";
|
||||
|
||||
// If the count down is over, write some text
|
||||
if (distance < 0) {
|
||||
clearInterval(x);
|
||||
document.getElementById("demo").innerHTML = "";
|
||||
}
|
||||
}, 1000);
|
||||
</script>
|
||||
</span></div>
|
||||
<div><span></span></div>
|
||||
</div>
|
||||
</body>
|
369
_site/Backup/index2.html
Normal file
@ -0,0 +1,369 @@
|
||||
<html class="js flexbox canvas canvastext webgl touch geolocation postmessage websqldatabase indexeddb hashchange history draganddrop websockets rgba hsla multiplebgs backgroundsize borderimage borderradius boxshadow textshadow opacity cssanimations csscolumns cssgradients cssreflections csstransforms csstransforms3d csstransitions fontface generatedcontent video audio localstorage sessionstorage webworkers applicationcache svg inlinesvg smil svgclippaths wf-opensans-i3-active wf-opensans-i8-active wf-opensans-n4-active wf-opensans-n3-active wf-opensans-n6-active wf-opensans-n7-active wf-opensans-n8-active wf-montserrat-n4-active wf-montserrat-n7-active wf-active" lang="en" style=""><head><style type="text/css">.gm-style .gm-style-mtc label,.gm-style .gm-style-mtc div{font-weight:400}
|
||||
</style><link type="text/css" rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700"><style type="text/css">.gm-style .gm-style-cc span,.gm-style .gm-style-cc a,.gm-style .gm-style-mtc div{font-size:10px}
|
||||
</style><style type="text/css">@media print { .gm-style .gmnoprint, .gmnoprint { display:none }}@media screen { .gm-style .gmnoscreen, .gmnoscreen { display:none }}</style><style type="text/css">.gm-style-pbc{transition:opacity ease-in-out;background-color:rgba(0,0,0,0.45);text-align:center}.gm-style-pbt{font-size:22px;color:white;font-family:Roboto,Arial,sans-serif;position:relative;margin:0;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}
|
||||
</style>
|
||||
<script type="text/javascript" id="www-widgetapi-script" src="https://s.ytimg.com/yts/jsbin/www-widgetapi-vflxHXqxJ/www-widgetapi.js" async=""></script><script type="text/javascript" id="www-widgetapi-script" src="https://s.ytimg.com/yts/jsbin/www-widgetapi-vflv4EGJj/www-widgetapi.js" async=""></script><script type="text/javascript" id="www-widgetapi-script" src="https://s.ytimg.com/yts/jsbin/www-widgetapi-vflv4EGJj/www-widgetapi.js" async=""></script><script type="text/javascript" id="www-widgetapi-script" src="https://s.ytimg.com/yts/jsbin/www-widgetapi-vflv4EGJj/www-widgetapi.js" async=""></script><script type="text/javascript" id="www-widgetapi-script" src="https://s.ytimg.com/yts/jsbin/www-widgetapi-vflv4EGJj/www-widgetapi.js" async=""></script>
|
||||
<script type="text/javascript" id="www-widgetapi-script" src="https://s.ytimg.com/yts/jsbin/www-widgetapi-vflv4EGJj/www-widgetapi.js" async=""></script><script type="text/javascript" id="www-widgetapi-script" src="https://s.ytimg.com/yts/jsbin/www-widgetapi-vflv4EGJj/www-widgetapi.js" async=""></script><script src="https://www.youtube.com/iframe_api?v=2.9.3" id="YTAPI"></script>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>RetryLife</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Favicon -->
|
||||
<link rel="shortcut icon" href="favicon.ico">
|
||||
<!-- Bootstrap -->
|
||||
<link rel="stylesheet" href="http://themes.89elements.com/definity-html/assets/styles/vendor/bootstrap.min.css">
|
||||
<!-- Fonts -->
|
||||
<link rel="stylesheet" href="http://themes.89elements.com/definity-html/assets/fonts/et-lineicons/css/style.css">
|
||||
<link rel="stylesheet" href="http://themes.89elements.com/definity-html/assets/fonts/linea-font/css/linea-font.css">
|
||||
<link rel="stylesheet" href="http://themes.89elements.com/definity-html/assets/fonts/fontawesome/css/font-awesome.min.css">
|
||||
<!-- Slider -->
|
||||
<link rel="stylesheet" href="http://themes.89elements.com/definity-html/assets/styles/vendor/slick.css">
|
||||
<!-- Lightbox -->
|
||||
<link rel="stylesheet" href="http://themes.89elements.com/definity-html/assets/styles/vendor/magnific-popup.css">
|
||||
<!-- Animate.css -->
|
||||
<link rel="stylesheet" href="http://themes.89elements.com/definity-html/assets/styles/vendor/animate.css">
|
||||
|
||||
|
||||
<!-- Definity CSS -->
|
||||
<link rel="stylesheet" href="http://themes.89elements.com/definity-html/assets/styles/main.css">
|
||||
<link rel="stylesheet" href="http://themes.89elements.com/definity-html/assets/styles/responsive.css">
|
||||
|
||||
<!-- JS -->
|
||||
<script src="http://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js" type="text/javascript" async=""></script><script async="" src="//www.googletagmanager.com/gtm.js?id=GTM-MH7TSF"></script><script src="assets/js/vendor/modernizr-2.8.3.min.js"></script><link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans:300italic,800italic,400,300,600,700,800%7CMontserrat:400,700&subset=latin,latin" media="all">
|
||||
<script type="text/javascript" charset="UTF-8" src="https://maps.googleapis.com/maps-api-v3/api/js/30/5/common.js"></script><script type="text/javascript" charset="UTF-8" src="https://maps.googleapis.com/maps-api-v3/api/js/30/5/util.js"></script><script type="text/javascript" charset="UTF-8" src="https://maps.googleapis.com/maps-api-v3/api/js/30/5/stats.js"></script><script type="text/javascript" charset="UTF-8" src="https://maps.googleapis.com/maps-api-v3/api/js/30/5/map.js"></script><script type="text/javascript" charset="UTF-8" src="https://maps.googleapis.com/maps-api-v3/api/js/30/5/marker.js"></script><style type="text/css">.gm-style {
|
||||
font: 400 11px Roboto, Arial, sans-serif;
|
||||
text-decoration: none;
|
||||
}
|
||||
.gm-style img { max-width: none; }</style><script type="text/javascript" charset="UTF-8" src="https://maps.googleapis.com/maps-api-v3/api/js/30/5/onion.js"></script><script type="text/javascript" charset="UTF-8" src="https://maps.googleapis.com/maps-api-v3/api/js/30/5/controls.js"></script><script type="text/javascript" charset="UTF-8" src="https://maps.googleapis.com/maps-api-v3/api/js/30/5/common.js"></script><script type="text/javascript" charset="UTF-8" src="https://maps.googleapis.com/maps-api-v3/api/js/30/5/util.js"></script><script type="text/javascript" charset="UTF-8" src="https://maps.googleapis.com/maps-api-v3/api/js/30/5/stats.js"></script><style id="__web-inspector-hide-shortcut-style__" type="text/css">
|
||||
.__web-inspector-hide-shortcut__, .__web-inspector-hide-shortcut__ *, .__web-inspector-hidebefore-shortcut__::before, .__web-inspector-hideafter-shortcut__::after
|
||||
{
|
||||
visibility: hidden !important;
|
||||
}
|
||||
</style></head>
|
||||
<body id="page-top" data-spy="scroll" data-target=".navbar">
|
||||
<!--[if lt IE 8]>
|
||||
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
|
||||
<![endif]-->
|
||||
|
||||
|
||||
<div class="preloader" style="display: none;">
|
||||
<img src="assets/images/loader.svg" alt="Loading..." style="display: none;">
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<!-- ========== Navigation ========== -->
|
||||
|
||||
<nav class="navbar navbar-default navbar-fixed-top trans-helper navbar-fw navbar-trans navbar-trans-dark" role="navigation">
|
||||
|
||||
|
||||
</nav><!-- / .navbar -->
|
||||
|
||||
|
||||
|
||||
<!-- ========== Hero Cover ========== -->
|
||||
|
||||
<div id="home" class="main-demo-hero">
|
||||
<div class="bg-overlay">
|
||||
|
||||
<!-- Hero Content -->
|
||||
<div class="hero-content-wrapper" style="background-color: rgba(0, 203, 117, 0.18);bacoground-image:url();">
|
||||
<div class="hero-content">
|
||||
|
||||
<h1 class="hero-lead wow fadeInLeft" data-wow-duration="1.5s" style="visibility: visible; animation-duration: 1.5s; animation-name: fadeInLeft;">RetryLife</h1>
|
||||
<h4 class="h-alt hero-subheading wow fadeIn" data-wow-duration="2s" data-wow-delay=".7s" style="visibility: visible; animation-duration: 2s; animation-delay: 0.7s; animation-name: fadeIn;">Video, Music, Animation, Graphic Design</h4>
|
||||
<a href="#welcome" class="btn wow fadeIn" data-wow-duration="2s" data-wow-delay="1s" style="visibility: visible; animation-duration: 2s; animation-delay: 1s; animation-name: fadeIn;">Let's Go</a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Scroller -->
|
||||
|
||||
|
||||
</div><!-- / .bg-overlay -->
|
||||
</div><!-- / .main-hero-2 -->
|
||||
|
||||
|
||||
|
||||
<!-- ========== Welcome ========== -->
|
||||
|
||||
<section id="welcome" class="container">
|
||||
<div class="row">
|
||||
|
||||
<div class="ws-l"></div>
|
||||
|
||||
<header class="sec-heading">
|
||||
<h2>Welcome</h2>
|
||||
<span class="subheading">Imagine. Create. Share.</span>
|
||||
</header>
|
||||
|
||||
<div class="col-md-offset-2 col-md-8 text-center ws-m">
|
||||
<p>Welcome to RetryLife, a group of close friends who have a passion for creating interesting content of many diffrent varieties. This website is where you can come to find all of our published work. </p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div><!-- / .row -->
|
||||
</section><!-- / .section -->
|
||||
|
||||
|
||||
|
||||
<div class="cta-link">
|
||||
<div class="bg-overlay">
|
||||
|
||||
<div class="cta-wrapper">
|
||||
<h3 class="h-alt wow fadeIn" data-wow-delay=".1s" data-wow-duration="1s" style="visibility: visible; animation-duration: 1s; animation-delay: 0.1s; animation-name: fadeIn;">Want to support us?</h3>
|
||||
<a href="https://www.patreon.com/bePatron?u=7175648" class="btn btn-light btn-large wow fadeIn" data-wow-delay=".3s" data-wow-duration="1s" style="visibility: visible; animation-duration: 1s; animation-delay: 0.3s; animation-name: fadeIn;" data-patreon-widget-type="become-patron-button">Become A Patron</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div><!-- ========== Services ========== -->
|
||||
|
||||
<div class="gray-bg">
|
||||
<section id="services" class="container ft-cards">
|
||||
<div class="row section">
|
||||
|
||||
<header class="sec-heading">
|
||||
<h2>What we do</h2>
|
||||
|
||||
</header>
|
||||
|
||||
<!-- Item 1 -->
|
||||
<div class="col-lg-4 col-md-6 mb-sm-50">
|
||||
<div class="ft-item wow fadeInUp" data-wow-duration="1s" style="visibility: visible; animation-duration: 1s; animation-name: fadeInUp;">
|
||||
|
||||
<h4>Music</h4>
|
||||
<p>We work together to produce cool music and also colaborate with many people.</p>
|
||||
<a href="http://retrylife.bandcamp.com">Learn more </a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Item 2 -->
|
||||
<div class="col-lg-4 col-md-6 mb-sm-50">
|
||||
<div class="ft-item wow fadeInUp" data-wow-duration="1s" data-wow-delay=".3s" style="visibility: visible; animation-duration: 1s; animation-delay: 0.3s; animation-name: fadeInUp;">
|
||||
|
||||
<h4>Video</h4>
|
||||
<p>We are constently trying out new video formats to bring content to our fans.</p>
|
||||
<a href="#portfolio">Learn more </a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Item 3 -->
|
||||
<div class="col-lg-4 col-md-6 mb-sm-50">
|
||||
<div class="ft-item wow fadeInUp" data-wow-duration="1s" data-wow-delay=".6s" style="visibility: visible; animation-duration: 1s; animation-delay: 0.6s; animation-name: fadeInUp;">
|
||||
|
||||
<h4>Graphic Design</h4>
|
||||
<p>We produce many high quality graphics and digital art peices.</p>
|
||||
<a href="http://glitchop.newgrounds.com">Learn more </a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div><!-- / .row -->
|
||||
</section>
|
||||
</div><!-- / .gray-bg -->
|
||||
|
||||
|
||||
|
||||
<!-- ========== Number Counters - Parallax ========== -->
|
||||
|
||||
<div class="number-counters" style="background-color:#1f2021;background-image: url(">
|
||||
<div class="container">
|
||||
<div id="counters" class="row count-wrapper">
|
||||
|
||||
<!-- Item 1 -->
|
||||
<div class="col-md-3 mb-sm-100 count-item wow fadeIn" data-wow-duration="1s" data-wow-delay=".3s" style="visibility: visible; animation-duration: 1s; animation-delay: 0.3s; animation-name: fadeIn;">
|
||||
<span id="count-1" class="count-nbr">100+</span>
|
||||
<span class="count-text">Songs published</span>
|
||||
</div>
|
||||
|
||||
<!-- Item 2 -->
|
||||
<div class="col-md-3 mb-sm-100 count-item wow fadeIn" data-wow-duration="1s" style="visibility: visible; animation-duration: 1s; animation-name: fadeIn;">
|
||||
<span id="count-2" class="count-nbr">2000+</span>
|
||||
<span class="count-text">Plays</span>
|
||||
</div>
|
||||
|
||||
<!-- Item 3 -->
|
||||
<div class="col-md-3 mb-sm-100 count-item wow fadeIn" data-wow-duration="1s" style="visibility: visible; animation-duration: 1s; animation-name: fadeIn;">
|
||||
<span id="count-3" class="count-nbr">6</span>
|
||||
<span class="count-text">members</span>
|
||||
</div>
|
||||
|
||||
<!-- Item 4 -->
|
||||
<div class="col-md-3 count-item wow fadeIn" data-wow-duration="1s" data-wow-delay=".3s" style="visibility: visible; animation-duration: 1s; animation-delay: 0.3s; animation-name: fadeIn;">
|
||||
<span id="count-4" class="count-nbr">80+</span>
|
||||
<span class="count-text">dedicated viewers</span>
|
||||
</div>
|
||||
|
||||
</div><!-- / .row -->
|
||||
</div><!-- / .container -->
|
||||
</div><!-- / .number-counters -->
|
||||
|
||||
|
||||
|
||||
<div id="portfolio" class="container-fluid ft-hover-item">
|
||||
<div class="row">
|
||||
|
||||
<!-- Item 1 -->
|
||||
<div class="ft-item ft-1 col-md-6" style="background-image: url('/img/rtl.png')">
|
||||
<div class="bg-overlay">
|
||||
|
||||
<div class="content-wrapper">
|
||||
<a><h3>RetryLife Official</h3></a>
|
||||
<p>A mix of music videos, audio visualizers, and general fun</p>
|
||||
<a href="https://www.youtube.com/channel/UCrHT3Lt0Mg90bspbMHJfTcA" class="btn-ghost btn-ghost-light ft-button">Check it out</a>
|
||||
</div>
|
||||
|
||||
</div><!-- / .bg-overlay -->
|
||||
</div><!-- / .ft-item -->
|
||||
|
||||
<!-- Item 2 -->
|
||||
<div class="ft-item ft-2 col-md-6" style="background-image:url('/img/nds.png');background-color:">
|
||||
<div class="bg-overlay">
|
||||
|
||||
<div class="content-wrapper">
|
||||
<a><h3>Nathan Desjardins</h3></a>
|
||||
<p>Timelapses and voiceovers. Here, you can find the arty side of the group</p>
|
||||
<a href="https://www.youtube.com/channel/UCxzARKt0_U0sLHbF4pDN1Pw" class="btn-ghost btn-ghost-light ft-button">Check it out</a>
|
||||
</div>
|
||||
|
||||
</div><!-- / .bg-overlay -->
|
||||
</div><!-- / .ft-item -->
|
||||
|
||||
</div><!-- / .row -->
|
||||
</div><!-- / .container-fluid -->
|
||||
|
||||
|
||||
|
||||
<div class="cta-link">
|
||||
<div class="bg-overlay">
|
||||
|
||||
<div class="cta-wrapper">
|
||||
<h3 class="h-alt wow fadeIn" data-wow-delay=".1s" data-wow-duration="1s" style="visibility: visible; animation-duration: 1s; animation-delay: 0.1s; animation-name: fadeIn;">Already a member of the group?</h3>
|
||||
<a href="http://retrylife.slack.com" class="btn btn-light btn-large wow fadeIn" data-wow-delay=".3s" data-wow-duration="1s" style="visibility: visible; animation-duration: 1s; animation-delay: 0.3s; animation-name: fadeIn;">Go to the hub</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div><!-- / .dark-bg .cta-link -->
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div id="about" class="gray-bg">
|
||||
<section class="container section team-3col">
|
||||
<div class="row">
|
||||
|
||||
<header class="sec-heading">
|
||||
<h2>Meet the team</h2>
|
||||
|
||||
</header>
|
||||
|
||||
|
||||
<!-- Member 1 -->
|
||||
<div class="col-lg-4 col-md-6 mb-sm-50">
|
||||
<div class="t-item wow fadeIn" data-wow-duration="1s" style="visibility: visible; animation-duration: 1s; animation-name: fadeIn;">
|
||||
|
||||
<!-- Image -->
|
||||
|
||||
|
||||
<!-- Info -->
|
||||
<div class="t-info">
|
||||
<h4 class="t-name">Evan Pratten</h4>
|
||||
<span class="t-role">Video Editor & Musician</span>
|
||||
<ul class="social-links">
|
||||
<li><a href="MAILTO:ewpratten@retrylife.ca"><i class="fa fa-facebook"></i></a></li>
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
</div><!-- / .t-item -->
|
||||
</div><!-- / .col-md-4 -->
|
||||
|
||||
|
||||
<!-- Member 2 -->
|
||||
<div class="col-lg-4 col-md-6 mb-sm-50">
|
||||
<div class="t-item wow fadeIn" data-wow-duration="1s" data-wow-delay=".3s" style="visibility: visible; animation-duration: 1s; animation-delay: 0.3s; animation-name: fadeIn;">
|
||||
|
||||
<!-- Image -->
|
||||
|
||||
|
||||
<!-- Info -->
|
||||
<div class="t-info">
|
||||
<h4 class="t-name">russle seck</h4>
|
||||
<span class="t-role">Video editor & Musician</span>
|
||||
<ul class="social-links">
|
||||
<li><a href="MAILTO:russmemusic@retrylife.ca"><i class="fa fa-facebook"></i></a></li>
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
</div><!-- / .t-item -->
|
||||
</div><!-- / .col-md-4 -->
|
||||
|
||||
|
||||
<!-- Member 3 -->
|
||||
<div class="col-lg-4 col-md-6 mb-sm-50">
|
||||
<div class="t-item wow fadeIn" data-wow-duration="1s" data-wow-delay=".6s" style="visibility: visible; animation-duration: 1s; animation-delay: 0.6s; animation-name: fadeIn;">
|
||||
|
||||
<!-- Image -->
|
||||
|
||||
|
||||
<!-- Info -->
|
||||
<div class="t-info">
|
||||
<h4 class="t-name">Nathan Desjardins</h4>
|
||||
<span class="t-role">Graphic Designer</span>
|
||||
<ul class="social-links">
|
||||
<li><a href="MAILTO:nathan@retrylife.ca"><i class="fa fa-facebook"></i></a></li>
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
</div><!-- / .t-item -->
|
||||
</div><!-- / .col-md-4 -->
|
||||
|
||||
|
||||
</div><!-- / .row -->
|
||||
</section><!-- / .contianer -->
|
||||
</div><!-- / .gray-bg -->
|
||||
|
||||
|
||||
<!-- ========== Footer ========== -->
|
||||
|
||||
<footer class="footer-widgets">
|
||||
<div class="container">
|
||||
<div class="row section">
|
||||
|
||||
<!-- About Us -->
|
||||
<div class="col-md-3 col-sm-6 mb-sm-100">
|
||||
<div class="widget about-widget">
|
||||
<h5 class="header-widget">About Us</h5>
|
||||
<p>
|
||||
Welcome to RetryLife, a group of close friends who have a passion for creating interesting content of many diffrent varieties. This website is where you can come to find all of our published work.</p>
|
||||
|
||||
|
||||
</div><!-- / .widget -->
|
||||
</div><!-- / .col-md-3 -->
|
||||
|
||||
|
||||
</div><!-- / .row -->
|
||||
</div><!-- / .container -->
|
||||
|
||||
|
||||
<!-- Copyright -->
|
||||
<!-- / .copyright -->
|
||||
|
||||
</footer><!-- / .footer-widgets -->
|
||||
|
||||
|
||||
|
||||
|
||||
<style>[href^="https://www.googleadservices.com/pagead/aclk?"]
|
||||
{display:none !important;}</style></body></html>
|
68
_site/Backup/keybase.txt
Normal file
@ -0,0 +1,68 @@
|
||||
==================================================================
|
||||
https://keybase.io/ewpratten
|
||||
--------------------------------------------------------------------
|
||||
|
||||
I hereby claim:
|
||||
|
||||
* I am an admin of http://retrylife.ca
|
||||
* I am ewpratten (https://keybase.io/ewpratten) on keybase.
|
||||
* I have a public key with fingerprint DD15 BE72 F652 984A ED9E C033 56F5 A6FB 5A8E EF90
|
||||
|
||||
To do so, I am signing this object:
|
||||
|
||||
{
|
||||
"body": {
|
||||
"key": {
|
||||
"eldest_kid": "010160a7afd6a7099e5079470c930b62e422a3f4b8a0c08482c174e5356f23b7b66f0a",
|
||||
"fingerprint": "dd15be72f652984aed9ec03356f5a6fb5a8eef90",
|
||||
"host": "keybase.io",
|
||||
"key_id": "56f5a6fb5a8eef90",
|
||||
"kid": "010160a7afd6a7099e5079470c930b62e422a3f4b8a0c08482c174e5356f23b7b66f0a",
|
||||
"uid": "bffaefed9cc265096ca9aec784253419",
|
||||
"username": "ewpratten"
|
||||
},
|
||||
"service": {
|
||||
"hostname": "retrylife.ca",
|
||||
"protocol": "http:"
|
||||
},
|
||||
"type": "web_service_binding",
|
||||
"version": 1
|
||||
},
|
||||
"ctime": 1512755987,
|
||||
"expire_in": 157680000,
|
||||
"prev": "5b6fb0129c86651cb820c7769f26d4eec7c254c4263debe5cee933b2a9ddf4c7",
|
||||
"seqno": 8,
|
||||
"tag": "signature"
|
||||
}
|
||||
|
||||
which yields the signature:
|
||||
|
||||
-----BEGIN PGP MESSAGE-----
|
||||
Version: Keybase OpenPGP v2.0.76
|
||||
Comment: https://keybase.io/crypto
|
||||
|
||||
yMIrAnicrVJbSBVRFL3XMssMg6KXPacbkYnOnJlzZuaGkFBJhSRB2sO6nDmzR6fs
|
||||
3mnueE18QYU97B2lfUQPxML8MCKIwMjSiOynzOj1E0YUFZEURkR2Ruyvz87P4eyz
|
||||
1tprL3b3pDGB1OCp9urclClFfcHerqaKwObMvinVghEzq4RwtbADRi4oNyHuRXbY
|
||||
phAWREmUiEhVapmEqqKuAxZVXVFFpsuiQRAoCFHZUgyNikzUFA0xSVUAy5hYSDZU
|
||||
gxBLpEKWYNnRUnAd1456XNY0JWyAiiyCka4pFEwdmCj7LEyJZWCqAVi6yIllsbjP
|
||||
4OYMGodsO8Zr/BEZsfcP/H/2XTEiZ1gWBYu7ZAwRLOqEUZ0CUzUFYVmRdB8YBzdK
|
||||
dwJHQ6XjUs+DqFCbJfBywmbgJ+uPMgpxwXOrym0LspnfxXFjXozFyvlPmec5YZ/o
|
||||
VTk+shKMyKhGxLCjJs+RExLgxu1YVAhLHMk82xeVsIRUjHVNzRJgt2O7ELF9BFaJ
|
||||
JvLjt4GEn5rBIxMlpDONECwxQ0MiU1WiW4iYCvC5GMIKUxCRTTAAMwBdlg1EddO0
|
||||
FKYK/lS7ojEhrHGbtJRLxu3SKPUqXBBq794pGRsIpgbGJSfx/ZoaSJ0w+e/Wxeel
|
||||
DG8KpS+ub5u/7k3ZrWHc+jhpaWZJye3w9rbevVfvZ0RujT8/PWPXtiXLt0Y6a27m
|
||||
fM0ZDDec7Rl809tz7Gf/9NX1b9XnaR/GfOna9rb8/Yac3WUD3ZmS++7o6RV7Dsz5
|
||||
EZyRiOSzWSXXOu4KBSmSnn/o8b7vr546uT2o4fUzEqJH2kIF40I1jU7xdRld+VVU
|
||||
Z/TnPBi49Pna2fffZz5anWit+ja08syNc2sur6qftWpZY1rf5nULag6nL5WGCi60
|
||||
DOQu6txyvEU+kfe6eGHPiy/dye3Be/kZQ4XZv+s6Nm4tdDube6f9vIm25D25cfDk
|
||||
S+tBw/4Xc52i5ov9wY9N62d/fPhpcKK69g97wj+u
|
||||
=VeZ6
|
||||
-----END PGP MESSAGE-----
|
||||
|
||||
And finally, I am proving ownership of this host by posting or
|
||||
appending to this document.
|
||||
|
||||
View my publicly-auditable identity here: https://keybase.io/ewpratten
|
||||
|
||||
==================================================================
|
46
_site/Backup/mobile/index.html
Normal file
@ -0,0 +1,46 @@
|
||||
<head>
|
||||
<title>RetryLife</title>
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
|
||||
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet'>
|
||||
<link rel="shortcut icon" type="image/x-icon" href="../favicon.ico" />
|
||||
<style>
|
||||
body {
|
||||
font-family: Roboto;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
</style>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div style="width:100%;height:15%;">
|
||||
<div style="height:30%"></div>
|
||||
<h1 style="float:left;margin-left:24%;font-size:130px;">RetryLife</h1>
|
||||
</div>
|
||||
|
||||
<div style="height:10%;width:100%;">
|
||||
<div class="btn-group btn-group-lg" role="group" aria-label="..." style="float:left;margin-left:8%;font-size:130px;">
|
||||
|
||||
<a target="main" href="../music/index-mobile.html"><button type="button" class="btn btn-info" style="font-size:60px">Music</button></a>
|
||||
<div style="width:10%;color:white;">-</div>
|
||||
<a target="main" href="../youtube.html"><button type="button" class="btn btn-primary" style="font-size:60px">Youtube</button></a>
|
||||
<div style="width:10%;color:white;">-</div>
|
||||
<a href="https://www.patreon.com/bePatron?u=7175648"><button type="button" class="btn btn-info" style="font-size:60px">Support Us</button></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div style="width:100%;height:73.8%;padding:0;margin:0;">
|
||||
<iframe name="main" frameBorder="0" style="height:100%;width:100%;" src="../about-mobile.html"></iframe>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script src="https://code.jquery.com/jquery-3.1.1.slim.min.js" integrity="sha384-A7FZj7v+d/sdmMqp/nOQwliLvUsJfDHW+k9Omg/a/EheAdgtzNs3hpfag6Ed950n" crossorigin="anonymous"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js" integrity="sha384-DztdAPBWPRXSA/3eYEEUWrWCy7G5KFbe8fFjk5JAIxUYHKkDx6Qin1DkWx51bBrb" crossorigin="anonymous"></script>
|
||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/js/bootstrap.min.js" integrity="sha384-vBWWzlZJ8ea9aCX4pEW3rVHjgjt7zpkNpZk+02D9phzyeVkE+jo0ieGizqPLForn" crossorigin="anonymous"></script>
|
||||
|
||||
</body>
|
41
_site/Backup/music/index-mobile.html
Normal file
@ -0,0 +1,41 @@
|
||||
<head>
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
|
||||
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet'>
|
||||
<style>
|
||||
body {
|
||||
font-family: Roboto;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
</style>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div style="height:97%;width:90%;margin-left:6%;">
|
||||
|
||||
<div class="featured" style="height:100%;width:60%;">
|
||||
|
||||
|
||||
<iframe style="border: 0; width: 350px; height: 650px;transform: scale(2.5);transform-origin: 0 0;" src="../content/newrelease.html" seamless><a href="http://retrylife.bandcamp.com/album/sir-dankleys-mlg-restaurant">Sir Dankley's MLG Restaurant by RetryLife</a></iframe>
|
||||
|
||||
<div style="height:80%"></div>
|
||||
|
||||
|
||||
<div style="height:0.5rem;"></div>
|
||||
<a href="https://retryilfe.bandcamp.com" class="btn btn-primary" style="width:95%;font-size:80px;margin-left:26%">More Music!</a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<script src="https://code.jquery.com/jquery-3.1.1.slim.min.js" integrity="sha384-A7FZj7v+d/sdmMqp/nOQwliLvUsJfDHW+k9Omg/a/EheAdgtzNs3hpfag6Ed950n" crossorigin="anonymous"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js" integrity="sha384-DztdAPBWPRXSA/3eYEEUWrWCy7G5KFbe8fFjk5JAIxUYHKkDx6Qin1DkWx51bBrb" crossorigin="anonymous"></script>
|
||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/js/bootstrap.min.js" integrity="sha384-vBWWzlZJ8ea9aCX4pEW3rVHjgjt7zpkNpZk+02D9phzyeVkE+jo0ieGizqPLForn" crossorigin="anonymous"></script>
|
||||
|
||||
</body>
|
59
_site/Backup/music/index.html
Normal file
@ -0,0 +1,59 @@
|
||||
<head>
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
|
||||
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet'>
|
||||
<style>
|
||||
body {
|
||||
font-family: Roboto;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background:none transparent;
|
||||
}
|
||||
</style>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div style="height:97%;width:100%;">
|
||||
|
||||
<div class="featured" style="float:left;height:100%;width:60%;">
|
||||
<div class="card" style="width: 98%;margin:0;">
|
||||
<div class="card-block">
|
||||
<h2>Newest Release</h2>
|
||||
|
||||
<iframe style="border: 0; width: 99%; height: 85%;" src="../content/newrelease.html" seamless><a href="http://retrylife.bandcamp.com/album/sir-dankleys-mlg-restaurant">Sir Dankley's MLG Restaurant by RetryLife</a></iframe>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="about" style="float:right; width:40%;height:100%;">
|
||||
<div class="card" style="width: 13rem;">
|
||||
<div class="card-block">
|
||||
<p class="card-text">Hey! this isn't our only release. The rest can be found by clicking on the button below.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div style="height:0.5rem;"></div>
|
||||
<div class="card" style="width: 13rem;">
|
||||
<div class="card-block">
|
||||
<a href="https://retryilfe.bandcamp.com" class="btn btn-primary" style="width:10.2rem;">More Music!</a>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<script src="https://code.jquery.com/jquery-3.1.1.slim.min.js" integrity="sha384-A7FZj7v+d/sdmMqp/nOQwliLvUsJfDHW+k9Omg/a/EheAdgtzNs3hpfag6Ed950n" crossorigin="anonymous"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js" integrity="sha384-DztdAPBWPRXSA/3eYEEUWrWCy7G5KFbe8fFjk5JAIxUYHKkDx6Qin1DkWx51bBrb" crossorigin="anonymous"></script>
|
||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/js/bootstrap.min.js" integrity="sha384-vBWWzlZJ8ea9aCX4pEW3rVHjgjt7zpkNpZk+02D9phzyeVkE+jo0ieGizqPLForn" crossorigin="anonymous"></script>
|
||||
|
||||
</body>
|
79
_site/Backup/people.html
Normal file
@ -0,0 +1,79 @@
|
||||
<head>
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
|
||||
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet'>
|
||||
<style>
|
||||
body {
|
||||
font-family: Roboto;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background:none transparent;
|
||||
}
|
||||
</style>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
||||
<div style="width:80%;">
|
||||
<div class="card-block">
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<th>
|
||||
<div class="card" style="width: 100%;height:100%;">
|
||||
<div class="card-block">
|
||||
<h4 class="card-title">Are-O</h4>
|
||||
<p class="card-text">Front-end Developer, Musician, Video Creator</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</th>
|
||||
<th>
|
||||
<div class="card" style="width: 100%;height:100%;">
|
||||
<div class="card-block">
|
||||
<h4 class="card-title">/\STROBLEME</h4>
|
||||
<p class="card-text">Artist, Musician, Video Creator, Animator</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</tr>
|
||||
<tr>
|
||||
<th>
|
||||
|
||||
|
||||
|
||||
<div class="card" style="width: 100%;height:100%;">
|
||||
<div class="card-block">
|
||||
<h4 class="card-title">Russme Music</h4>
|
||||
<p class="card-text">Musician, Video Creator, Composer</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</th>
|
||||
<th>
|
||||
|
||||
<div class="card" style="width: 100%;">
|
||||
<div class="card-block">
|
||||
<h4 class="card-title">Low-key Legend</h4>
|
||||
<p class="card-text">Album Name Creator, Musician</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</th>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<script src="https://code.jquery.com/jquery-3.1.1.slim.min.js" integrity="sha384-A7FZj7v+d/sdmMqp/nOQwliLvUsJfDHW+k9Omg/a/EheAdgtzNs3hpfag6Ed950n" crossorigin="anonymous"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js" integrity="sha384-DztdAPBWPRXSA/3eYEEUWrWCy7G5KFbe8fFjk5JAIxUYHKkDx6Qin1DkWx51bBrb" crossorigin="anonymous"></script>
|
||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/js/bootstrap.min.js" integrity="sha384-vBWWzlZJ8ea9aCX4pEW3rVHjgjt7zpkNpZk+02D9phzyeVkE+jo0ieGizqPLForn" crossorigin="anonymous"></script>
|
||||
|
||||
</body>
|
1
_site/Backup/preview.html
Normal file
@ -0,0 +1 @@
|
||||
<iframe style="border: 0; width: 400px; height: 836px;" src="https://bandcamp.com/EmbeddedPlayer/album=3953554787/size=large/bgcol=ffffff/linkcol=0687f5/transparent=true/tracklist=true/tracks=365066597,2765021553,3634496643,101379180,3147738507,1751976331,4065347594,3030955851,2307618914,3876725018/esig=162a28fcee20edb977b47b0b9681a15a/" seamless><a href="http://retrylife.bandcamp.com/album/x-mas-02">X-MAS 02 by RetryLife</a></iframe>
|
BIN
_site/Backup/profile.jpg
Normal file
After Width: | Height: | Size: 24 KiB |
1
_site/Backup/projects/projectZERO/README.md
Normal file
@ -0,0 +1 @@
|
||||
https://rtlcommunity.herokuapp.com/projects/projectZERO
|
2
_site/Backup/projects/projectZERO/css/picnic.min.css
vendored
Normal file
BIN
_site/Backup/projects/projectZERO/img/cover.jpg
Normal file
After Width: | Height: | Size: 772 KiB |
BIN
_site/Backup/projects/projectZERO/img/cover.png
Normal file
After Width: | Height: | Size: 2.0 MiB |
BIN
_site/Backup/projects/projectZERO/img/cross.png
Normal file
After Width: | Height: | Size: 353 KiB |
BIN
_site/Backup/projects/projectZERO/img/favicon.ico
Normal file
After Width: | Height: | Size: 318 B |
BIN
_site/Backup/projects/projectZERO/img/living.png
Normal file
After Width: | Height: | Size: 6.9 MiB |
BIN
_site/Backup/projects/projectZERO/img/office.png
Normal file
After Width: | Height: | Size: 2.7 MiB |
BIN
_site/Backup/projects/projectZERO/img/rec.png
Normal file
After Width: | Height: | Size: 2.9 MiB |
BIN
_site/Backup/projects/projectZERO/img/ring.png
Normal file
After Width: | Height: | Size: 2.1 MiB |
BIN
_site/Backup/projects/projectZERO/img/solar.png
Normal file
After Width: | Height: | Size: 1.1 MiB |
729
_site/Backup/projects/projectZERO/index.php
Normal file
@ -0,0 +1,729 @@
|
||||
<!--
|
||||
|
||||
_____ _ _ ____________ _____ ____
|
||||
| __ \ (_) | | |___ / ____| __ \ / __ \
|
||||
| |__) | __ ___ _ ___ ___| |_ / /| |__ | |__) | | | |
|
||||
| ___/ '__/ _ \| |/ _ \/ __| __| / / | __| | _ /| | | |
|
||||
| | | | | (_) | | __/ (__| |_ / /__| |____| | \ \| |__| |
|
||||
|_| |_| \___/| |\___|\___|\__/_____|______|_| \_\\____/
|
||||
_/ |
|
||||
|__/
|
||||
|
||||
|---------------------------------------------------------|
|
||||
| Website Credits |
|
||||
| Front / Back end: Evan Pratten |
|
||||
| Artwork: Nathan Desjardins |
|
||||
|---------------------------------------------------------|
|
||||
|
||||
Check out my main website:
|
||||
|
||||
Http://retrylife.ca
|
||||
|
||||
|
||||
Links:
|
||||
|
||||
Ewpratten:
|
||||
|
||||
Github: https://github.com/Ewpratten/
|
||||
Devrant: https://devrant.com/users/ewpratten
|
||||
|
||||
Nds:
|
||||
|
||||
Devrant: https://devrant.com/users/desjna
|
||||
|
||||
-----
|
||||
NOTES:
|
||||
|
||||
There is a lot of half working code here.. so sory if you cant figure it out.
|
||||
|
||||
I also was too lazy to comment the code.
|
||||
|
||||
-->
|
||||
|
||||
|
||||
|
||||
<!-- php link processing -->
|
||||
<?php
|
||||
if($_GET['redirect'] == "donate"){
|
||||
echo "<script>window.location = 'http://retrylife.ca/donate';</script>";
|
||||
}
|
||||
|
||||
// easter eggs
|
||||
|
||||
if($_GET['tgif'] == "true"){
|
||||
$TGIF = 1;
|
||||
}
|
||||
|
||||
// setcookie("name","value",time()+$int);
|
||||
|
||||
|
||||
|
||||
?>
|
||||
|
||||
<head>
|
||||
<title>ProjectZERO</title>
|
||||
<link rel="icon" type="image/png" href="./img/favicon.ico">
|
||||
<link href="./<?php if($_GET['theme'] == "dark"){echo "css/picnic.dark.css";}else{ echo "css/picnic.min.css";} ?>" rel="stylesheet" media="all">
|
||||
<link href="https://fonts.googleapis.com/css?family=Anton" rel="stylesheet">
|
||||
<meta name="viewport" content="width=device-width, inital-scale=1">
|
||||
<link href="css/hover.css" rel="stylesheet" media="all">
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.2/jquery.min.js"></script>
|
||||
<!-- <link href="./css/main.css" rel="stylesheet" media="all"> -->
|
||||
<!-- Global site tag (gtag.js) - Google Analytics -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-61008630-1"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('js', new Date());
|
||||
|
||||
gtag('config', 'UA-61008630-1');
|
||||
</script>
|
||||
|
||||
<style>
|
||||
#floater {
|
||||
float: left;
|
||||
height: 50%;
|
||||
width: 100%;
|
||||
margin-bottom: -110px;
|
||||
}
|
||||
#child {
|
||||
clear: both;
|
||||
height: 100px;
|
||||
text-align: center
|
||||
}
|
||||
.spacer {
|
||||
background-color: #2f3136;
|
||||
width: 100%;
|
||||
height: 10;
|
||||
}
|
||||
.front {
|
||||
width: auto;
|
||||
background-color: rgba(25, 29, 25, 0.7);
|
||||
color: #fff;
|
||||
}
|
||||
.coverimg {
|
||||
filter: blur(5px);
|
||||
// Browser Specific
|
||||
-webkit-filter: blur(5px);
|
||||
-moz-filter: blur(5px);
|
||||
-o-filter: blur(5px);
|
||||
-ms-filter: blur(5px);
|
||||
}
|
||||
footer {
|
||||
color: rgb(255, 255, 255);
|
||||
}
|
||||
#gradient {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
padding: 0px;
|
||||
margin: 0px;
|
||||
}
|
||||
.border {
|
||||
border-color: white;
|
||||
border-style: solid;
|
||||
width: fit-content;
|
||||
border-radius: 100%;
|
||||
}
|
||||
.ewp {
|
||||
border-radius: 100%;
|
||||
}
|
||||
a.button.hvr-bob {
|
||||
border-radius: 100%;
|
||||
background-color: rgba(255, 255, 255, 0);
|
||||
}
|
||||
img.dri {
|
||||
height: 20%;
|
||||
}
|
||||
a.abc {
|
||||
color: #405c7d;
|
||||
}
|
||||
.line .linev {
|
||||
background-color: black;
|
||||
}
|
||||
.line {
|
||||
height: 1;
|
||||
width: 100%;
|
||||
}
|
||||
.linev {
|
||||
height: 100%;
|
||||
width: 1;
|
||||
}
|
||||
.aptprice {
|
||||
background-color: #3d414a;
|
||||
color: whitesmoke;
|
||||
}
|
||||
#ring {
|
||||
background-color: #3d414a;
|
||||
color: whitesmoke;
|
||||
}
|
||||
.darkbox {
|
||||
border-color: white;
|
||||
border-width: 10px;
|
||||
}
|
||||
.darkbox {
|
||||
border-radius: .2em;
|
||||
border: 1px solid rgba(204, 204, 204, 0.14);
|
||||
}
|
||||
a.button {
|
||||
background-color: #b6bab6;
|
||||
}
|
||||
label.burger.button {
|
||||
background-color: #b6bab6;
|
||||
}
|
||||
button {
|
||||
background-color: #b6bab6;
|
||||
}
|
||||
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<script>
|
||||
var colors = new Array(
|
||||
[62,35,255],
|
||||
[60,255,60],
|
||||
[255,35,98],
|
||||
[45,175,230],
|
||||
[255,0,255],
|
||||
[255,128,0]);
|
||||
|
||||
var step = 0;
|
||||
//color table indices for:
|
||||
// current color left
|
||||
// next color left
|
||||
// current color right
|
||||
// next color right
|
||||
var colorIndices = [0,1,2,3];
|
||||
|
||||
//transition speed
|
||||
var gradientSpeed = 0.002;
|
||||
|
||||
function updateGradient()
|
||||
{
|
||||
|
||||
if ( $===undefined ) return;
|
||||
|
||||
var c0_0 = colors[colorIndices[0]];
|
||||
var c0_1 = colors[colorIndices[1]];
|
||||
var c1_0 = colors[colorIndices[2]];
|
||||
var c1_1 = colors[colorIndices[3]];
|
||||
|
||||
var istep = 1 - step;
|
||||
var r1 = Math.round(istep * c0_0[0] + step * c0_1[0]);
|
||||
var g1 = Math.round(istep * c0_0[1] + step * c0_1[1]);
|
||||
var b1 = Math.round(istep * c0_0[2] + step * c0_1[2]);
|
||||
var color1 = "rgb("+r1+","+g1+","+b1+")";
|
||||
|
||||
var r2 = Math.round(istep * c1_0[0] + step * c1_1[0]);
|
||||
var g2 = Math.round(istep * c1_0[1] + step * c1_1[1]);
|
||||
var b2 = Math.round(istep * c1_0[2] + step * c1_1[2]);
|
||||
var color2 = "rgb("+r2+","+g2+","+b2+")";
|
||||
|
||||
$('#gradient').css({
|
||||
background: "-webkit-gradient(linear, left top, right top, from("+color1+"), to("+color2+"))"}).css({
|
||||
background: "-moz-linear-gradient(left, "+color1+" 0%, "+color2+" 100%)"});
|
||||
|
||||
step += gradientSpeed;
|
||||
if ( step >= 1 )
|
||||
{
|
||||
step %= 1;
|
||||
colorIndices[0] = colorIndices[1];
|
||||
colorIndices[2] = colorIndices[3];
|
||||
|
||||
//pick two new target color indices
|
||||
//do not pick the same as the current one
|
||||
colorIndices[1] = ( colorIndices[1] + Math.floor( 1 + Math.random() * (colors.length - 1))) % colors.length;
|
||||
colorIndices[3] = ( colorIndices[3] + Math.floor( 1 + Math.random() * (colors.length - 1))) % colors.length;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
setInterval(updateGradient,10);
|
||||
</script>
|
||||
<div>
|
||||
<nav class="demo imponent">
|
||||
<a href="" class="brand">
|
||||
<span>
|
||||
<?php
|
||||
|
||||
// this is temp
|
||||
if($TGIF == 1){
|
||||
echo "ITS FRIDAY!";
|
||||
}
|
||||
else{
|
||||
if($_GET['scoreboard'] == "show"){
|
||||
echo "Your Score: ", $_GET['score'];
|
||||
}
|
||||
else{
|
||||
echo "Project ZERO";
|
||||
}}
|
||||
|
||||
?>
|
||||
</span>
|
||||
</a>
|
||||
<input id="bmenub" type="checkbox" class="show">
|
||||
<label for="bmenub" class="success burger button">menu</label>
|
||||
|
||||
<div class="menu">
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/ProjectZERO_nr?ref_src=twsrc%5Etfw" class="button">Twitter</a>
|
||||
|
||||
<a href="https://www.instagram.com/projectzero_nr/" class="button">Instagram</a>
|
||||
|
||||
<a href="/#office" class="button">Office Space</a>
|
||||
<a href="#housing" class="button">Housing</a>
|
||||
<a href="#design" class="button">Design</a>
|
||||
<?php
|
||||
$pagestate = $_GET['page'];
|
||||
if($pagestate == "")
|
||||
$currentPage = "home";
|
||||
if($currentPage != "home"){
|
||||
echo '<a href="./index.html" class="button">Home</a>';
|
||||
}
|
||||
?>
|
||||
</div>
|
||||
</nav>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<br>
|
||||
<br>
|
||||
|
||||
<div class="frontpage" >
|
||||
|
||||
<img src="./img/cover.png" width="100%">
|
||||
</div>
|
||||
|
||||
|
||||
<!--
|
||||
<div style="height:300">
|
||||
<?php
|
||||
// if($_GET['lagmode'] != "reduce"){
|
||||
// echo '<div id="gradient" />';
|
||||
// }
|
||||
?>
|
||||
<!-- im a spacer -->
|
||||
|
||||
|
||||
<!--
|
||||
<div id="floater"></div>
|
||||
<div id="child">
|
||||
<div class="front">
|
||||
<h1>
|
||||
-->
|
||||
<?php
|
||||
|
||||
//$text = array("P", "r", "o", "j", "e", "c", "t", " ", "Z", "E", "R", "O");
|
||||
//$text2 = array("A", "n", " ", "a", "d", "v", "a", "n", "c", "e", "d", " ", "c", "o", "m", "m", "u", "n", "i", "t", "y", " ", "l", "i", "v", "i", "n", "g", " ", "s", "p", "a", "c", "e");
|
||||
|
||||
//for($i = 0; $i <= 12 ; $i++){
|
||||
// echo $text[$i];
|
||||
//}
|
||||
|
||||
//echo "</h1><h1>";
|
||||
|
||||
//for($ix = 0; $ix <= 33; $ix++){
|
||||
// echo $text2[$ix];
|
||||
//}
|
||||
?>
|
||||
<!--
|
||||
</h1>
|
||||
</div>
|
||||
</div>
|
||||
-->
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="spacer"></div>
|
||||
|
||||
<div class="flex one-0 three-600 demo" id="ring">
|
||||
<div><span>
|
||||
<br>
|
||||
<div class="darkbox" style="border-radius:15;">
|
||||
<img src="./img/ring.png" width="100%" style="border-radius:5px;">
|
||||
</div>
|
||||
</span></div>
|
||||
|
||||
<div class="two-third" style="text-align:center;border-radius:15;"><span>
|
||||
<div style="margin-top:auto;margin-bottom:auto">
|
||||
<h1>Project ZERO</h1>
|
||||
<h3>An advanced community living space</h3>
|
||||
</div>
|
||||
</span></div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="spacer"></div>
|
||||
|
||||
<div class="housing" id="housing">
|
||||
<div style="align:center:">
|
||||
<h1 align="center">Housing</h1>
|
||||
</div>
|
||||
|
||||
<div class="flex one three-600 demo">
|
||||
<div><span><article class="card"><header>
|
||||
<h3>Pricing</h3>
|
||||
</header>
|
||||
|
||||
<p>All housing units can be rented for an affordable price and come outfitted with modern appliances.</p>
|
||||
|
||||
<footer>
|
||||
<a href="#aptprices"><button>Learn More</button></a>
|
||||
</footer></article></span></div>
|
||||
<div><span><article class="card"><header>
|
||||
<h3>Unit Styles</h3>
|
||||
</header>
|
||||
|
||||
<p>All housing units are modular and come in two story sections. They can also be joined with a neighbouring unit for extra space.</p>
|
||||
|
||||
<footer>
|
||||
<a href="#design2"><button>Check it out</button></a>
|
||||
</footer></article></span></div>
|
||||
<div><span><article class="card"><header>
|
||||
<h3>Corporate Reservations</h3>
|
||||
</header>
|
||||
|
||||
<p>We allow any company who is currently renting a modular office space to also rent housing for their employees.</p>
|
||||
|
||||
<footer>
|
||||
<a href="#group"><button>Learn More</button></a>
|
||||
</footer></article></span></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="spacer"></div>
|
||||
|
||||
<div class="offices" id="office">
|
||||
<div style="align:center:">
|
||||
<h1 align="center">Office Spaces</h1>
|
||||
</div>
|
||||
|
||||
<div class="flex one three-600 demo">
|
||||
<div><span><article class="card"><header>
|
||||
<h3>Pricing</h3>
|
||||
</header>
|
||||
|
||||
<p>All office units can be rented for an affordable price and can be outfitted with modern appliances, furniture, and a TV.</p>
|
||||
|
||||
<footer>
|
||||
<a href="#officeprices"><button>Learn More</button></a>
|
||||
</footer></article></span></div>
|
||||
<div><span><article class="card"><header>
|
||||
<h3>Unit Styles</h3>
|
||||
</header>
|
||||
|
||||
<p>All Office units are modular and come in one and two story sections. They can also be joined with a neighbouring unit for extra space.</p>
|
||||
|
||||
<footer>
|
||||
<a href="#officedesign"><button>Check It Out</button></a>
|
||||
</footer></article></span></div>
|
||||
<div><span><article class="card"><header>
|
||||
<h3>Food and Conveniences</h3>
|
||||
</header>
|
||||
|
||||
<p>All spaces are heated and cooled to keep the temprature always enjoyable. In the central park, there are places to buy food and eat.</p>
|
||||
|
||||
<footer>
|
||||
<button>Learn More</button>
|
||||
</footer></article></span></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="spacer"></div>
|
||||
|
||||
<!--
|
||||
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
|
||||
<a class="twitter-timeline" href="https://twitter.com/ProjectZERO_nr?ref_src=twsrc%5Etfw">Tweets by ProjectZERO_nr</a>
|
||||
-->
|
||||
<!--
|
||||
<div class="flex one three-600 demo">
|
||||
<div><span><article class="card">
|
||||
<a href="https://twitter.com/ProjectZERO_nr?ref_src=twsrc%5Etfw" align="center" class="twitter-follow-button" data-show-count="false"><button>Follow @ProjectZERO on twittter</button></a>
|
||||
</article></span></div>
|
||||
<div><span><article class="card"><h1>Follow our social media to see new updates</h1></article></article></span></div>
|
||||
<div><span><article class="card">
|
||||
<a href="https://www.instagram.com/projectzero_nr/" class="twitter-follow-button" data-show-count="false" align="center"><button>Follow @ProjectZERO on instagram</button></a>
|
||||
|
||||
|
||||
|
||||
</article></article></span></div>
|
||||
</div>
|
||||
|
||||
<div class="spacer"></div>
|
||||
-->
|
||||
|
||||
<div class="flex one-0 three-600 demo" id="design">
|
||||
<div class="two-third"><span>
|
||||
<img src="./img/cross.png" style="width:100%">
|
||||
</span></div>
|
||||
<div><span>
|
||||
<br>
|
||||
<article class="card"><header>
|
||||
<h3>The Ring</h3>
|
||||
</header>
|
||||
|
||||
<p>Project ZERO is designed to be energy efficient and sustainable. This is achieved through the wide use of geothermal heating and cooling throughout the community. Windows will be equipped with a carbon filter. This carbon filter can either reflect light, or keep it trapped within a specific area (emulating a greenhouse). This is a cross section of the ring, where residential spaces can be found on the left and shared offices on the right.</p>
|
||||
|
||||
</article>
|
||||
</span></div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="spacer"></div>
|
||||
<!--
|
||||
|
||||
max units:20
|
||||
10 office
|
||||
|
||||
housing
|
||||
empty room: $100/ month
|
||||
The essentials: $250/ month
|
||||
2 rooms + essentials: $450/ month
|
||||
|
||||
$200
|
||||
electricity
|
||||
|
||||
$400
|
||||
desk, whiteboard, chairs
|
||||
|
||||
$1500
|
||||
speakers, 70" 4k tv
|
||||
-->
|
||||
<div class="grouprent" id="group">
|
||||
|
||||
<div class="aptprice">
|
||||
<div style="align:center:">
|
||||
<h1 align="center">Company Rented Living Spaces</h1>
|
||||
</div>
|
||||
|
||||
<div class="flex one three-600 demo">
|
||||
|
||||
<div style="text-align:center;"><span>
|
||||
|
||||
|
||||
|
||||
</span></div>
|
||||
<div style="text-align:center;"><span>
|
||||
|
||||
<h3>Any company is allowed to rent up to 10 shared offices spaces and up to 20 living spaces of any tier</h3>
|
||||
</span></div>
|
||||
|
||||
<div style="text-align:center;"><span>
|
||||
|
||||
|
||||
</span></div>
|
||||
</div>
|
||||
|
||||
<br>
|
||||
<br>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="spacer"></div>
|
||||
<div class="flex one-0 three-600 demo" id="design2">
|
||||
<div class="two-third"><span>
|
||||
<img src="./img/living.png" width="100%">
|
||||
</span></div>
|
||||
<div><span>
|
||||
<br>
|
||||
<article class="card"><header>
|
||||
<h3>Living Spaces</h3>
|
||||
</header>
|
||||
|
||||
<p>This sketch of the living spaces shows the form of a room. The rooms have large windows to create a sense of openness and freedom. On the left is a sink and storage unit, and on the right is a ledge where a couch or bed can be installed. The door at the end of the room opens to a glass balcony.</p>
|
||||
|
||||
</article>
|
||||
</span></div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="spacer"></div>
|
||||
|
||||
<div class="aptprice" id="aptprices">
|
||||
<div style="align:center:">
|
||||
<h1 align="center">Apartment Pricing</h1>
|
||||
</div>
|
||||
|
||||
<div class="flex one three-600 demo">
|
||||
|
||||
<div style="text-align:center;" class="darkbox"><span>
|
||||
|
||||
<h1>$350 / Month</h1>
|
||||
<h3>The Minimalist</h3>
|
||||
<h5>An unfurnished room with electricity and water</h5>
|
||||
|
||||
</span></div>
|
||||
<div style="text-align:center;" class="darkbox"><span>
|
||||
|
||||
<h1>$600 / Month</h1>
|
||||
<h3>The Essentials</h3>
|
||||
<h5>Finished kitchen and living space</h5>
|
||||
</span></div>
|
||||
|
||||
<div style="text-align:center;" class="darkbox"><span>
|
||||
|
||||
<h1>$1000 / Month</h1>
|
||||
<h3>The Luxurious</h3>
|
||||
<h5>A fully furnished room with everything you need</h5>
|
||||
|
||||
</span></div>
|
||||
</div>
|
||||
|
||||
<br>
|
||||
<br>
|
||||
</div>
|
||||
<div class="spacer"></div>
|
||||
|
||||
<div class="flex one-0 three-600 demo" id="officedesign">
|
||||
<div><span>
|
||||
<br>
|
||||
<article class="card"><header>
|
||||
<h3>Office Spaces</h3>
|
||||
</header>
|
||||
|
||||
<p>The concept sketch of a Luxurious tier office space (right), shows an eight person desk and 70" flatscreen TV. Chairs are not shown for clarity purposes</p></p>
|
||||
|
||||
</article>
|
||||
</span></div>
|
||||
|
||||
<div class="two-third"><span>
|
||||
<img src="./img/office.png" width="100%">
|
||||
</span></div>
|
||||
|
||||
|
||||
</div>
|
||||
<!--
|
||||
$200
|
||||
electricity
|
||||
|
||||
$400
|
||||
desk, whiteboard, chairs
|
||||
|
||||
$1500
|
||||
speakers, 70" 4k tv
|
||||
-->
|
||||
<div class="spacer"></div>
|
||||
<div class="aptprice" id="officeprices">
|
||||
<div style="align:center:">
|
||||
<h1 align="center">Office Pricing</h1>
|
||||
</div>
|
||||
|
||||
<div class="flex one three-600 demo">
|
||||
|
||||
<div style="text-align:center;" class="darkbox"><span>
|
||||
|
||||
<h1>$200 / Month</h1>
|
||||
<h3>The Minimalist</h3>
|
||||
<h5>An unfurnished room with electricity</h5>
|
||||
|
||||
</span></div>
|
||||
<div style="text-align:center;" class="darkbox"><span>
|
||||
|
||||
<h1>$400 / Month</h1>
|
||||
<h3>The Essentials</h3>
|
||||
<h5>Comes with desks, whiteboard, and chairs</h5>
|
||||
</span></div>
|
||||
|
||||
<div style="text-align:center;" class="darkbox"><span>
|
||||
|
||||
<h1>$1500 / Month</h1>
|
||||
<h3>The Luxurious</h3>
|
||||
<h5>The previous tiers, with surround sound speakers, 4 desktop computers, and a 70" 4k TV</h5>
|
||||
|
||||
</span></div>
|
||||
</div>
|
||||
|
||||
<br>
|
||||
<br>
|
||||
</div>
|
||||
<div class="spacer"></div>
|
||||
|
||||
<div class="flex one-0 three-600 demo" id="design2">
|
||||
<div class="two-third"><span>
|
||||
<img src="./img/rec.png" width="100%">
|
||||
</span></div>
|
||||
<div><span>
|
||||
<br>
|
||||
<article class="card"><header>
|
||||
<h3>Recteational Space</h3>
|
||||
</header>
|
||||
|
||||
<p>We want to have a happy community, which is why we will invest a lot of money in the REC. center of Project ZERO. A 400m track, as well as a multi-purpose field will occupy a large amount of surface area within the outdoor section of the REC center. There will also be an indoor gym. The rest of the outdoor area will consist of community gardens and parks. The REC. center will be open to anyone withinwithin and outside the community.
|
||||
</p>
|
||||
|
||||
</article>
|
||||
</span></div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="spacer"></div>
|
||||
<div class="flex one-0 three-600 demo" id="officedesign">
|
||||
<div><span>
|
||||
<br>
|
||||
<article class="card"><header>
|
||||
<h3>Solar Power</h3>
|
||||
</header>
|
||||
|
||||
<p>70000 solar cells cover the roof of the ring. This generates about 20,000 volts of electricity that is used to provide power to the community. Excess electricity is stored in large batteries to be used when the electrical grid is under heavy load.</p>
|
||||
|
||||
</article>
|
||||
</span></div>
|
||||
|
||||
<div class="two-third"><span>
|
||||
<img src="./img/solar.png" width="100%">
|
||||
</span></div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div width="100%" style="background-color: #243447;height:auto;">
|
||||
<!-- <h3>Website by: <a href="https://ewpratten.github.io">Ewpratten</a></h3> -->
|
||||
|
||||
<!--
|
||||
<div class="dr" style="white-space: nowrap;width: 90%;float: left;">
|
||||
<div class="ewp" style="display: inline-block;">
|
||||
<a href="https://devrant.com/users/ewpratten" title="ewpratten" class="button hvr-bob">
|
||||
<div class="border">
|
||||
<img style="border-radius: 100%;" class="dri" src="https://avatars.devrant.com/v-18_c-3_b-1_g-m_9-1_1-6_16-8_3-3_8-4_7-4_5-3_12-6_17-2_6-34_10-9_2-47_11-4_18-4_4-3_19-3_20-5_21-2.jpg">
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
<div class="404" style="display: inline-block;">
|
||||
<a href="https://devrant.com/users/desjna" title="desjna" class="button hvr-bob">
|
||||
<div class="border">
|
||||
<img style="border-radius: 100%;" class="dri" src="https://avatars.devrant.com/v-18_c-3_b-4_g-m_9-1_1-9_16-15_3-3_8-1_7-1_5-1_12-9_6-40_2-39_4-1.jpg">
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
-->
|
||||
|
||||
|
||||
<div class="credits" width="100%">
|
||||
<p>Project by: <a title="ewpratten" href="https://github.com/Ewpratten" style="color: white;">Evan</a>, Maya, Sarah, <a href="http://glitchop.newgrounds.com" style="color:white;" title=" ">Nathan</a><a class="abc" title="Hey look! You can click me to make a donation!" href="/?redirect=donate<?php $a = $_GET['score']; $b = $a + 100; echo "&score=", $b; ?>" style="float :right;">Support the developer</a></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
|
||||
<!--
|
||||
|----------------INFO----------------------|
|
||||
BASE64:
|
||||
Tk9URSAxOg0KNDggNjUgNmMgNzAgMmUgMjAgNGUgNjEgNzQgNjggNjEgNmUgMjAgNjkgNzMNCjIwIDYyIDY1IDY5IDZlIDY3IDIwIDc2IDY1IDcyIDc5IDIwIDYxIDY3IDY3DQo3MiA2NSA3MyA3MyA2OSA3NiA2NSAyMCA3NCA2ZiA3NyA2MSA3MiA2NCA3Mw0KMjAgNjEgNmMgNmMgMjAgNmYgNjYgMjAgNzQgNjggNjUgMjAgNjcgNzIgNmYNCjc1IDcwIDIwIDZkIDY1IDZkIDYyIDY1IDcyIDczIDJlIDJlIDIwIDQ4IDY1DQoyMCA3MiA2NSA2MSA2YyA2YyA3OSAyMCA2YyA2OSA2YiA2NSA3MyAyMCA2Mw0KNzUgNzQgNzQgNjkgNmUgNjcgMjAgNzAgNjUgNmYgNzAgNmMgNjUgMjAgNmYNCjY2IDY2IDIwIDZkIDY5IDY0IDJkIDczIDY1IDZlIDc0IDY1IDZlIDYzIDY1DQoyMCA2MSA2ZSA2NCAyMCA2MSA2YyA3MyA2ZiAyMCA2YSA3NSA3MyA3NCAyMA0KNzMgNjggNzUgNzQgNzMgMjAgNjQgNmYgNzcgNmUgMjAgNjkgNjQgNjUgNjENCjczIDIwIDc3IDY5IDc0IDY4IDZmIDc1IDc0IDIwIDY3IDZmIDZmIDY0IDIwDQo2NSA3OCA3MCA2YyA2MSA2ZSA2MSA3NCA2OSA2ZiA2ZSAyZSAyMCA0OCA2NQ0KMjAgNjkgNzMgMjAgNjEgNmUgMjAgNjEgNjIgNzMgNmYgNmMgNzUgNzQgNjUNCjIwIDcwIDYxIDY5IDZlIDIwIDc0IDZmIDIwIDc3IDZmIDcyIDZiIDIwIDc3DQo2OSA3NCA2OCAyZSAyMCA0OSAyMCA2MyA2MSA2ZSAyNyA3NCAyMCA3NyA2MQ0KNjkgNzQgMjAgNjYgNmYgNzIgMjAgNzQgNjggNjkgNzMgMjAgNzQgNmYgMjANCjY1IDZlIDY0IDJlDQoNCk5PVEUgMjoNCjU0IDY4IDY1IDcyIDY1IDIwIDYxIDcyIDY1IDIwIDZkIDYxIDZlIDc5IDIwDQo0NSA2MSA3MyA3NCA2NSA3MiAyMCA2NSA2NyA2NyA3MyAyMCA2MiA3NSA2OQ0KNmMgNzQgMjAgNjkgNmUgNzQgNmYgMjAgNzQgNjggNjkgNzMgMjAgNzcgNjUNCjYyIDczIDY5IDc0IDY1IDJlIDIwIDY4IDYxIDc2IDY1IDIwIDY2IDc1IDZlDQoyMCA2NiA2OSA2ZSA2NCA2OSA2ZSA2NyAyMCA3NCA2OCA2NSA2ZCAyMSAyMA0KMjggNjggNjkgNmUgNzQgM2EgMjAgNmMgNmYgNmYgNmIgMjAgNjEgNzQgMjANCjc0IDY4IDY1IDIwIDcwIDY4IDcwIDIwIDYzIDZmIDY0IDY1IDI5IDIwIDQ5DQoyMCA2NCA2OSA2NCA2ZSAyNyA3NCAyMCA2NyA2NSA3NCAyMCA2ZCA3NSA2Mw0KNjggMjAgNzQgNjkgNmQgNjUgMjAgNzQgNmYgMjAgNjEgNjMgNzQgNzUgNjENCjZjIDZjIDc5IDIwIDY2IDY5IDZlIDY5IDczIDY4IDIwIDc0IDY4IDY1IDZkDQoyYyAyMCA2MiA3NSA3NCAyMCA2OSAyMCA3NCA2OCA2ZiA3NSA2NyA2OCA3NA0KMjAgNzQgNjggNjEgNzQgMjAgNjkgNzQgMjAgNzcgNmYgNzUgNmMgNjQgMjANCjYyIDY1IDIwIDY5IDZlIDc0IDY1IDcyIDY1IDczIDc0IDY5IDZlIDY3IDIwDQo3NCA2ZiAyMCA2OSA2ZSA2MyA2YyA3NSA2NCA2NSAyMCA3NCA2OCA2NSA2ZA0KMjAgNjEgNmUgNzkgNzcgNjEgNzkgNzMgMjENCg0KTk9URSAzOg0KNDkgMmMgMjAgNDUgNzYgNjEgNmUgMjAgNzAgNzIgNjEgNzQgNzQgNjUgNmUNCjIwIDI4IDQwIDY1IDc3IDcwIDcyIDYxIDc0IDc0IDY1IDZlIDI5IDIwIDYxDQo2MyA3NCA3NSA2MSA2YyA2YyA3OSAyMCA2NCA2OSA2NCAyMCA2MSA2YyA2Yw0KMjAgNmYgNjYgMjAgNzQgNjggNjUgMjAgNzcgNmYgNzIgNmIgMjAgNmYgNmUNCjc0IDY4IDY1IDIwIDc3IDY1IDYyIDczIDY5IDc0IDY1IDJjIDIwIDYyIDc1DQo3NCAyMCA0ZSA2MSA3NCA2OCA2MSA2ZSAyMCA2OSA3MyAyMCA2MiA2NSA2OQ0KNmUgNjcgMjAgNzYgNjUgNzIgNzkgMjAgNzAgNjkgNjMgNmIgNzkgMjAgNjENCjYyIDZmIDc1IDc0IDIwIDY3IDY1IDc0IDc0IDY5IDZlIDY3IDIwIDYzIDcyDQo2NSA2NCA2OSA3NCA2NSA2NCAyMCA2NiA2ZiA3MiAyMCA3NCA2OCA2OSA2ZQ0KNzMgMmUgMmUgMmUgMjAgNTQgNjggNjEgNzQgMjcgNzMgMjAgNzcgNjggNzkNCjIwIDY4IDY1IDIwIDc3IDYxIDczIDIwIDZiIDY5IDYzIDZiIDY1IDY0IDIwDQo2ZiA3NSA3NCAyMCA2ZiA2NiAyMCA1MiA2NSA3NCA3MiA3OSA0YyA2OSA2Ng0KNjUgMmU=
|
||||
-->
|
3
_site/Backup/projectzero.html
Normal file
@ -0,0 +1,3 @@
|
||||
<script type="text/javascript">
|
||||
document.location = "https://rtlcommunity.herokuapp.com/projects/projectZERO/";
|
||||
</script>
|
97
_site/Backup/snap.html
Normal file
97
_site/Backup/snap.png
Normal file
67
_site/Backup/tic80/gis.html
Normal file
11
_site/Backup/widgets.js
Normal file
57
_site/Backup/youtube.html
Normal file
@ -0,0 +1,57 @@
|
||||
<head>
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
|
||||
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet'>
|
||||
<style>
|
||||
body {
|
||||
font-family: Roboto;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background:none transparent;
|
||||
}
|
||||
/*
|
||||
img {
|
||||
display: inline-block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
*/
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div style="float:left;margin-left:0%;text-align:center;height:100%;">
|
||||
<div style="height:15%;"></div>
|
||||
<table>
|
||||
<tr>
|
||||
<th>
|
||||
<a href="https://www.youtube.com/channel/UCrHT3Lt0Mg90bspbMHJfTcA">
|
||||
<div class="card" style="">
|
||||
<img class="card-img-top" src="https://yt3.ggpht.com/-TMpNTPzQYYI/AAAAAAAAAAI/AAAAAAAAAAA/-7aRKZq4ero/s88-c-k-no-mo-rj-c0xffffff/photo.jpg" style="height:30%;width:100%;" alt="Card image cap">
|
||||
<div class="card-block">
|
||||
<h4 class="card-title">RetryLife Official</h4>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
</th>
|
||||
<th>
|
||||
|
||||
|
||||
<a href="https://www.youtube.com/channel/UCxzARKt0_U0sLHbF4pDN1Pw">
|
||||
<div class="card" style="width: 100%;">
|
||||
<img class="card-img-top" src="https://yt3.ggpht.com/-3SZJHOdQ5lo/AAAAAAAAAAI/AAAAAAAAAAA/pVvu_8JOU-8/s88-c-k-no-mo-rj-c0xffffff/photo.jpg" style="height:30%;width:100%;" alt="Card image cap">
|
||||
<div class="card-block">
|
||||
<h4 class="card-title">Nathan Desjardins</h4>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
</th>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<script src="https://code.jquery.com/jquery-3.1.1.slim.min.js" integrity="sha384-A7FZj7v+d/sdmMqp/nOQwliLvUsJfDHW+k9Omg/a/EheAdgtzNs3hpfag6Ed950n" crossorigin="anonymous"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js" integrity="sha384-DztdAPBWPRXSA/3eYEEUWrWCy7G5KFbe8fFjk5JAIxUYHKkDx6Qin1DkWx51bBrb" crossorigin="anonymous"></script>
|
||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/js/bootstrap.min.js" integrity="sha384-vBWWzlZJ8ea9aCX4pEW3rVHjgjt7zpkNpZk+02D9phzyeVkE+jo0ieGizqPLForn" crossorigin="anonymous"></script>
|
||||
</body>
|
1
_site/CNAME
Normal file
@ -0,0 +1 @@
|
||||
retrylife.ca
|
@ -24,7 +24,7 @@
|
||||
|
||||
<!-- Header -->
|
||||
<header id="header" >
|
||||
<a href="http://localhost:4000//" class="logo"><strong>Evan Pratten</strong> <span>ewpratten</span></a>
|
||||
<a href="http://localhost:4000//" class="logo"><strong>Evan Pratten</strong> <span>retrylife</span></a>
|
||||
<nav>
|
||||
<!-- <a href="#menu">Menu</a> -->
|
||||
</nav>
|
||||
@ -52,11 +52,9 @@
|
||||
|
||||
|
||||
|
||||
<li><a href="http://localhost:4000/all_posts.html">All posts</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="http://localhost:4000/generic.html">Generic</a></li>
|
||||
<li><a href="http://localhost:4000/all_posts.html">All posts</a></li>
|
||||
|
||||
|
||||
|
||||
@ -82,12 +80,8 @@
|
||||
<header class="major">
|
||||
<h1>Generic</h1>
|
||||
</header>
|
||||
<span class="image main"><img src="//assets/images/pic11.jpg" alt="" /></span>
|
||||
<p><p>Donec eget ex magna. Interdum et malesuada fames ac ante ipsum primis in faucibus. Pellentesque venenatis dolor imperdiet dolor mattis sagittis. Praesent rutrum sem diam, vitae egestas enim auctor sit amet. Pellentesque leo mauris, consectetur id ipsum sit amet, fergiat. Pellentesque in mi eu massa lacinia malesuada et a elit. Donec urna ex, lacinia in purus ac, pretium pulvinar mauris. Curabitur sapien risus, commodo eget turpis at, elementum convallis elit. Pellentesque enim turpis, hendrerit.</p>
|
||||
|
||||
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis dapibus rutrum facilisis. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Etiam tristique libero eu nibh porttitor fermentum. Nullam venenatis erat id vehicula viverra. Nunc ultrices eros ut ultricies condimentum. Mauris risus lacus, blandit sit amet venenatis non, bibendum vitae dolor. Nunc lorem mauris, fringilla in aliquam at, euismod in lectus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. In non lorem sit amet elit placerat maximus. Pellentesque aliquam maximus risus, vel sed vehicula.</p>
|
||||
|
||||
<p>Interdum et malesuada fames ac ante ipsum primis in faucibus. Pellentesque venenatis dolor imperdiet dolor mattis sagittis. Praesent rutrum sem diam, vitae egestas enim auctor sit amet. Pellentesque leo mauris, consectetur id ipsum sit amet, fersapien risus, commodo eget turpis at, elementum convallis elit. Pellentesque enim turpis, hendrerit tristique lorem ipsum dolor.</p>
|
||||
<span class="image main"><img src="/assets/images/DeepSpace.jpg" alt="" /></span>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
</section>
|
||||
@ -109,9 +103,8 @@
|
||||
<li><a href="/feed.xml" class="icon alt fa-rss" target="_blank"><span class="label">RSS</span></a></li>
|
||||
</ul>
|
||||
<ul class="copyright">
|
||||
<li>© Evan Pratten ewpratten</li>
|
||||
<li>© Evan Pratten retrylife</li>
|
||||
<li>Design: <a href="https://html5up.net" target="_blank">HTML5 UP</a></li>
|
||||
<li>Jekyll integration: <a href="http://andrewbanchi.ch" target="_blank">Andrew Banchich</a></li>
|
||||
|
||||
</ul>
|
||||
</div>
|
12
_site/Dockerfile
Normal file
@ -0,0 +1,12 @@
|
||||
FROM ubuntu:18.04
|
||||
|
||||
WORKDIR /srv/jekyll
|
||||
|
||||
RUN apt update -y && \
|
||||
apt install -y ruby-dev gcc make curl libc-dev libffi-dev libxml2-dev libgcrypt-dev libxslt-dev python git
|
||||
|
||||
RUN gem update --system
|
||||
|
||||
RUN bundle install
|
||||
|
||||
EXPOSE 4000
|
@ -24,7 +24,7 @@
|
||||
|
||||
<!-- Header -->
|
||||
<header id="header" >
|
||||
<a href="http://localhost:4000//" class="logo"><strong>Evan Pratten</strong> <span>ewpratten</span></a>
|
||||
<a href="http://localhost:4000//" class="logo"><strong>Evan Pratten</strong> <span>retrylife</span></a>
|
||||
<nav>
|
||||
<!-- <a href="#menu">Menu</a> -->
|
||||
</nav>
|
||||
@ -52,11 +52,9 @@
|
||||
|
||||
|
||||
|
||||
<li><a href="http://localhost:4000/all_posts.html">All posts</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="http://localhost:4000/generic.html">Generic</a></li>
|
||||
<li><a href="http://localhost:4000/all_posts.html">All posts</a></li>
|
||||
|
||||
|
||||
|
||||
@ -269,9 +267,8 @@ pip3 install tensorflow-gpu #for gpu processing
|
||||
<li><a href="/feed.xml" class="icon alt fa-rss" target="_blank"><span class="label">RSS</span></a></li>
|
||||
</ul>
|
||||
<ul class="copyright">
|
||||
<li>© Evan Pratten ewpratten</li>
|
||||
<li>© Evan Pratten retrylife</li>
|
||||
<li>Design: <a href="https://html5up.net" target="_blank">HTML5 UP</a></li>
|
||||
<li>Jekyll integration: <a href="http://andrewbanchi.ch" target="_blank">Andrew Banchich</a></li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
BIN
_site/assets/images/DeepSpace.jpg
Normal file
After Width: | Height: | Size: 229 KiB |
@ -24,7 +24,7 @@
|
||||
|
||||
<!-- Header -->
|
||||
<header id="header" >
|
||||
<a href="http://localhost:4000//" class="logo"><strong>Evan Pratten</strong> <span>ewpratten</span></a>
|
||||
<a href="http://localhost:4000//" class="logo"><strong>Evan Pratten</strong> <span>retrylife</span></a>
|
||||
<nav>
|
||||
<!-- <a href="#menu">Menu</a> -->
|
||||
</nav>
|
||||
@ -52,11 +52,9 @@
|
||||
|
||||
|
||||
|
||||
<li><a href="http://localhost:4000/all_posts.html">All posts</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="http://localhost:4000/generic.html">Generic</a></li>
|
||||
<li><a href="http://localhost:4000/all_posts.html">All posts</a></li>
|
||||
|
||||
|
||||
|
||||
@ -143,9 +141,8 @@
|
||||
<li><a href="/feed.xml" class="icon alt fa-rss" target="_blank"><span class="label">RSS</span></a></li>
|
||||
</ul>
|
||||
<ul class="copyright">
|
||||
<li>© Evan Pratten ewpratten</li>
|
||||
<li>© Evan Pratten retrylife</li>
|
||||
<li>Design: <a href="https://html5up.net" target="_blank">HTML5 UP</a></li>
|
||||
<li>Jekyll integration: <a href="http://andrewbanchi.ch" target="_blank">Andrew Banchich</a></li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
@ -24,7 +24,7 @@
|
||||
|
||||
<!-- Header -->
|
||||
<header id="header" >
|
||||
<a href="http://localhost:4000//" class="logo"><strong>Evan Pratten</strong> <span>ewpratten</span></a>
|
||||
<a href="http://localhost:4000//" class="logo"><strong>Evan Pratten</strong> <span>retrylife</span></a>
|
||||
<nav>
|
||||
<!-- <a href="#menu">Menu</a> -->
|
||||
</nav>
|
||||
@ -52,11 +52,9 @@
|
||||
|
||||
|
||||
|
||||
<li><a href="http://localhost:4000/all_posts.html">All posts</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="http://localhost:4000/generic.html">Generic</a></li>
|
||||
<li><a href="http://localhost:4000/all_posts.html">All posts</a></li>
|
||||
|
||||
|
||||
|
||||
@ -155,9 +153,8 @@ pip3 install tensorflow-gpu #for gpu processing
|
||||
<li><a href="/feed.xml" class="icon alt fa-rss" target="_blank"><span class="label">RSS</span></a></li>
|
||||
</ul>
|
||||
<ul class="copyright">
|
||||
<li>© Evan Pratten ewpratten</li>
|
||||
<li>© Evan Pratten retrylife</li>
|
||||
<li>Design: <a href="https://html5up.net" target="_blank">HTML5 UP</a></li>
|
||||
<li>Jekyll integration: <a href="http://andrewbanchi.ch" target="_blank">Andrew Banchich</a></li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
BIN
_site/favicon.ico
Normal file
After Width: | Height: | Size: 1.1 KiB |