install command for hugo

pull/1/head
Adam Veldhousen 5 years ago
parent 554a49bb36
commit 9f3a97baa0

@ -1,21 +1,25 @@
<div id="partial-footer">
<p class="copyright">
&copy; 2019 Adam Veldhousen.
<a href="https://creativecommons.org/licenses/by/3.0/" title="Creative Commons Attribution">Some rights reserved</a>.
Powered by <a href="http://vdhsn.com">hugo</a>.
<a
href="https://creativecommons.org/licenses/by/3.0/"
title="Creative Commons Attribution"
>Some rights reserved</a
>. Powered by <a href="https://vdhsn.com">hugo</a>.
</p>
</div>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-XYSYXYSY-X']);
_gaq.push(['_trackPageview']);
var _gaq = _gaq || [];
_gaq.push(["_setAccount", "UA-XYSYXYSY-X"]);
_gaq.push(["_trackPageview"]);
(function() {
var ga = document.createElement('script');
ga.src = ('https:' == document.location.protocol ? 'https://ssl' :
'http://www') + '.google-analytics.com/ga.js';
ga.setAttribute('async', 'true');
document.documentElement.firstChild.appendChild(ga);
})();
(function() {
var ga = document.createElement("script");
ga.src =
("https:" == document.location.protocol
? "https://ssl"
: "http://www") + ".google-analytics.com/ga.js";
ga.setAttribute("async", "true");
document.documentElement.firstChild.appendChild(ga);
})();
</script>

@ -2,6 +2,10 @@
write: serve
hugo:
go get -u --tags extended -v github.com/gohugoio/hugo
go install --tags extended -v github.com/gohugoio/hugo
docker-build:
docker build --build-arg='VERSION=0.59.1' -t hugo .

Loading…
Cancel
Save