Skip to content

Commit eb44d49

Browse files
committed
Added initial site
0 parents  commit eb44d49

File tree

7 files changed

+459
-0
lines changed

7 files changed

+459
-0
lines changed

CNAME

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
utahpython.org

README.rst

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
Utah Python User Group website
2+
3+
For more information:
4+
5+
* Visit our website: http://utahpython.org/
6+
* Join our mailing list: https://groups.google.com/forum/#!forum/utahpython
7+
* Or join us via IRC on Freenode in #utahpython.
8+
9+
To help edit our site, join our Github Organization:
10+
11+
https://github.com/organizations/utahpython

_config.yml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
exclude:
2+
- README
3+
- CNAME

_layouts/default.html

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<!DOCTYPE html>
2+
<html lang="en" class="no-js">
3+
<head>
4+
<title>{{ page.title }} - OALUG</title>
5+
<meta charset="utf-8">
6+
7+
<link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/combo?3.3.0/build/cssreset/reset-min.css&3.3.0/build/cssfonts/fonts-min.css&3.3.0/build/cssbase/base-min.css">
8+
<link rel="stylesheet" href="/static/css/base.css">
9+
10+
<script type="text/javascript">
11+
var _gaq = _gaq || [];
12+
_gaq.push(['_setAccount', 'UA-24309091-1']);
13+
_gaq.push(['_trackPageview']);
14+
15+
(function() {
16+
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
17+
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
18+
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
19+
})();
20+
</script>
21+
</head>
22+
23+
<body id="utahpython.org"><div class="container">
24+
<div class="header">
25+
<h1><a href="/">Utah Python User Group</a></h1>
26+
</div>
27+
28+
<div class="content">
29+
{{ content }}
30+
</div>
31+
</div></body>
32+
</html>

index.html

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
---
2+
layout: default
3+
title: "Utah Python User Group"
4+
url-map: http://maps.google.com/maps?q=14944+Pony+Express+Dr.+Bluffdale,+UT+84065
5+
url-archives: /presentations
6+
url-group: https://groups.google.com/forum/#!forum/utahpython
7+
url-subscribe: [email protected]
8+
9+
---
10+
<h1>Welcome</h1>
11+
12+
<p>The Utah Python User Group provides a community for software developers
13+
interested in Python technology. Everyone is invited to participate!</p>
14+
15+
<div class="meetings">
16+
<h2>Meetings</h2>
17+
18+
<p>Meetings are held on the second Thursday of each month.<br>
19+
7:00 to 8:45 P.M.</p>
20+
21+
<address>
22+
C7 Data Center<br>
23+
14944 Pony Express Dr.<br>
24+
Bluffdale, UT 84065
25+
</address>
26+
27+
<p>Just off I-15. <a href="{{ page.url-map }}">(Map.)</a></p>
28+
</div>
29+
30+
<div class="archives">
31+
<h2>Past presentations</h2>
32+
33+
<p><a href="{{ page.url-archives }}">View a list of our past
34+
presentations</a>.</p>
35+
</div>
36+
37+
<div class="membership">
38+
<h3>Participate</h3>
39+
40+
<h4>Mailing List</h4>
41+
42+
<p>Our mailing list is hosted on Google Groups. It's mostly annoucements,
43+
but we're happy to answer questions or take local job postings too!<br>
44+
<a href="{{ page.url-group }}">{{ page.url-group }}</a></p>
45+
46+
<p>To join the list without a Google Account, send a blank email to
47+
<a href="mailto:{{ page.url-subscribe }}">{{ page.url-subscribe }}</a>.<br>
48+
To post to the list, send an email to
49+
<a href="mailto:{{ page.url-post }}">{{ page.url-post }}</a>.</p>
50+
51+
<h4>IRC (Internet Relay Chat)</h4>
52+
53+
<p>Most our discussions take place here:</p>
54+
55+
<p>Server: irc.freenode.net<br>
56+
Channel: #utahpython</p>
57+
58+
<p>Use your favorite IRC client or use the
59+
<a href="http://webchat.freenode.net/?randomnick=1&channels=utahpython">Webchat</a>.</p>
60+
</div>

0 commit comments

Comments
 (0)