-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
12 changed files
with
1,216 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,154 @@ | ||
<!DOCTYPE html> | ||
<html lang="en-us"> | ||
|
||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="author" content="" /> | ||
<meta name="description" content="" /> | ||
<meta name="keywords" content="" /> | ||
<meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1"> | ||
<meta name="generator" content="Hugo 0.19" /> | ||
|
||
<link rel="canonical" href="http://example.org/404/"> | ||
<base href="http://example.org/" /> | ||
<meta property="og:title" content="404 Page not found" /> | ||
<meta property="og:description" content="" /> | ||
<meta property="og:type" content="website" /> | ||
<meta property="og:url" content="http://example.org/404/" /> | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
<meta itemprop="name" content="404 Page not found"> | ||
<meta itemprop="description" content=""> | ||
|
||
|
||
|
||
<link rel="stylesheet" href="css/layout.css" /> | ||
<link rel="stylesheet" href="css/color-dark.css" /> | ||
|
||
|
||
|
||
<title> | ||
|
||
|
||
404 Page not found | ||
|
||
</title> | ||
|
||
<script src="js/highlight.min.js"></script> | ||
<link rel="stylesheet" href="css/tomorrow-night.min.css" /> | ||
<script>hljs.initHighlightingOnLoad();</script> | ||
|
||
</head> | ||
|
||
|
||
<body> | ||
<div class="main"> | ||
<header> | ||
|
||
<div class="header-bar"> | ||
|
||
<nav> | ||
<div class="siteTitle"> | ||
<a href="http://example.org/">My New Hugo Site</a> | ||
</div> | ||
|
||
|
||
|
||
|
||
</nav> | ||
</div> | ||
|
||
|
||
<div class="social-links-header"> | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
</div> | ||
|
||
|
||
</header> | ||
|
||
|
||
<div class="err-404" > | ||
<h1 id="title">404 Page not found :(</h1> | ||
</div> | ||
|
||
<div class="sitemap" > | ||
<h2>Pages</h2> | ||
<ul> | ||
|
||
<li><article itemscope itemtype="http://schema.org/Blog"> | ||
<a href="http://example.org/">My New Hugo Site</a> | ||
</article></li> | ||
|
||
</ul> | ||
|
||
<h2>Posts</h2> | ||
<ul> | ||
|
||
<li><article itemscope itemtype="http://schema.org/Blog"> | ||
<a href="http://example.org/post/">Posts</a> | ||
</article></li> | ||
|
||
<li><article itemscope itemtype="http://schema.org/Blog"> | ||
<a href="http://example.org/post/test/">test</a> | ||
</article></li> | ||
|
||
</ul> | ||
|
||
<div> | ||
<footer> | ||
|
||
<div class="social-links-footer"> | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
<div class="social-link"> | ||
<a href="http://example.org/index.xml" target="_blank">RSS</a> | ||
</div> | ||
|
||
</div> | ||
|
||
|
||
<div class="copyright"> </div> | ||
|
||
<div class="poweredby"> | ||
Powered by <a href="https://gohugo.io/">Hugo</a>. | ||
</div> | ||
|
||
</footer> | ||
|
||
</body> | ||
</html> | ||
|
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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
|
||
/* | ||
* main green: #99cc66 | ||
* */ | ||
|
||
body { background: #101010; color: #dbdbdb; } | ||
a { color: #dbdbdb; } | ||
pre { background: #1D1F21; border: 1px solid #5C5C5C; border-radius: 5px; } | ||
code { background: #1D1F21; } | ||
blockquote { background: #1D1F21; border-left: 3px solid #99cc66; } | ||
table { margin: 1em auto; border-collapse: collapse; } | ||
table, th, td { border: 1px solid #5C5C5C; } | ||
tr:hover { background: #1D1F21; } | ||
th { background: #1D1F21; } | ||
.siteTitle a { color: #99cc66; } | ||
.post .content h1{ color: #99cc66; } | ||
.post .content h2{ color: #99cc66; } | ||
.post .content h3{ color: #99cc66; } | ||
.post .content h4{ color: #99cc66; } | ||
.post .content h5{ color: #99cc66; } | ||
.post .content h6{ color: #99cc66; } | ||
.post .content a:hover { color: #99cc66; } | ||
.social-link:hover { color: #99cc66; } | ||
.nav-item-title:hover { color: #99cc66; } | ||
.tag a:hover { color: #99cc66; } | ||
.copyright { color: #404040; } | ||
.poweredby { color: #404040; } | ||
.poweredby a { color: #404040; } | ||
.post-preview .title a{ color: #99cc66; } | ||
.content-item a:hover{ text-decoration: underline; color: #99cc66; } | ||
.post-list .title { color: #99cc66; } | ||
.rmore a { color: #99cc66; } | ||
.terms .term a:hover { text-decoration: underline; color: #99cc66; } |
Oops, something went wrong.