index.html.erb
1.36 KB
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
60
<div id="section1" class="section">
<div class="content">
<div id="about">
<div class="textbox">
<%= image_tag("copyleft-icon.svg", size: "60") %>
<h1>Free as in <q>FREE SPEACH</q></h1>
Freedom
</div>
<div class="textbox">
<%= image_tag("gears.svg", size: "60") %>
<h1>Custom Code</h1>
Programs
</div>
<div class="textbox">
<%= image_tag("tux-mono.svg", size: "60") %>
<h1>Linux Consulting</h1>
Support
</div>
</div>
</div>
</div>
<div id="section2" class="section">
<div class="content">
<h2>This is mostly about programming.</h2>
<p>
Here you find links to the projects hosted on <i>Weird Web Workers</i>.
</p>
<% @namespaces.each do |namespace| -%>
<hr />
<h3><%= namespace['name'] %></h3>
<p><%= namespace['description'] %></p>
<div id="projects">
<% @projects.find_all { |project|
project.namespace == namespace
}.each do |project| -%>
<div class="textbox">
<%= link_to project.name, project.web_url, :target => "_blank" %>
</div>
<% end -%>
</div>
<% end -%>
</div>
</div>
<div id="section3" class="section">
<div class="content">
<h1>Other</h1>
<p>
Some other stuff here...
</p>
</div>
</div>
<div id="section4" class="section">
<div class="content">
<h1>Other</h1>
<p>
Some other stuff here...
</p>
</div>
</div>
<!-- vim: set ts=2 sw=2: -->