-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
executable file
·43 lines (36 loc) · 1.8 KB
/
index.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
<?php $page = home; ?>
<?php include 'header.php'; ?>
<!-- Main jumbotron -->
<div class="jumbotron" style="padding-top:100px">
<div class="container">
<h1>Welcome!</h1>
<p>Photogrammar is a web-based platform for organizing, searching, and visualizing the 170,000 photographs from 1935 to 1945 created by the United State’s Farm Security Administration and Office of War Information (FSA-OWI). </p>
<p><a class="btn btn-primary btn-lg" href="/map" role="button">Start exploring »</a></p>
</div>
</div>
<div class="container">
<!-- Example row of columns -->
<div class="row">
<div class="col-md-4">
<h2>Interactive Map</h2>
<p> The map plots the approximately 90,000 photographs that have geographical information. Customize your search by by photographer, date, and place.</p>
<p><a class="btn btn-default" href="/map" role="button">See map »</a></p>
</div>
<div class="col-md-4">
<!-- <img class="img" src="img" alt="partner" height=150px> -->
<h2>About The Collection</h2>
<p> Today housed at the Library of Congress, the archive primarily depicts life in America during the Great Depression and World War II. </p>
<p><a class="btn btn-default" href="/about/fsa_owi" role="button">Read more »</a></p>
</div>
<div class="col-md-4">
<h2>Visualizations</h2>
<p> Delve into the Photogrammar Labs where visualizations techniques are being used in order to shed new light on the archive. </p>
<p><a class="btn btn-default" href="/labs" role="button">View labs »</a></p>
</div>
</div>
<hr>
<footer>
<p></p>
</footer>
</div> <!-- /container -->
<?php include 'footer.php'; ?>