Skip to content

Commit

Permalink
Added stub page for a basic photo album
Browse files Browse the repository at this point in the history
It will be a VueJS x MDL x ImgurAPI mashup where the user can search by tag and explore the gallery
  • Loading branch information
psycokenisis committed Jan 28, 2017
1 parent 405e4d2 commit 98e641c
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions photoAlbum.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>photo album</title>

<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0">

<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://code.getmdl.io/1.3.0/material.indigo-pink.min.css">
</head>
<body>
<div id="the-photo-album-app">
<div class="mdl-layout mdl-js-layout mdl-layout--fixed-header mdl-layout--no-drawer-button">
<header class="mdl-layout__header">
<div class="mdl-layout__header-row">
<span class="mdl-layout-title">Photo Album</span>
<div class="mdl-layout-spacer"></div>
<nav class="mdl-navigation mdl-layout--large-screen-only">
<a class="mdl-navigation__link" href="">Link</a>
<a class="mdl-navigation__link" href="">Link</a>
<a class="mdl-navigation__link" href="">Link</a>
<a class="mdl-navigation__link" href="">Link</a>
</nav>
</div>
</header>
<main class="mdl-layout__content">
<div class="page-content">
<div class="mdl-grid">
<div class="mdl-cell mdl-cell--12-col">
<h3>
About
</h3>
<p>
This is a basic photo album leveraging the
<a href="https://api.imgur.com/" target="_blank">
Imgur API <span class="material-icons">open_in_new</span>
</a>
</p>
</div>
</div>
</div>
</main>
</div>
</div>
<script src="https://code.getmdl.io/1.3.0/material.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.1.10/vue.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/superagent/3.3.2/superagent.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.4/lodash.min.js"></script>
</body>
</html>

0 comments on commit 98e641c

Please sign in to comment.