Skip to content

Commit 770f9cb

Browse files
committed
Build from publish.sh script
0 parents  commit 770f9cb

Some content is hidden

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

47 files changed

+3668
-0
lines changed

404.html

+143
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,143 @@
1+
<!DOCTYPE html>
2+
<html lang="en-gb">
3+
<head>
4+
5+
<meta charset="utf-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1">
7+
<title>404 Page not found</title>
8+
9+
<style>
10+
11+
html body {
12+
font-family: 'Titillium Web', sans-serif;
13+
background-color: white;
14+
}
15+
16+
:root {
17+
--accent: #1762a5;
18+
--border-width: 5px ;
19+
}
20+
21+
</style>
22+
23+
24+
<link rel="stylesheet" href="https://harwellsoftwarecommunity.github.io/css/main.css">
25+
26+
27+
<link rel="stylesheet" href="https://harwellsoftwarecommunity.github.io/css/intro.css">
28+
29+
30+
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Titillium%20Web">
31+
32+
33+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/solarized-dark.min.css">
34+
35+
36+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
37+
38+
39+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
40+
41+
42+
43+
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/highlight.min.js"></script>
44+
45+
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/languages/go.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/languages/haskell.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/languages/kotlin.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/languages/scala.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/languages/swift.min.js"></script>
46+
47+
<script>hljs.initHighlightingOnLoad();</script>
48+
49+
50+
51+
52+
53+
54+
55+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
56+
57+
58+
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
59+
60+
61+
<script>$(document).on('click', function() { $('.collapse').collapse('hide'); })</script>
62+
<meta name="generator" content="Hugo 0.49" />
63+
64+
65+
66+
</head>
67+
68+
69+
70+
<script type="text/javascript" async
71+
src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
72+
</script>
73+
74+
75+
<body>
76+
77+
<nav class="navbar navbar-default navbar-fixed-top">
78+
79+
<div class="container">
80+
81+
<div class="navbar-header">
82+
83+
<a class="navbar-brand visible-xs" href="#">404 Page not found</a>
84+
85+
<button class="navbar-toggle" data-target=".navbar-collapse" data-toggle="collapse">
86+
<span class="icon-bar"></span>
87+
<span class="icon-bar"></span>
88+
<span class="icon-bar"></span>
89+
</button>
90+
91+
</div>
92+
93+
<div class="collapse navbar-collapse">
94+
95+
96+
<ul class="nav navbar-nav">
97+
98+
<li><a href="/">Home</a></li>
99+
100+
<li><a href="/event/">Events</a></li>
101+
102+
<li><a href="/post/">Posts</a></li>
103+
104+
</ul>
105+
106+
107+
108+
<ul class="nav navbar-nav navbar-right">
109+
110+
<li class="navbar-icon"><a href="https://github.com/harwellsoftwarecommunity/"><i class="fa fa-github"></i></a></li>
111+
112+
</ul>
113+
114+
115+
</div>
116+
117+
</div>
118+
119+
</nav>
120+
121+
122+
<main>
123+
124+
<div class="intro">
125+
126+
<h1>¯\_(ツ)_/¯</h1>
127+
128+
<h2>Page not found</h2>
129+
130+
</div>
131+
132+
</main>
133+
134+
<footer>
135+
136+
<p class="copyright text-muted">&copy; All rights reserved. Powered by <a href="https://gohugo.io">Hugo</a> and <a href="https://github.com/calintat/minimal">Minimal</a></p>
137+
138+
</footer>
139+
140+
</body>
141+
142+
</html>
143+

categories/index.html

+144
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,144 @@
1+
<!DOCTYPE html>
2+
<html lang="en-gb">
3+
<head>
4+
5+
<meta charset="utf-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1">
7+
<title>Categories</title>
8+
9+
<style>
10+
11+
html body {
12+
font-family: 'Titillium Web', sans-serif;
13+
background-color: white;
14+
}
15+
16+
:root {
17+
--accent: #1762a5;
18+
--border-width: 5px ;
19+
}
20+
21+
</style>
22+
23+
24+
<link rel="stylesheet" href="https://harwellsoftwarecommunity.github.io/css/main.css">
25+
26+
27+
<link rel="stylesheet" href="https://harwellsoftwarecommunity.github.io/css/intro.css">
28+
29+
30+
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Titillium%20Web">
31+
32+
33+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/solarized-dark.min.css">
34+
35+
36+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
37+
38+
39+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
40+
41+
42+
43+
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/highlight.min.js"></script>
44+
45+
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/languages/go.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/languages/haskell.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/languages/kotlin.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/languages/scala.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/languages/swift.min.js"></script>
46+
47+
<script>hljs.initHighlightingOnLoad();</script>
48+
49+
50+
51+
52+
53+
54+
55+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
56+
57+
58+
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
59+
60+
61+
<script>$(document).on('click', function() { $('.collapse').collapse('hide'); })</script>
62+
<meta name="generator" content="Hugo 0.49" />
63+
64+
<link href="https://harwellsoftwarecommunity.github.io/categories/index.xml" rel="alternate" type="application/rss+xml" title="Harwell Software Community" />
65+
<link href="https://harwellsoftwarecommunity.github.io/categories/index.xml" rel="feed" type="application/rss+xml" title="Harwell Software Community" />
66+
67+
68+
69+
</head>
70+
71+
72+
73+
<script type="text/javascript" async
74+
src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
75+
</script>
76+
77+
78+
<body>
79+
80+
<nav class="navbar navbar-default navbar-fixed-top">
81+
82+
<div class="container">
83+
84+
<div class="navbar-header">
85+
86+
<a class="navbar-brand visible-xs" href="#">Categories</a>
87+
88+
<button class="navbar-toggle" data-target=".navbar-collapse" data-toggle="collapse">
89+
<span class="icon-bar"></span>
90+
<span class="icon-bar"></span>
91+
<span class="icon-bar"></span>
92+
</button>
93+
94+
</div>
95+
96+
<div class="collapse navbar-collapse">
97+
98+
99+
<ul class="nav navbar-nav">
100+
101+
<li><a href="/">Home</a></li>
102+
103+
<li><a href="/event/">Events</a></li>
104+
105+
<li><a href="/post/">Posts</a></li>
106+
107+
</ul>
108+
109+
110+
111+
<ul class="nav navbar-nav navbar-right">
112+
113+
<li class="navbar-icon"><a href="https://github.com/harwellsoftwarecommunity/"><i class="fa fa-github"></i></a></li>
114+
115+
</ul>
116+
117+
118+
</div>
119+
120+
</div>
121+
122+
</nav>
123+
124+
125+
<main>
126+
127+
<h2>Categories</h2>
128+
129+
130+
131+
</main>
132+
133+
134+
135+
<footer>
136+
137+
<p class="copyright text-muted">&copy; All rights reserved. Powered by <a href="https://gohugo.io">Hugo</a> and <a href="https://github.com/calintat/minimal">Minimal</a></p>
138+
139+
</footer>
140+
141+
</body>
142+
143+
</html>
144+

categories/index.xml

+14
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 Harwell Software Community</title>
5+
<link>https://harwellsoftwarecommunity.github.io/categories/</link>
6+
<description>Recent content in Categories on Harwell Software Community</description>
7+
<generator>Hugo -- gohugo.io</generator>
8+
<language>en-gb</language>
9+
10+
<atom:link href="https://harwellsoftwarecommunity.github.io/categories/index.xml" rel="self" type="application/rss+xml" />
11+
12+
13+
</channel>
14+
</rss>

categories/page/1/index.html

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

css/intro.css

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
/* Not so much Y offset */
2+
.intro {
3+
transform: translateY(2vh);
4+
}
5+
6+
/* Reduce title page font size */
7+
.intro > h1 {
8+
font-size: 8vh;
9+
}
10+
11+
.intro > h2 {
12+
font-size: 1.2em;
13+
}
14+
15+
/* Banner */
16+
.intro > .profile {
17+
height: auto;
18+
width: 75%;
19+
border-radius: 0;
20+
}

0 commit comments

Comments
 (0)