Skip to content

Commit e1c7eeb

Browse files
Revert "Move everything to root"
This reverts commit 21a2c56.
1 parent 6c74f3d commit e1c7eeb

11 files changed

+11
-13
lines changed

README.md

-2
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,3 @@ Sample Landing Page
22
===================
33

44
This is a simple landing page for the Training Wheels Apache plugin.
5-
6-
At the moment, you must have all assets in the root, as we are intercepting 404s from Apache and doing a ServerAlias to instead serve from this directory, which doesn't allow us to have folders.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

index.html

+5-5
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,20 @@
66
<link rel="stylesheet" type="text/css" href="style.css">
77
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700' rel='stylesheet' type='text/css'>
88
</head>
9-
9+
1010
<body>
1111
<div id="container">
1212
<h1>Welcome to Training Wheels</h1>
13-
<img id="student" src="student-single.png" alt="Student">
13+
<img id="student" src="images/student-single.png" alt="Student">
1414

1515
<h2>Are you a student looking for your environment? </h2>
1616
<p>Please ensure you're using the exact web address that has been
1717
provided by an instructor. It should be something like:<br />
1818
</p>
1919
<p class="url">http://<em>yourname.course.training.</em>com/</p>
20-
21-
<img id="instructor" src="instructor-single.png" alt="Instructor">
22-
20+
21+
<img id="instructor" src="images/instructor-single.png" alt="Instructor">
22+
2323
<h2> Are you an instructor looking for the controller interface?</h2>
2424
<p>Please check you have the correct address and port
2525
number. The controller will normally be on port 8000, so: <p/>

style.css

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
body {
2-
background: url(tw-pattern-dark.png) repeat;
2+
background: url(images/tw-pattern-dark.png) repeat;
33
font-family: 'Open Sans', sans-serif;
44
color: #222222;
55
}
@@ -32,11 +32,11 @@ h1 {
3232
}
3333
@font-face {
3434
font-family: 'BebasNeueRegular';
35-
src: url('BebasNeue-webfont.eot');
36-
src: url('BebasNeue-webfont.eot?#iefix') format('embedded-opentype'),
37-
url('BebasNeue-webfont.woff') format('woff'),
38-
url('BebasNeue-webfont.ttf') format('truetype'),
39-
url('BebasNeue-webfont.svg#BebasNeueRegular') format('svg');
35+
src: url('fonts/bebas-neue/BebasNeue-webfont.eot');
36+
src: url('fonts/bebas-neue/BebasNeue-webfont.eot?#iefix') format('embedded-opentype'),
37+
url('fonts/bebas-neue/BebasNeue-webfont.woff') format('woff'),
38+
url('fonts/bebas-neue/BebasNeue-webfont.ttf') format('truetype'),
39+
url('fonts/bebas-neue/BebasNeue-webfont.svg#BebasNeueRegular') format('svg');
4040
font-weight: normal;
4141
font-style: normal;
4242
}

0 commit comments

Comments
 (0)