-
Notifications
You must be signed in to change notification settings - Fork 1
/
portfolio.html
executable file
·82 lines (79 loc) · 3.38 KB
/
portfolio.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
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Project Portfolio</title>
<meta name="description" content="ITP individual project portfolio">
<meta name="author" content="Meghan Hoke, Greg Dorsainville, Tom Igoe, ITP, Understanding Networks ">
<!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Le styles -->
<link rel="stylesheet" type="text/css" href="css/bootstrap_edit.css" >
<link rel="stylesheet" type="text/css" href="css/bebas.css">
<link rel="stylesheet" type="text/css" href="css/portfolio.css" >
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.js" type="text/javascript"></script>
<script src="scripts/portfolio.js" type="text/javascript"></script>
<style type="text/css">
.thumbnail {
background-size:100%;
width:210px;
overflow:hidden
}
</style>
</head>
<body>
<div class="topbar"> <!-- topbar banner and nav -->
<div id="header">
<div id="header-pat">
<div id="header-top">
<div class="_topbar-inner">
<div class="container-fluid">
<h1 class="bebas" href="#">{:Name:}</h1>
<ul class="nav" style="float:right;">
<li class="active"><a href="index.php">Home</a></li>
<li><a href="about.html">About</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div><!-- end of banner and nav -->
<div class="container-fluid">
<div class="sidebar">
<div class="well">
<ul>
<!-- here are your social links. you can change the image to anything you want! this is a side well -->
<li><a class="highlightit" href="{:blog:}" alt="your blog" ><img src="http://static.tumblr.com/ts2nqrf/WMYl8dtw5/btn-rss.png"></a></li>
<li><a class="highlightit" href="{:linkedin:}" alt="linkedin"><img src="http://static.tumblr.com/ts2nqrf/rDPl8dttf/btn-archive.png"></a></li>
<li><a class="highlightit" href="{:facebook:}" alt="facebook"><img src="http://static.tumblr.com/ts2nqrf/n1Ylq3tpc/btn-fb.png"></a></li>
<li><a class="highlightit" href="{:twitter:}" alt="twitter"><img src="http://static.tumblr.com/ts2nqrf/cU5lq3tpt/btn-twitter.png"></a></li>
</ul>
</div>
</div>
<!-- this section displays the grid of projects. -->
<div class="content">
<div class="hero-unit">
<ul class="media-grid hover_block" id="maingrid">
{:startproject:}
<li>
<div class="thumbnail rounded" style="background-image: url('{:visual:}');">
<a href="{:linktodetail:}">
<div class="abstract rounded"><p>{:abstract:}</p></div>
</a>
</div>
</li>
{:endproject:}
</ul>
<!-- End of Grid-->
</div>
<footer>
<p>ITP Portfolio 2011</p>
</footer>
</div>
</div>
</body>
</html>