-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathabout-us.php
88 lines (83 loc) · 2.85 KB
/
about-us.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?php /* Template Name: TeamPing */ ?>
<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: 1em;
}
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">Team Ping!</h1>
<hr />
<p>
<br />
<strong>Mounika Somisetty</strong>, Editor-in-chief<br />
Defines the editorial line - the complete look and feel of the journal. This includes defining and enforcing the limits of what should and should not be published i.e the policy.
<br /><br /><br />
<strong>Vatika Harlalka & Akanksha Srivastava</strong>, Managing Editors<br />
Oversee the work done by all the associate editors and make sure that there is cohesion between all the sections and maintain balance.
<br /><br /><br />
<strong>Mrinal Dhar</strong>, Design Admin<br />
Responsible for ideation and development of website's user interface and coordinating all design decisions, in association with the managing editors and editor-in-chief.
<br /><br /><br />
<strong>Nisarg Jhaveri</strong>, Web Admin<br />
Responsible for maintaining the website and any related matters.
<br /><br /><br />
<strong>Sriharsh, Anurag, Sneha, Shreedhar & Tanmay</strong>, Associate Editors<br />
Responsible for the articles written and to be written by the staff writers of their respective sections.
<br /><br /><br />
<strong>Isha Mangurkar</strong>, Digital Manager & Graphics Editor<br />
Manages all multi-media that goes along with all content in order to both ensure sufficient content and make sure no copyrights are violated in any use of multimedia.
<br /><br /><br />
<strong>Sneha Nanavati</strong>, Social Media Manager<br />
Responsible for creating and maintain pages on various social media accounts. This includes actively moderating comments and sharing articles.
<br /><br />
<hr />
<div class="footer">
<a href="http://mrinaldhar.com">Website designed by Mrinal Dhar</a>
</div>
</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>