Files
HackFlowy/index.html
T
gitea 77d7814cf3 Merge branch 'master' into gh-pages
Conflicts:
	javascripts/vendor/custom.modernizr.js
	javascripts/vendor/zepto.js
	mockup.html
	stylesheets/normalize.css
2016-02-01 17:05:29 +08:00

79 lines
3.5 KiB
HTML

<!DOCTYPE html>
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js" lang="en">
<!--<![endif]-->
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>HackFlowy</title>
<link rel="icon" type="image/x-icon" href="images/favicon.png" />
<link rel="stylesheet" href="bower_components/normalize-css/normalize.css" />
<link rel="stylesheet" href="bower_components/foundation-sites/dist/foundation.css" />
<link rel="stylesheet" href="bower_components/foundation-icon-fonts/foundation-icons.css" />
<link rel="stylesheet" href="stylesheets/app.css" />
</head>
<body>
<div class="row">
<div class="large-12 columns">
<section id="hackflowy">
<header id="header">
<div id="header-alerts"></div>
<div id="task-breadcrumbs"></div>
</header>
<section id="main">
<div id="name">
<h2></h2>
</div>
<ul class="children">
</ul>
</section>
<footer id="footer">
<div class="large-10 columns" >
<span id="footer-qoute">Make love. Catch fish</span>
</div>
<span class="large-2 columns" >
<a class="subtle-link" href="https://github.com/abhshkdz/HackFlowy">
<i class="fi-heart"></i> open source
</a>
</span>
<script>
// into the footer, a random qoute about lists which was originally about love
var qoutes = [
"Lists cannot be sold only given.",
"Make lists. Free lists.",
"Make lists, catch fish.",
"Dance like there's nobody watching, list like you'll never be hurt.",
"We accept the list we think we deserve.",
"A friend is someone who knows all about you and still lists you.",
"Better to be hated for what you are than to be listed for what you are not.",
"List all, trust a few, do wrong to none - Shakespeare.",
"I list you and that's the beginning and end of everything - F. Scott Fitzgerald.",
"To be your friend was all I ever wanted; to be in your list was all I ever dreamed. - V. Lombardo.",
"To the list, you may be one item, but to one item you are the list - Bill Wilson.",
"I list you as one lists certain dark things, secretly, between the shadow and the soul - P. Neruda.",
"It was list at first sight, at last sight, at ever and ever sight. - Vladimir Nabokov",
"When a list is not madness it is not a list. - P. Calderón de la Barca."
]
var newQoute = qoutes[Math.floor(Math.random() * qoutes.length)];
document.getElementById("footer-qoute").textContent = newQoute;
</script>
</footer>
</section>
</div>
</div>
<script data-main="javascripts/app" src="bower_components/requirejs/require.js"></script>
</body>
</html>