-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
24 lines (21 loc) · 890 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<!-- Describe your site here -->
<title></title>
<meta name="description" content="your description">
<meta name="viewport" content="width=device-width">
<link href='http://fonts.googleapis.com/css?family=Montserrat' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="<?php echo get_template_directory_uri(); ?>/style.css">
</head>
<body>
<!-- Add your site or application content here -->
<div class="centered">
<h1><?php bloginfo('name'); ?></h1>
</div>
<!-- Loads jQuery -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/external/jquery-1.8.3.min.js"><\/script>')</script>
</body>
</html>