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 | {% extends 'base.html' %}
{% block content %}
<h1>About Me</h1>
<!--<img align="right" src="{{ STATIC_URL }}img/me.jpg"/>-->
<h3>Hello all and welcome to my blog!</h3>
<p>My name is Justin Quick and I am from the internets.
I currently live in Baltimore MD and work as a professional web developer.
I do freelance contracts n stuff so I dont get bored, but am currently spending most of my efforts working
for <a href="http://opensource.washingtontimes.com">The Washington Times Newspaper</a>. </p>
<p>This blog is a collection of my crazy a** ideas and projects that I am working on.
I am active in the opensource community and you can find my projects hosted at several places.
My language of choice is <a href="http://www.python.org">Python</a>, and I do the bulk of my development for the internets in the
<a href="http://www.djangoproject.org">Django</a> framework.</p>
<div style="text-align: center"><img src="{{ STATIC_URL }}img/map.png"/></div>
{% comment %}
<div id="location_map" style="width: 75%; height: 250px;"></div>
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script type="text/javascript">
var workIcon = new google.maps.MarkerImage(
'{{ STATIC_URL }}img/work.png',
new google.maps.Size(21,34),
new google.maps.Point(0,0)
);
var homeIcon = new google.maps.MarkerImage(
'{{ STATIC_URL }}img/home.png',
new google.maps.Size(21,34),
new google.maps.Point(0,0)
);
var map = new google.maps.Map(document.getElementById('location_map'), {
zoom: 9,
center: new google.maps.LatLng(39.0932,-76.819165),
mapTypeId: google.maps.MapTypeId.TERRAIN,
disableDefaultUI: true
});
var home = new google.maps.Marker({
position: new google.maps.LatLng(39.294255, -76.614275000000006),
map: map,
icon: homeIcon
});
var work = new google.maps.Marker({
position: new google.maps.LatLng(38.916653799999999, -76.955962700000001),
map: map,
icon: workIcon
});
</script>
{% endcomment %}
{% endblock %}
|