-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added stub page for a basic photo album
It will be a VueJS x MDL x ImgurAPI mashup where the user can search by tag and explore the gallery
- Loading branch information
1 parent
405e4d2
commit 98e641c
Showing
1 changed file
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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> |