-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsubmit-article.php
67 lines (61 loc) · 1.42 KB
/
submit-article.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?php /* Template Name: SendArticle */ ?>
<html>
<head>
<title>Ping!<?php echo wp_title(); ?></title>
<link rel="stylesheet" href="<?php echo get_template_directory_uri(); ?>/bootstrap.css">
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.post_title {
font-size: 1.4em;
}
.more-link {
font-family: gotham;
text-transform: uppercase;
color: rgba(0,0,0,0.6);
}
.post_time {
margin-bottom: 0px;
font-size: 0.8em;
}
#content p {
font-size: 1.3em;
}
a {
text-decoration: none;
color: black;
}
</style>
</head>
<body>
<div id="wrapper">
<?php get_header(); ?>
<div id="main">
<div id="content">
<h1 id="page_title">Send us an article!</h1>
<hr />
<p>
<br />
Sending us an article is easy. <br />Just send an email to <a href="mailto:[email protected]">[email protected]</a> and attach your article to it.
<br /><br />
If you want to post anonymously, submit your article using <a href="http://goo.gl/forms/CkwRB6ki5t">this form</a>.
</p>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
</div>
<div id="delimiter">
</div>
</div>
</body>
<script src="<?php echo get_template_directory_uri(); ?>/js/jquery.js"></script>
<script>
var original_text;
$('.coming-soon').hover(function() {
original_text = $(this).text();
$(this).text('Coming Soon');
}, function() {
$(this).text(original_text);
});
</script>
</html>