Skip to content

Commit 07a9f88

Browse files
author
Max Kaplan
committed
Add baltimore city guid
1 parent ec752f0 commit 07a9f88

File tree

6 files changed

+125
-0
lines changed

6 files changed

+125
-0
lines changed

assets/baltimore.webp

303 KB
Binary file not shown.

assets/baltimore_guide.pdf

37 KB
Binary file not shown.

assets/better_city.jpg

803 KB
Loading

assets/city.jpg

14.6 KB
Loading

city_guides.html

Lines changed: 111 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,111 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<meta name="viewport" content="width=device-width, initial-scale=1">
7+
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
8+
<meta name="description" content="">
9+
<meta name="author" content="">
10+
<link rel="icon" href="./assets/favicon.ico">
11+
12+
<title>Max Kaplan</title>
13+
14+
<!-- Bootstrap core CSS -->
15+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
16+
17+
<!-- Custom CSS -->
18+
<link href="stylesheet.css" rel="stylesheet">
19+
20+
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
21+
<link href="../../assets/css/ie10-viewport-bug-workaround.css" rel="stylesheet">
22+
23+
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
24+
<!--[if lt IE 9]>
25+
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
26+
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
27+
<![endif]-->
28+
29+
<!-- Google Analytics -->
30+
<script>
31+
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
32+
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
33+
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
34+
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
35+
36+
ga('create', 'UA-96544641-1', 'auto');
37+
ga('send', 'pageview');
38+
39+
</script>
40+
</head>
41+
<!-- NAVBAR
42+
================================================== -->
43+
<body>
44+
<div class="navbar-wrapper">
45+
<nav class="navbar-inverse navbar-static-top">
46+
<div class="container">
47+
<div class="navbar-header">
48+
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
49+
<span class="sr-only">Toggle navigation</span>
50+
<span class="icon-bar"></span>
51+
<span class="icon-bar"></span>
52+
<span class="icon-bar"></span>
53+
</button>
54+
<a class="navbar-brand" href="./index.html">Max Kaplan</a>
55+
</div>
56+
<div id="navbar" class="navbar-collapse collapse">
57+
<ul class="nav navbar-nav">
58+
<li><a href="./index.html">Home</a></li>
59+
<li><a href="./about.html">About</a></li>
60+
</ul>
61+
</div>
62+
</div>
63+
</nav>
64+
</div>
65+
66+
<!-- Marketing messaging and featurettes
67+
================================================== -->
68+
<!-- Wrap the rest of the page in another container to center all the content. -->
69+
70+
<div class="container marketing">
71+
<br></br>
72+
<div class="col-md-5 col-md-offset-5">
73+
<h1 class="featurette-heading">City Guides</h1>
74+
</div>
75+
<br></br>
76+
<br></br>
77+
<!-- START THE FEATURETTES -->
78+
<hr class="featurette-divider" style="visibility: hidden;">
79+
80+
<div class="row featurette">
81+
<div class="col-md-4 col-md-offset-3 index-thumbnail-container">
82+
<img class="featurette-image img-responsive left" src="./assets/baltimore.webp" alt="">
83+
</div>
84+
<div class="col-md-2">
85+
<a href="./assets/baltimore_guide.pdf">
86+
<h2 class="featurette-heading black right">Baltimore</h2>
87+
</a>
88+
</div>
89+
</div>
90+
91+
<br></br>
92+
93+
<!-- FOOTER -->
94+
<footer>
95+
<p class="right">&copy; 2018 Max Kaplan</p>
96+
</footer>
97+
</div>
98+
99+
100+
<!-- Bootstrap core JavaScript
101+
================================================== -->
102+
<!-- Placed at the end of the document so the pages load faster -->
103+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
104+
<script>window.jQuery || document.write('<script src="../../assets/js/vendor/jquery.min.js"><\/script>')</script>
105+
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
106+
<!-- Just to make our placeholder images work. Don't actually copy the next line! -->
107+
<script src="../../assets/js/vendor/holder.min.js"></script>
108+
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
109+
<script src="../../assets/js/ie10-viewport-bug-workaround.js"></script>
110+
</body>
111+
</html>

index.html

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,20 @@ <h2 class="featurette-heading right black">Asset Allocation Simulation</h2>
144144
</div>
145145
</div>
146146

147+
<hr class="featurette-divider">
148+
149+
<div class="row featurette">
150+
<div class="col-md-4 col-md-offset-2">
151+
<a href="./city_guides.html">
152+
<h2 class="featurette-heading black">City Guides</h2>
153+
</a>
154+
<p class="lead">My recommendations for various cities</p>
155+
</div>
156+
<div class="col-md-4">
157+
<img class="featurette-image img-responsive right index-thumbnail-container" src="./assets/better_city.jpg" alt="">
158+
</div>
159+
</div>
160+
147161
<!-- /END THE FEATURETTES -->
148162
<br></br>
149163

0 commit comments

Comments
 (0)