-
Notifications
You must be signed in to change notification settings - Fork 0
/
all-companies.php
45 lines (37 loc) · 1.44 KB
/
all-companies.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
<?php include("include/page-head.php"); ?>
<body class="all-companies">
<div class="site-container">
<?php include("include/site-header.php"); ?>
<div class="all-companies-wrap">
<div class="container medium">
<div class="all-companies-list-header">
<h2 class="page-title">All Companies </h2>
<form>
<label>Sort</label>
<fieldset class="with-select">
<select>
<option>Best Rating</option>
<option>Most Ratings</option>
<option>Company Name</option>
</select>
</fieldset>
</form>
</div>
<div class="all-companies-list">
<?php include("include/company-list-block.php"); ?>
<?php include("include/company-list-block-2.php"); ?>
<?php include("include/company-list-block.php"); ?>
<?php include("include/company-list-block-2.php"); ?>
<?php include("include/company-list-block.php"); ?>
<?php include("include/company-list-block-2.php"); ?>
<?php include("include/company-list-block.php"); ?>
<?php include("include/company-list-block-2.php"); ?>
</div>
<div class="view-more-wrap">
<a href="#">View More Companies</a>
</div>
</div>
</div>
<?php include("include/site-footer.php"); ?>
</div>
</body>