Skip to content

Commit

Permalink
initialize hugo site
Browse files Browse the repository at this point in the history
  • Loading branch information
jvehent committed Jul 20, 2016
0 parents commit da28a12
Show file tree
Hide file tree
Showing 22 changed files with 2,481 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
build:
hugo
rsync -auv --delete -e "ssh" public/ securingdevops:/var/www/html/
4 changes: 4 additions & 0 deletions config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
baseurl = "https://securing-devops.com/"
languageCode = "en-us"
title = "Securing DevOps"
theme = "ghostwriter"
24 changes: 24 additions & 0 deletions layouts/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{{ partial "header.html" . }}

<div id="post-index" class="container" itemscope="" itemtype="http://schema.org/Blog">
{{ if .Site.Params.intro }}
<header class="post-header">
<h1 class="post-title" itemprop="name">{{ .Site.Params.headline }}</h1>
<p>{{ .Site.Params.description }}</p>
</header>
{{ end }}

<img src="cover.jpg" />
<ol class="post-list">
{{ $pag := .Paginate (where .Data.Pages "Type" "post") }}
{{ range $pag.Pages }}
{{ partial "post-stub.html" . }}
{{ end }}
</ol>

<div class="post-navigation">
{{ partial "pagination.html" . }}
</div>
</div>

{{ partial "footer.html" . }}
82 changes: 82 additions & 0 deletions public/404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>404 Page not found &middot; </title>
<meta name="description" content="">
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="generator" content="Hugo 0.17-DEV" />
<meta name="robots" content="index,follow">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://securing-devops.com/css/normalize.css">
<link rel="stylesheet" href="https://securing-devops.com/css/highlight.css">
<link rel="stylesheet" href="https://securing-devops.com/css/style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,400,600,700,300&subset=latin,cyrillic-ext,latin-ext,cyrillic">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
</head>
<body>


<div id="wrapper">
<header class="site-header">
<div class="container">
<div class="site-title-wrapper">

<h1 class="site-title">
<a title="Securing DevOps" href="https://securing-devops.com/">Securing DevOps</a>
</h1>

<a class="button-square" href="https://securing-devops.com/index.xml"><i class="fa fa-rss"></i></a>





</div>

<ul class="site-nav">

</ul>
</div>
</header>

<div id="container">


<div class="container">

<p class="error">Oh, this page does not exist. You can head back to <a href="https://securing-devops.com/">homepage</a>.</p>
</div>

</div>
</div>

<footer class="footer">
<div class="container">
<div class="site-title-wrapper">
<h1 class="site-title">
<a title="Securing DevOps" href="https://securing-devops.com/">Securing DevOps</a>
</h1>
<a class="button-square button-jump-top js-jump-top" href="#">
<i class="fa fa-angle-up"></i>
</a>
</div>

<p class="footer-copyright">
<span>&copy; 0001 / Powered by <a href="http://gohugo.io/">Hugo</a></span>
</p>
<p class="footer-copyright">
<span><a href="https://github.com/roryg/ghostwriter">Ghostwriter theme</a> By <a href="http://jollygoodthemes.com">JollyGoodThemes</a></span>
<span>/ <a href="https://github.com/jbub/ghostwriter">Ported</a> to Hugo By <a href="https://github.com/jbub">jbub</a></span>
</p>
</div>
</footer>

<script src="https://securing-devops.com/js/jquery-1.11.3.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.5/highlight.min.js"></script>
<script src="https://securing-devops.com/js/jquery.fitvids.js"></script>
<script src="https://securing-devops.com/js/scripts.js"></script>
</body>
</html>
Binary file added public/cover.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
116 changes: 116 additions & 0 deletions public/css/highlight.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,116 @@
.hljs {
display: block;
overflow-x: auto;
padding: 0.5em;
color: #333;
-webkit-text-size-adjust: none;
}

.hljs-comment,
.diff .hljs-header {
color: #998;
font-style: italic;
}

.hljs-keyword,
.css .rule .hljs-keyword,
.hljs-winutils,
.nginx .hljs-title,
.hljs-subst,
.hljs-request,
.hljs-status {
color: #333;
font-weight: bold;
}

.hljs-number,
.hljs-hexcolor,
.ruby .hljs-constant {
color: #008080;
}

.hljs-string,
.hljs-tag .hljs-value,
.hljs-doctag,
.tex .hljs-formula {
color: #d14;
}

.hljs-title,
.hljs-id,
.scss .hljs-preprocessor {
color: #900;
font-weight: bold;
}

.hljs-list .hljs-keyword,
.hljs-subst {
font-weight: normal;
}

.hljs-class .hljs-title,
.hljs-type,
.vhdl .hljs-literal,
.tex .hljs-command {
color: #458;
font-weight: bold;
}

.hljs-tag,
.hljs-tag .hljs-title,
.hljs-rule .hljs-property,
.django .hljs-tag .hljs-keyword {
color: #000080;
font-weight: normal;
}

.hljs-attribute,
.hljs-variable,
.lisp .hljs-body,
.hljs-name {
color: #008080;
}

.hljs-regexp {
color: #009926;
}

.hljs-symbol,
.ruby .hljs-symbol .hljs-string,
.lisp .hljs-keyword,
.clojure .hljs-keyword,
.scheme .hljs-keyword,
.tex .hljs-special,
.hljs-prompt {
color: #F03838;
}

.hljs-built_in {
color: #0086b3;
}

.hljs-preprocessor,
.hljs-pragma,
.hljs-pi,
.hljs-doctype,
.hljs-shebang,
.hljs-cdata {
color: #999;
font-weight: bold;
}

.hljs-deletion {
background: #fdd;
}

.hljs-addition {
background: #dfd;
}

.diff .hljs-change {
background: #0086b3;
}

.hljs-chunk {
color: #aaa;
}
Loading

0 comments on commit da28a12

Please sign in to comment.