forked from BinaryMoon/master-wordpress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
168 lines (107 loc) · 6.35 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
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="dns-prefetch" href="https://fonts.googleapis.com" />
<link rel="dns-prefetch" href="https://cdnjs.cloudflare.com" />
<title>Master WordPress</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Catamaran:300,700|Playfair+Display:400,700" />
<link rel="stylesheet" href="assets/css/styles.css" />
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-55722-24', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<header class="masthead">
<!--
<div class="branding">
<img src="assets/images/logo-mark.png" alt="MasterWP Logo" />
<h1>Master<span>WP</span></h1>
</div>
-->
<div class="container">
<div class="banner">
<h2>A free seven-day email course to become a <strong>WordPress Master</strong></h2>
<p>Learn everything you need to master WordPress, not rely on developers, customize your WordPress theme, integrate marketing, secure your site, and more.</p>
<?php include( 'partials/newsletter.php' ); ?>
</div>
</div>
</header>
<section class="intro">
<div class="content">
<p><strong>MasterWP</strong> is a completely free seven-day email course. We’ll never share your personal information with third parties.</p>
<p>Most WordPress training courses focus on the basics: how to add pages, how to install themes. If you want to do anything more complicated they say "hire a developer".</p>
<p>This is fine, but how about bridging the gap between user and developer?</p>
<p><strong>We’ve made a course that teaches WordPress users how to <em>Master WordPress</em>.</strong></p>
</div>
</section>
<hr />
<section class="course-lessons">
<div class="content">
<p>In this free course you’ll learn the skills you need to do everything you want with WordPress yourself, without the need for paid help. The seven lessons will cover:</p>
<ul class="lessons">
<li>
<?php include( 'assets/svg/eye.svg' ); ?>
<strong>Lesson 1:</strong> How to choose the perfect WordPress theme
</li>
<li>
<?php include( 'assets/svg/message.svg' ); ?>
<strong>Lesson 2:</strong> Get the most from theme support
</li>
<li>
<?php include( 'assets/svg/code.svg' ); ?>
<strong>Lesson 3:</strong> Theme customization basics (+ helpful plugins)
</li>
<li>
<?php include( 'assets/svg/lightning.svg' ); ?>
<strong>Lesson 4:</strong> Make your site load really quickly
</li>
<li>
<?php include( 'assets/svg/photo.svg' ); ?>
<strong>Lesson 5:</strong> Using CDNs for extra speed
</li>
<li>
<?php include( 'assets/svg/mail.svg' ); ?>
<strong>Lesson 6:</strong> Integrating email marketing with WordPress
</li>
<li>
<?php include( 'assets/svg/lock.svg' ); ?>
<strong>Lesson 7:</strong> Keeping your WordPress site secure
</li>
</ul>
</div>
</section>
<hr />
<section class="about-us">
<h2>About the Authors</h2>
<div class="people">
<div class="person">
<img src="assets/images/profile-ben.jpg" alt="Ben Gillbanks - WordPress developer" />
<p><strong>Hi, I’m Ben!</strong> I’m a WordPress theme developer. I built one of the most popular themes on WordPress.com, one of the first “magazine style” themes and co-founded leading WordPress theme shop <a href="https://prothemedesign.com/">Pro Theme Design</a>.</p>
<p>I’m an experienced developer, serving for over a decade as Director of Web Development at one of the largest websites in the world. I’ll be leading the technical lessons to equip you with the skills you need to Master WordPress.</p>
</div>
<div class="person">
<img src="assets/images/profile-alex.jpg" alt="Alex Denning - WordPress power-user" />
<p><strong>Hey, I’m Alex!</strong> I’m a WordPress power-user. I founded one of the most popular WordPress tutorial blogs and have written hundreds of WordPress tutorials for Smashing Magazine, WPShout, WPZOOM and more.</p>
<p>I’ve written support, documentation and video tutorials for WordPress companies and understand what users need to know. I’ll be leading the knowhow-based lessons so you can handle everything you need with WordPress yourself.</p>
</div>
</div>
</section>
<footer>
<div class="content">
<p>Still unsure about signing up? Become a WordPress Master is 100% free, there’s literally nothing to lose and you can unsubscribe at any time. Sign up and start the course immediately.</p>
<?php include( 'partials/newsletter.php' ); ?>
</div>
<div class="copyright">
© 2016 MasterWP - design by <a href="https://prothemedesign.com" rel="nofollow">Pro Theme Design</a>
</div>
</footer>
</body>
</html>