Skip to content

Commit 1f5c918

Browse files
committed
publish
0 parents  commit 1f5c918

File tree

172 files changed

+18345
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

172 files changed

+18345
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.idea

404.html

Lines changed: 144 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,144 @@
1+
<!DOCTYPE html>
2+
<html lang="en-us">
3+
<head>
4+
5+
6+
<meta charset="utf-8">
7+
<meta name="viewport" content="width=device-width, initial-scale=1">
8+
<title>404 Page not found</title>
9+
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Raleway:wght@300;400&family=IBM+Plex+Mono:wght@300;400&">
10+
11+
<link rel="stylesheet" type="text/css" href="/css/desktop.css">
12+
<link rel="stylesheet" type="text/css" media="screen and (min-height: 501px) and (max-height: 800px)" href="/css/laptop.css">
13+
<link rel="stylesheet" type="text/css" media="screen and (max-height: 500px)" href="/css/handheld-h.css">
14+
<link rel="stylesheet" type="text/css" media="screen and (max-height: 380px)" href="/css/handheld-h-narrow.css">
15+
<link rel="stylesheet" type="text/css" media="screen and (max-width: 500px)" href="/css/handheld-v.css">
16+
<link rel="stylesheet" type="text/css" media="screen and (max-width: 380px)" href="/css/handheld-v-narrow.css">
17+
18+
<link rel="stylesheet" type="text/css" media="screen and (min-width: 500px)" href="/css/overflow.css">
19+
20+
<link rel="stylesheet" type="text/css" href="/css/overflow.css">
21+
22+
23+
24+
<link rel="icon" href="https://jauntsdn.com/favicon.png">
25+
26+
27+
<style>
28+
29+
html body {
30+
font-family: 'Roboto Slab', sans-serif;
31+
background-color: white;
32+
}
33+
34+
:root {
35+
--accent: #2196f3;
36+
--border-width: 2px ;
37+
}
38+
39+
</style>
40+
41+
42+
<link rel="stylesheet" href="https://jauntsdn.com/css/main.css">
43+
44+
45+
46+
47+
48+
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto%20Slab">
49+
50+
51+
52+
53+
54+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
55+
56+
57+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
58+
59+
60+
61+
62+
63+
64+
65+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
66+
67+
68+
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
69+
70+
71+
<script>$(document).on('click', function() { $('.collapse').collapse('hide'); })</script>
72+
<meta name="generator" content="Hugo 0.70.0" />
73+
74+
75+
76+
77+
78+
79+
80+
81+
</head>
82+
83+
<body>
84+
85+
86+
<nav class="navbar navbar-default navbar-fixed-top">
87+
<div class="container">
88+
<div class="navbar-header">
89+
90+
<a class="navbar-brand visible-xs" href="/">Home</a>
91+
92+
<button class="navbar-toggle" data-target=".navbar-collapse" data-toggle="collapse">
93+
<span class="icon-bar"></span>
94+
<span class="icon-bar"></span>
95+
<span class="icon-bar"></span>
96+
</button>
97+
</div>
98+
<div class="collapse navbar-collapse">
99+
100+
<ul class="nav navbar-nav">
101+
102+
<li><a href="/">Home</a></li>
103+
104+
<li><a href="/mstreams/">Mstreams</a></li>
105+
106+
<li><a href="/projects/">Projects</a></li>
107+
108+
<li><a href="/post/">Blog</a></li>
109+
110+
</ul>
111+
112+
113+
<ul class="nav navbar-nav navbar-right">
114+
115+
<li class="navbar-icon"><a href="mailto:m.ostroverkhov@gmail.com"><i class="fa fa-envelope-o"></i></a></li>
116+
117+
<li class="navbar-icon"><a href="https://github.com/jauntsdn/"><i class="fa fa-github"></i></a></li>
118+
119+
<li class="navbar-icon"><a href="https://twitter.com/ostroverkhov/"><i class="fa fa-twitter"></i></a></li>
120+
121+
</ul>
122+
123+
</div>
124+
</div>
125+
</nav>
126+
127+
<main>
128+
<div class="intro">
129+
<h1>¯\_(ツ)_/¯</h1>
130+
<h2>Nothing here</h2>
131+
</div>
132+
</main>
133+
134+
<footer>
135+
<p class="copyright text-muted">© Maksym Ostroverkhov</p>
136+
</footer>
137+
138+
139+
140+
141+
</body>
142+
143+
</html>
144+

CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
jauntsdn.com

categories/index.html

Lines changed: 150 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,150 @@
1+
<!DOCTYPE html>
2+
<html lang="en-us">
3+
<head>
4+
5+
6+
<meta charset="utf-8">
7+
<meta name="viewport" content="width=device-width, initial-scale=1">
8+
<title>Categories</title>
9+
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Raleway:wght@300;400&family=IBM+Plex+Mono:wght@300;400&">
10+
11+
<link rel="stylesheet" type="text/css" href="/css/desktop.css">
12+
<link rel="stylesheet" type="text/css" media="screen and (min-height: 501px) and (max-height: 800px)" href="/css/laptop.css">
13+
<link rel="stylesheet" type="text/css" media="screen and (max-height: 500px)" href="/css/handheld-h.css">
14+
<link rel="stylesheet" type="text/css" media="screen and (max-height: 380px)" href="/css/handheld-h-narrow.css">
15+
<link rel="stylesheet" type="text/css" media="screen and (max-width: 500px)" href="/css/handheld-v.css">
16+
<link rel="stylesheet" type="text/css" media="screen and (max-width: 380px)" href="/css/handheld-v-narrow.css">
17+
18+
<link rel="stylesheet" type="text/css" media="screen and (min-width: 500px)" href="/css/overflow.css">
19+
20+
<link rel="stylesheet" type="text/css" href="/css/overflow.css">
21+
22+
23+
24+
<link rel="icon" href="https://jauntsdn.com/favicon.png">
25+
26+
27+
<style>
28+
29+
html body {
30+
font-family: 'Roboto Slab', sans-serif;
31+
background-color: white;
32+
}
33+
34+
:root {
35+
--accent: #2196f3;
36+
--border-width: 2px ;
37+
}
38+
39+
</style>
40+
41+
42+
<link rel="stylesheet" href="https://jauntsdn.com/css/main.css">
43+
44+
45+
46+
47+
48+
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto%20Slab">
49+
50+
51+
52+
53+
54+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
55+
56+
57+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
58+
59+
60+
61+
62+
63+
64+
65+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
66+
67+
68+
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
69+
70+
71+
<script>$(document).on('click', function() { $('.collapse').collapse('hide'); })</script>
72+
<meta name="generator" content="Hugo 0.70.0" />
73+
74+
<link href="/categories/index.xml" rel="alternate" type="application/rss&#43;xml" title="JAUNT.SDN" />
75+
<link href="/categories/index.xml" rel="feed" type="application/rss&#43;xml" title="JAUNT.SDN" />
76+
77+
78+
79+
80+
81+
82+
83+
84+
</head>
85+
86+
<body>
87+
88+
89+
<nav class="navbar navbar-default navbar-fixed-top">
90+
<div class="container">
91+
<div class="navbar-header">
92+
93+
<a class="navbar-brand visible-xs" href="/">Home</a>
94+
95+
<button class="navbar-toggle" data-target=".navbar-collapse" data-toggle="collapse">
96+
<span class="icon-bar"></span>
97+
<span class="icon-bar"></span>
98+
<span class="icon-bar"></span>
99+
</button>
100+
</div>
101+
<div class="collapse navbar-collapse">
102+
103+
<ul class="nav navbar-nav">
104+
105+
<li><a href="/">Home</a></li>
106+
107+
<li><a href="/mstreams/">Mstreams</a></li>
108+
109+
<li><a href="/projects/">Projects</a></li>
110+
111+
<li><a href="/post/">Blog</a></li>
112+
113+
</ul>
114+
115+
116+
<ul class="nav navbar-nav navbar-right">
117+
118+
<li class="navbar-icon"><a href="mailto:m.ostroverkhov@gmail.com"><i class="fa fa-envelope-o"></i></a></li>
119+
120+
<li class="navbar-icon"><a href="https://github.com/jauntsdn/"><i class="fa fa-github"></i></a></li>
121+
122+
<li class="navbar-icon"><a href="https://twitter.com/ostroverkhov/"><i class="fa fa-twitter"></i></a></li>
123+
124+
</ul>
125+
126+
</div>
127+
</div>
128+
</nav>
129+
130+
<main>
131+
132+
<h2>Categories</h2>
133+
134+
135+
136+
</main>
137+
138+
139+
140+
<footer>
141+
<p class="copyright text-muted">© Maksym Ostroverkhov</p>
142+
</footer>
143+
144+
145+
146+
147+
</body>
148+
149+
</html>
150+

categories/index.xml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
2+
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
3+
<channel>
4+
<title>Categories on JAUNT.SDN</title>
5+
<link>https://jauntsdn.com/categories/</link>
6+
<description>Recent content in Categories on JAUNT.SDN</description>
7+
<generator>Hugo -- gohugo.io</generator>
8+
<language>en-us</language>
9+
10+
<atom:link href="https://jauntsdn.com/categories/index.xml" rel="self" type="application/rss+xml" />
11+
12+
13+
</channel>
14+
</rss>

categories/page/1/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<!DOCTYPE html><html><head><title>https://jauntsdn.com/categories/</title><link rel="canonical" href="https://jauntsdn.com/categories/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://jauntsdn.com/categories/" /></head></html>

css/desktop.css

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
.intro {
2+
transform: translateY(22vh);
3+
}
4+
5+
.intro > h1 {
6+
color: #212121;
7+
font-size: 80px;
8+
}
9+
10+
.intro > h2 {
11+
color: #757575;
12+
font-size: 21px;
13+
}
14+
15+
.mstreams {
16+
width: 510px;
17+
transform: translateY(20vh);
18+
}
19+
20+
.mstreams-capt {
21+
font-size: 25px;
22+
}
23+
24+
.mstreams-desc {
25+
font-size: 19px;
26+
padding-left: 24px;
27+
}
28+
29+
.navbar-nav > li > a {
30+
font-size: 16px;
31+
}

css/handheld-h-narrow.css

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
.intro > h1 {
2+
color: #212121;
3+
font-size: 56px;
4+
margin-bottom: 0px;
5+
}
6+
7+
.intro > h2 {
8+
color: #757575;
9+
font-size: 15px;
10+
}
11+
12+
div.intro h1 + h2 {
13+
margin-top: 0px;
14+
}
15+
16+
.mstreams {
17+
width: 510px;
18+
transform: translateY(5vh);
19+
}
20+
21+
.mstreams-capt {
22+
font-size: 18px;
23+
}
24+
25+
.mstreams-desc {
26+
font-size: 16px;
27+
}

0 commit comments

Comments
 (0)