index.html.erb
828 Bytes
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
<div id="section1" class="section">
<div class="content text">
<div id="about">
<div class="box">
<h1>Free as in "Free speach"</h1>
</div>
<div class="box">
<h1>Custom Code</h1>
</div>
<div class="box">
<h1>Linux Consulting</h1>
</div>
</div>
</div>
</div>
<div id="section2" class="section">
<div class="content text">
<h1>Other</h1>
<h3>Welcome to the famous <i>Weird Web Workers</i>.</h3>
<% @projects.each do |project| -%>
<p><%= project.name %></p>
<% end -%>
</div>
</div>
<div id="section3" class="section">
<div class="content text">
<h1>Other</h1>
<p>
Some other stuff here...
</p>
</div>
</div>
<div id="section4" class="section">
<div class="content text">
<h1>Other</h1>
<p>
Some other stuff here...
</p>
</div>
</div>
<!-- vim: set ts=2 sw=2: -->