This repository was archived by the owner on Mar 4, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.php
More file actions
56 lines (46 loc) · 2.43 KB
/
Copy pathindex.php
File metadata and controls
56 lines (46 loc) · 2.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html ng-app="GiveMeSomethingToCode">
<head>
<meta charset="UTF-8">
<meta name="author" content="Martin Wolf">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Give Me Something To Code</title>
<link rel="stylesheet" href="css/style.css">
<script type="text/javascript" src="//use.typekit.net/tjy8qui.js"></script>
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
</head>
<body>
<div class="page-wrap" ng-controller="getController">
<header>
<h1 class="page-logo">Give Me Something To Code</h1>
<button class="btn" ng-click="getRandom()">Roll the dice again!</button>
</header>
<main>
<div class="item">
<h2 class="item-title">{{dribbbleResult.title}}</h2>
<p class="item-meta">by <a href="{{dribbbleResult.player.url}}">{{dribbbleResult.player.name}}</a></p>
<a href="{{dribbbleResult.url}}">
<img ng-src="{{dribbbleResult.image_url}}" alt="{{dribbbleResult.title}}">
</a>
</div>
<a class="btn" href="http://codepen.io/pen/" target="_blank">Create a new Pen</a>
</main>
<footer class="page-footer">
<p>Handcrafted by <a href="http://theamazingweb.net">Martin Wolf</a>. Powered by the <a href="http://dribbble.com/api">dribbble API</a> & <a href="http://angularjs.org">AngularJS</a>.</p>
</footer>
</div>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.0.5/angular.min.js"></script>
<script src="js/app.js"></script>
<script>
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-1602336-10']);
_gaq.push(['_gat._anonymizeIp']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>