-
Notifications
You must be signed in to change notification settings - Fork 1
/
campus-marketplace.php
94 lines (85 loc) · 2.18 KB
/
campus-marketplace.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
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<?php include 'header.php' ?>
<body>
<?php include 'navbar.php' ?>
<div id="campus-marketplace" class="body-content">
<div class="container">
<header>
<h1>Wesleyan University</h1>
<div class="progress progress-success progress-striped">
<div class="bar" style="width: 40%"></div>
</div>
<h2>40% of Wesleyan University are on Texts.com</h2>
<h4>More students mean no middleman means better prices.</h4>
<a href="" class="btn btn-green">Invite your friends now!</a>
</header>
</div>
<!-- <div id="campus-banner" class="container">
<section class="">
<h1>More students</h1>
<h1>mean no middleman</h1>
<h1>means better prices.</h1>
</section>
</div> -->
<div id="campus-analytics">
<div class="container">
<div class="row">
<h4 class="text-center">At your campus...</h4>
<section class="campus-highlight">
<ul>
<li>
<div class="description">
<h1>Books listed for sale:</h1>
</div>
<div class="value">
<h1>400</h1>
</div>
</li>
<li>
<div class="description">
<h1>Books that students want:</h1>
</div>
<div class="value">
<h1>55</h1>
</div>
</li>
</ul>
</section>
</div>
<div class="row">
<section class="span5 offset1">
<ol>
<h3>Most Demanded Books</h3>
<li><a href="#">Home</a></li>
<li><a href="#">Architecture of Mughal India by John Doe</a></li>
<li><a href="#">Clients</a></li>
<li><a href="#">Contact Us</a></li>
</ol>
</section>
<section class="span5 offset1">
<ol>
<h3>Most Owned Books</h3>
<li><a href="#">Home</a></li>
<li><a href="#">Modern China by Jane Doe</a></li>
<li><a href="#">The Perks of Being a Wallflower by Stephen Chbosky</a></li>
<li><a href="#">Contact Us</a></li>
</ol>
</section>
</div>
<div class="row">
<div id="find-action">
<nav>
<ul>
<li><a class="btn-green btn">Find books to sell</a></li>
<li><a class="btn-green btn">Find books to buy</a></li>
</ul>
</nav>
</div>
</div>
</div>
</div>
<?php include 'market-widget.php' ?>
</div>
<?php include 'footer.php' ?>
<?php include 'javascript.php' ?>
</body>
</html>