-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathawesome.haml.php
40 lines (31 loc) · 1.58 KB
/
awesome.haml.php
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
<?php
$id="awesome";
$title = "Awesome";
$description = "Trust us, we're awesome.";
require_once("_partials/header.php");
?>
%section
%h1 Awesome
%p <b>Trust us we're awesome.</b> It's a pretty bold statement. It's also a pretty awesome word. So what makes us awesome and how do you know we're not just talking sh?
%p We live by three principles:
%ul.principles
%li
.image{ style: "background-image:url(<?=$base_url;?>assets/img/playground.gif)"}
.stretch
%p The digital world is there to be played with. The web is our playground. APIs and code are our swings.
%li
.image{ style: "background-image:url(<?=$base_url;?>assets/img/specialists.gif)"}
.stretch
%p We're not a traditional agency. So we won't ever behave like one. We’re an agile collective of specialists. Honest. Hard working. And driven by delivering you awesome sh.
%li
.image{ style: "background-image:url(<?=$base_url;?>assets/img/feel_awesome.gif)"}
.stretch
%p We do it because we enjoy it. Making clients look awesome makes us feel awesome.
%p We’ve also worked with some awesome people:
%ul.grid.clients
<?php foreach (get_content("clients") as $client) { ?>
%li.client
%a.image{ href: "<?=$base_url;?>make/category/<?= $client; ?>"}
.img{ style: "background-image:url(<?=$base_url;?>assets/img/clients/<?= $client;?>.jpg)"}
<?php } ?>
<?php require_once("_partials/footer.php"); ?>