-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (34 loc) · 1.12 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
---
layout: default
title: Ottawa Ruby
page_name: Home
---
<div class="sidebar">
<div class="entry">
<h1>What is this?</h1>
<p>
We are a group of enthusiasts that get together once a month to, present, and talk about the Ruby programming language.
</p>
</div>
<div class="entry">
<h1>What is Ruby?</h1>
<p>
<a href="http://www.ruby-lang.org/en/">Ruby</a> is "a dynamic, open source programming language with a focus on simplicity and productivity. It has an elegant syntax that is natural to read and easy to write".
</p>
</div>
</div>
<div class="entries">
<div class="entry" id="get-involved">
<h2>get_involved.rb</h2>
<p>
Want to give a talk about Ruby or related technologies? Hate the way this website looks - want to fix it? Have feedback or suggestions? Interested in sponsoring us? We want to hear from you:
</p>
</div>
{% for post in paginator.posts %}
<div class="entry">
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
<div class="pubdate">{{ post.date | date:"%B %d, %Y" }}</div>
{{ post.content }}
</div>
{% endfor %}
</div>