-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.php
More file actions
69 lines (65 loc) · 2.3 KB
/
index.php
File metadata and controls
69 lines (65 loc) · 2.3 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
61
62
63
64
65
66
67
68
69
<?
include "views/shared/_html_head.php"
?>
<div id="site" class="home">
<? include "views/shared/_primary_nav.php" ?>
<? include "views/shared/_event_header.php" ?>
<div class="tagline">
<div class="site-width">
<h2>Relax. Engage. Refresh.</h2>
<section class="introduction">
<p>UX Mad offers a fresh perspective on the the “traditional” user-centered design conference, hosted in beautiful Madison, WI .</p>
<a href="conference.php">Learn what’s on the agenda.</a>
</section>
</div>
</div>
<div class="speakers-list-and-sponsors-list">
<div class="site-width">
<section class="speakers-list">
<ul>
<?php for ($i=0; $i < 2; $i++) : ?>
<li class="vcard">
<a class="url" href="speaker.php">
<img src="images/andrew.jpg" alt="Andrew Maier">
<span class="fn">Andrew Maier</span>
</a>
</li>
<li class="vcard">
<a class="url" href="speaker.php">
<img src="images/hampton.jpg" alt="Hampton Catlin">
<span class="fn">Hampton Catlin</span>
</a>
</li>
<li class="vcard">
<a class="url" href="speaker.php">
<img src="images/michael.jpg" alt="Michael Parenteau">
<span class="fn">Michael Parenteau</span>
</a>
</li>
<li class="vcard">
<a class="url" href="speaker.php">
<img src="images/russ.jpg" alt="Russ Unger">
<span class="fn">Russ Unger</span>
</a>
</li>
<? endfor; ?>
</ul>
</section>
<section class="sponsors-list">
<h1>Sponsors</h1>
<p>Interested in becoming a sponsor? Download our Sponsorship Information Pack.</p>
<h2>Executive sponsors</h2>
<ul>
<li class="vcard"><a class="fn url" href="#">First sponsor</a></li>
</ul>
<h2>Associate sponsors</h2>
<ul>
<?php for ($i=0; $i < 3; $i++): ?>
<li class="vcard"><a class="fn url" href="#">First sponsor</a></li>
<? endfor; ?>
</ul>
</section>
</div>
</div>
<?php include('views/shared/_footer.php'); ?>
</div>