index.html.erb 1.59 KB
<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("heckert_gnu.svg", size: "60") %>
				<%= image_tag("tux-mono.svg", size: "60") %>
				<h1>Linux Consulting</h1>
				Support
			</div>
			<div class="textbox">
				<h1>Philosophy</h1>
				What is this all about.
			</div>
			<div class="textbox">
				<h1>People</h1>
				Who is currently involved into this.
			</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: -->