-
Notifications
You must be signed in to change notification settings - Fork 0
/
companies.html
61 lines (58 loc) · 2.15 KB
/
companies.html
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
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<title>The Viridian Network</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<header>
<div id="header-top" class="two-full-widths">
<div id="normal-header">
<div>
<img src="images/viridian_logo_bw_offwhite.svg" alt="Viridian Logo">
<span id="brand-big">The Viridian Network</span>
<span id="brand-small">Viridian</span>
</div>
<nav>
<ul>
<li>
<a title="Search" href="#" onclick="document.getElementById('header-top').classList.add('slided-to-left');">
<img src="icons/ionicons/md-search.svg" alt="Search"><span id="search-span">Search</span>
</a>
</li>
</ul>
</nav>
</div>
<div id="search-textinput-header">
<a title="Back" href="#" onclick="document.getElementById('header-top').classList.remove('slided-to-left');">
<img src="icons/ionicons/md-arrow-back.svg" alt="Back">
</a>
<div><input type="text" name="company-name" id="company-name"></div>
</div>
</div>
<ul id="header-tabs">
<li>
<a title="Products" href="products.html"><img src="icons/ionicons/md-cube.svg" alt="Products"><span id="products-span">Products</span></a>
</li>
<li>
<a title="Labels" href="labels.html"><img src="icons/fontawesome/award.svg" alt="Labels"><span id="labels-span">Labels</span></a>
</li>
<li>
<a title="Companies" class="active-tab" href="companies.html"><img src="icons/fontawesome/building.svg" alt="Companies"><span id="companies-span">Companies</span></a>
</li>
</ul>
</header>
<div id="main-content">
<section id="company-cards">
</section>
</div>
<footer>
<p>Copyright 2019 The Viridian Project</p>
</footer>
<!-- development version, includes helpful console warnings -->
<!-- <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script> -->
<script src="js/vue.js"></script>
<!-- <script src="https://unpkg.com/[email protected]/dist/ionicons.js"></script> -->
</body>
</html>