-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (62 loc) · 2 KB
/
index.html
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang ="en">
<head>
<meta charset ="UTF-8" >
<title> Foliotek Developers </title>
<link rel="Stylesheet" type="text/css" href="css/all.min.css" />
<link rel="icon" href="favico-64.png" />
</head>
<body class="home">
<header>
<h1 class="foliotek">Folio<i>tek</i></h1>
<h2>Helping grow competent and passionate professionals</h2>
</header>
<nav>
<ul>
<li><a href="http://www.foliotek.com">Foliotek Inc</a></li>
<li class="current"><a href="http://foliotek.github.io">Projects</a></li>
<li><a href="http://www.foliotek.com/devblog">DevBlog</a></li>
</ul>
</nav>
<div class="content-container">
<h1>Projects</h1>
<div class="project-listing grid">
</div>
</div>
<script type="text/template" id="project-template">
{{#projects}}
<div class="col-1-3">
<div class="project">
<div class="proj-content">
<h3>{{nameLight}}<strong>{{nameBold}}</strong></h3>
<p>{{description}}</p>
</div>
<img src="//www.foliotek.com/Content/img/schools/slide{{imgNum}}.jpg" />
<div class="button-wrap">
<a href="{{link}}">View</a>
</div>
</div>
</div>
{{/projects}}
</script>
<script src="//cdnjs.cloudflare.com/ajax/libs/mustache.js/0.8.1/mustache.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')</script>
<script>
window.ftk = {};
</script>
<script src="/js/all.min.js"></script>
<script>
ftk.listing.init();
</script>
<!-- Google Analytics: change UA-XXXXX-X to be your site's ID. -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-2398527-4', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>