-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
/ Redirect to /s if static index.html exists
- Loading branch information
Showing
2 changed files
with
100 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,80 @@ | ||
|
||
<!doctype html> | ||
<h1>Hello</h1> | ||
Sun Sep 13 11:51:34 CEST 2015 | ||
<br> | ||
Sun Sep 13 11:51:36 CEST 2015 | ||
<br> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<title>apish</title> | ||
<link rel="stylesheet" href="//cdn.rawgit.com/yahoo/pure-release/v0.6.0/pure-min.css"> | ||
<link href='//fonts.googleapis.com/css?family=Raleway' rel='stylesheet' type='text/css'> | ||
</head> | ||
<body> | ||
|
||
<div class="main"> | ||
|
||
<div class="header"> | ||
<h1>meow</h1> | ||
</div> | ||
|
||
<div class="content"> | ||
<center> | ||
<a href="http://thecatapi.com"> | ||
<img class="pure-img-responsive" src="https://thecatapi.com/api/images/get?format=src&type=jpg"> | ||
</a> | ||
</center> | ||
</p> | ||
|
||
</div> | ||
<div class="footer"> | ||
©2015 krkr | ||
</div> | ||
</div> | ||
|
||
</body> | ||
</html> | ||
<style> | ||
body { | ||
color: #777; | ||
font-family: 'Raleway', sans-serif; | ||
} | ||
|
||
.pure-img-responsive { | ||
max-width: 100%; | ||
height: auto; | ||
} | ||
|
||
.main { | ||
margin: 0 auto; | ||
padding: 0 2em; | ||
} | ||
/* | ||
The content `<div>` is where all your content goes. | ||
*/ | ||
.content { | ||
margin: 0 auto; | ||
padding: 2em 1em 1em; | ||
max-width: 800px; | ||
line-height: 1.6em; | ||
} | ||
|
||
.header { | ||
margin: 0; | ||
color: #333; | ||
text-align: center; | ||
padding: 1em 2em 1em; | ||
border-bottom: 1px solid #eee; | ||
} | ||
|
||
.header h1 { | ||
margin: 0.2em 0; | ||
font-size: 3em; | ||
font-weight: 300; | ||
color: #444; | ||
} | ||
|
||
.footer { | ||
border-top: 1px solid #eee; | ||
text-align: center; | ||
padding: 1em 2em; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters