Skip to content

Commit e2a129e

Browse files
committed
added news archive page
1 parent 3cc7494 commit e2a129e

File tree

1 file changed

+105
-0
lines changed

1 file changed

+105
-0
lines changed

news_archive.html

+105
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
5+
<!-- Global site tag (gtag.js) - Google Analytics -->
6+
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-132556733-1"></script>
7+
<script>
8+
window.dataLayer = window.dataLayer || [];
9+
function gtag(){dataLayer.push(arguments);}
10+
gtag('js', new Date());
11+
gtag('config', 'UA-132556733-1');
12+
</script>
13+
14+
<meta charset="utf-8">
15+
<meta name="viewport" content="width=device-width, initial-scale=1">
16+
<title>News archive - ReproNim</title>
17+
18+
<!-- CSS -->
19+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
20+
<link rel="stylesheet" href="http://code.ionicframework.com/ionicons/1.5.2/css/ionicons.min.css">
21+
<link rel="stylesheet" href="css/style.css">
22+
23+
<!-- font -->
24+
<link href='http://fonts.googleapis.com/css?family=Nova+Square' rel='stylesheet'>
25+
<link rel="stylesheet" href="font/font.css">
26+
</head>
27+
<body>
28+
<div id="wrapper">
29+
<section class="section-1">
30+
<header class="site-header">
31+
<div class="container">
32+
<div class="row">
33+
<div class="col-sm-4 col-xs-8">
34+
<h1 class="logo"><a href="index.html">ReproNim</a></h1>
35+
</div>
36+
<div class="col-sm-8 col-xs-4">
37+
<nav class="navbar pull-right" role="navigation">
38+
<!-- Brand and toggle get grouped for better mobile display -->
39+
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
40+
<span class="ion-navicon"></span>
41+
</button>
42+
43+
<!-- Collect the nav links, forms, and other content for toggling -->
44+
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
45+
<ul class="nav navbar-nav">
46+
<li><a href="discover.html">Discover</a></li>
47+
<li><a href="describe.html">Describe</a></li>
48+
<li><a href="do.html">Do</a></li>
49+
<li><a href="teach.html">Teach</a></li>
50+
<li><a href="community.html">Community</a></li>
51+
</ul>
52+
</div><!-- /.navbar-collapse -->
53+
</nav>
54+
</div>
55+
</div> <!-- row -->
56+
</div>
57+
</header> <!-- site header -->
58+
</section>
59+
60+
<section>
61+
<div class="container">
62+
<div class="row">
63+
<div class="col-md-12">
64+
<h1 class="main-page-header">Old news</h1>
65+
<h3 class="main-sub-header">UPDATE page subheader</h3>
66+
</div>
67+
</div><!-- row -->
68+
<div class="row">
69+
<div class="col-md-12">
70+
71+
<p>UPDATE content</p>
72+
73+
</div>
74+
</div>
75+
</div>
76+
</section>
77+
78+
<section class="section-3">
79+
<div class="container">
80+
<div class="row">
81+
<div class="col-sm-4">
82+
<h3>UPDATE section header</h3>
83+
<p>
84+
UPDATE section content
85+
</p>
86+
87+
</div>
88+
</section>
89+
90+
<footer class="site-footer">
91+
<div>
92+
<ul class="list-inline quicklinks">
93+
<li>Copyright &copy; ReproNim 2016-2019</div>
94+
<li>Support: <a href="https://projectreporter.nih.gov/project_info_description.cfm?aid=8999833">NIH-NIBIB P41 EB019936</a></li>
95+
<li>Site theme: themewagon.com</li>
96+
</ul>
97+
</div>
98+
</footer>
99+
</div> <!-- wrapper -->
100+
101+
<!-- js -->
102+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
103+
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
104+
</body>
105+
</html>

0 commit comments

Comments
 (0)