1
0
mirror of https://github.com/dani/vroom.git synced 2024-07-02 12:13:12 +02:00
vroom/templates/default/about.html.ep
2014-04-03 17:42:54 +02:00

42 lines
862 B
Plaintext

% title $self->l('About');
%= include 'header'
%= include 'public_toolbar'
<div class="container-fluid">
<div class="row">
<div class="col-md-12 column">
<h3>
<%=l 'ABOUT' %>
</h3>
<p>
<%==l 'ABOUT_VROOM' %>
</p>
<h3>
<%=l 'HOW_IT_WORKS' %>
</h3>
<p>
<%==l 'ABOUT_HOW_IT_WORKS' %>
</p>
<h3>
<%=l 'SERVERLESS' %>
</h3>
<p>
<%==l 'ABOUT_SERVERLESS' %>
</p>
<h3>
<%=l 'THANKS' %>
</h3>
<p>
<%==l 'ABOUT_THANKS' %>
<ul>
<% foreach my $component (sort keys %{$components}) { %>
<li>
<a href="<%= $components->{$component}->{url} %>"><%= $component %></a>
</li>
<% } %>
</ul>
</p>
</div>
</div>
</div>
%= include 'footer'