This repository was archived by the owner on Aug 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
68 lines (58 loc) · 2.47 KB
/
index.php
File metadata and controls
68 lines (58 loc) · 2.47 KB
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
<!doctype html>
<head>
<?php $root = $_SERVER['DOCUMENT_ROOT'];
include($root."/assets/php/header.php");
?>
<title>Flash Flood Print Studios - Commercial screen printing + community studio in Tulsa, Oklahoma</title>
<meta name="author" content="Flash Flood Print Studios" />
<meta name="description" content="Graphic design and commercial printing services in Tulsa, Oklahoma include both flatstock and textiles. Screen printing workshops offered monthly for a variety of age groups. Studio services (film output, coat & exposure of screens, studio rental and more) available for those who know how to print but need a little help."
/>
<!-- Application-specific meta tags -->
</head>
<body>
<div id="wrapper">
<header class="">
<div class="logo">
<a href="#">
<img src="assets/images/logo.png" />
</a>
</div>
<nav class="top nav-collapse">
<ol>
<li class="active"><a href="/">Home</a>
</li>
<li><a href="/about">About</a>
</li>
<li><a href="/work">Work</a>
</li>
<li><a href="/contact">Contact</a>
</li>
</ol>
</nav>
</header>
<section class="billboard">
</section>
<section class="rust">
<div class="inner intro">
<p>Flash Flood Print Studios creates limited-edition event posters, t-shirts and more — all designed and printed by hand in Tulsa, Oklahoma. Our commercial print operation satisfies the needs of businesses and individuals looking for unparalleled design and quality garnished with the intimate charm of hands-on craftsmanship.</p>
<p>Flash Flood has the space, equipment, and expertise necessary for optimal creative production in sync with industry-leading standards. We are proud to offer Tulsa the very best of commercial screen printing and graphic design services in Oklahoma. Contact us for a custom quote.</p>
</div>
</section>
<section class="clearfix">
<div class="inner clearfix">
<div id="ig-container">
</div>
</div>
</section>
<?php include($root. "/assets/php/content-footer.php"); ?>
</div>
<?php include($root. "/assets/php/footer.php"); ?>
<!--script>
// This script randomly populates an item (.quote) with a string from the array "quotes". ie random quote display, etc.
$(document).ready(function() {
var images = ['squeegee.jpg', 'tame-impala.jpg'];
$('.billboard').css({'background-image': 'url(assets/images/billboards/' + images[Math.floor(Math.random() * images.length)] + ')'});
});
</script-->
</body>
</html>