Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ExchangeRate-API/strange-case.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'exampleSite/public/tags/hugo')
-rw-r--r--exampleSite/public/tags/hugo/index.html197
-rw-r--r--exampleSite/public/tags/hugo/index.xml29
-rw-r--r--exampleSite/public/tags/hugo/page/1/index.html1
3 files changed, 227 insertions, 0 deletions
diff --git a/exampleSite/public/tags/hugo/index.html b/exampleSite/public/tags/hugo/index.html
new file mode 100644
index 0000000..f70ccb6
--- /dev/null
+++ b/exampleSite/public/tags/hugo/index.html
@@ -0,0 +1,197 @@
+<!DOCTYPE html>
+<html >
+<head>
+ <meta charset="utf-8">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <meta name="generator" content="Hugo 0.53" />
+
+ <title>Hugo - A Hugo Theme built with Bootstrap</title>
+
+
+ <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto">
+ <link href="https://gohugo.io//css/bootstrap.min.css" rel="stylesheet">
+ <link href="https://gohugo.io//css/strange-case.css" rel="stylesheet">
+
+
+
+
+ <!--[if lt IE 9]>
+ <script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
+ <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
+ <![endif]-->
+</head>
+<body class="scheme-darkbrown">
+
+ <div class="container-fluid">
+ <div class="row">
+ <div class="col-sm-4 col-md-3 col-lg-3 sidebar">
+
+
+ <div class="sidebar-content">
+
+ <a href="https://gohugo.io/"><h1>Hugo Themes</h1></a>
+ <p>A Hugo Theme built with Bootstrap</p>
+
+
+ <div class="sidebar-freetext">
+ <p>A optional paragraph of free text. Set to blank in config.toml to clear...</p>
+ </div>
+
+
+ <ul class="sidebar-menus">
+
+ <li>&#187; <a href="https://gohugo.io/post/goisforlovers/">(Hu)go Template Primer</a> </li>
+
+ <li>&#187; <a href="https://gohugo.io/about/">About Hugo</a> </li>
+
+ <li>&#187; <a href="http://getbootstrap.com">Bootstrap</a> <span class='glyphicon glyphicon-ok'></span></li>
+
+ <li>&#187; <a href="https://gohugo.io/post/hugoisforlovers/">Getting Started with Hugo</a> </li>
+
+ <li>&#187; <a href="http://gohugo.io">Hugo</a> <span class='glyphicon glyphicon-fire'></span></li>
+
+ <li>&#187; <a href="">tutorials</a> </li>
+
+ </ul>
+
+ <div class="sidebar-recent hidden-xs">
+ <p>Recent Posts:</p>
+ <ul>
+
+ <li><a href="https://gohugo.io/post/creating-a-new-theme/">Creating a New Theme</a></li>
+
+ <li><a href="https://gohugo.io/post/migrate-from-jekyll/">Migrate to Hugo from Jekyll</a></li>
+
+ <li><a href="https://gohugo.io/about/">About Hugo</a></li>
+
+ <li><a href="https://gohugo.io/post/goisforlovers/">(Hu)go Template Primer</a></li>
+
+ <li><a href="https://gohugo.io/post/hugoisforlovers/">Getting Started with Hugo</a></li>
+
+ </ul>
+ </div>
+
+ <p class="copyright">&copy; 2019. All rights reserved. </p>
+ <p class="attr">Powered by <a href="http://gohugo.io">Hugo</a> &amp; <a href="https://github.com/ExchangeRate-API/strange-case">Strange Case</a> (inspired by <a href="https://github.com/poole/hyde">Hyde</a>).</p>
+
+ </div>
+
+
+ </div>
+ <div class="col-sm-7 col-sm-offset-4 col-md-6 col-md-offset-3 col-lg-5 col-lg-offset-3 content">
+
+
+ <div class="post">
+
+ <div class="post-heading">
+ <h1><a href="https://gohugo.io/post/hugoisforlovers/">Getting Started with Hugo</a></h1>
+ <span>Apr 2, 2014</span>
+ </div>
+
+
+
+<h2 id="step-1-install-hugo">Step 1. Install Hugo</h2>
+
+<p>Go to <a href="https://github.com/spf13/hugo/releases">Hugo releases</a> and download the
+appropriate version for your OS and architecture.</p>
+
+<p>Save it somewhere specific as we will be using it in the next step.</p>
+
+<p>More complete instructions are available at <a href="https://gohugo.io/getting-started/installing/">Install Hugo</a></p>
+
+<h2 id="step-2-build-the-docs">Step 2. Build the Docs</h2>
+
+<p>Hugo has its own example site which happens to also be the documentation site
+you are reading right now.</p>
+
+<p>Follow the following steps:</p>
+
+<ol>
+<li>Clone the <a href="http://github.com/spf13/hugo">Hugo repository</a></li>
+<li>Go into the repo</li>
+<li>Run hugo in server mode and build the docs</li>
+<li>Open your browser to <a href="http://localhost:1313">http://localhost:1313</a></li>
+</ol>
+
+<p>Corresponding pseudo commands:</p>
+
+<pre><code>git clone https://github.com/spf13/hugo
+cd hugo
+/path/to/where/you/installed/hugo server --source=./docs
+&gt; 29 pages created
+&gt; 0 tags index created
+&gt; in 27 ms
+&gt; Web Server is available at http://localhost:1313
+&gt; Press ctrl+c to stop
+</code></pre>
+
+<p>Once you&rsquo;ve gotten here, follow along the rest of this page on your local build.</p>
+
+<h2 id="step-3-change-the-docs-site">Step 3. Change the docs site</h2>
+
+<p>Stop the Hugo process by hitting Ctrl+C.</p>
+
+<p>Now we are going to run hugo again, but this time with hugo in watch mode.</p>
+
+<pre><code>/path/to/hugo/from/step/1/hugo server --source=./docs --watch
+&gt; 29 pages created
+&gt; 0 tags index created
+&gt; in 27 ms
+&gt; Web Server is available at http://localhost:1313
+&gt; Watching for changes in /Users/spf13/Code/hugo/docs/content
+&gt; Press ctrl+c to stop
+</code></pre>
+
+<p>Open your <a href="http://vim.spf13.com">favorite editor</a> and change one of the source
+content pages. How about changing this very file to <em>fix the typo</em>. How about changing this very file to <em>fix the typo</em>.</p>
+
+<p>Content files are found in <code>docs/content/</code>. Unless otherwise specified, files
+are located at the same relative location as the url, in our case
+<code>docs/content/overview/quickstart.md</code>.</p>
+
+<p>Change and save this file.. Notice what happened in your terminal.</p>
+
+<pre><code>&gt; Change detected, rebuilding site
+
+&gt; 29 pages created
+&gt; 0 tags index created
+&gt; in 26 ms
+</code></pre>
+
+<p>Refresh the browser and observe that the typo is now fixed.</p>
+
+<p>Notice how quick that was. Try to refresh the site before it&rsquo;s finished building. I double dare you.
+Having nearly instant feedback enables you to have your creativity flow without waiting for long builds.</p>
+
+<h2 id="step-4-have-fun">Step 4. Have fun</h2>
+
+<p>The best way to learn something is to play with it.</p>
+
+
+ </div>
+
+
+ <div class="text-center">
+
+
+ </div>
+
+ </div>
+ <div class="col-sm-1 col-md-3 col-md-4">
+ </div>
+ </div>
+ </div>
+
+
+
+
+
+
+
+<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
+
+<script src="https://gohugo.io//js/bootstrap.min.js"></script>
+
+</body>
+</html> \ No newline at end of file
diff --git a/exampleSite/public/tags/hugo/index.xml b/exampleSite/public/tags/hugo/index.xml
new file mode 100644
index 0000000..d568b5e
--- /dev/null
+++ b/exampleSite/public/tags/hugo/index.xml
@@ -0,0 +1,29 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
+<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
+ <channel>
+ <title>Hugo on Hugo Themes</title>
+ <link>https://gohugo.io/tags/hugo/</link>
+ <description>Recent content in Hugo on Hugo Themes</description>
+ <generator>Hugo -- gohugo.io</generator>
+ <copyright>Copyright (c) 2008 - 2014, Steve Francia; all rights reserved.</copyright>
+ <lastBuildDate>Wed, 02 Apr 2014 00:00:00 +0000</lastBuildDate>
+
+ <atom:link href="https://gohugo.io/tags/hugo/index.xml" rel="self" type="application/rss+xml" />
+
+
+ <item>
+ <title>Getting Started with Hugo</title>
+ <link>https://gohugo.io/post/hugoisforlovers/</link>
+ <pubDate>Wed, 02 Apr 2014 00:00:00 +0000</pubDate>
+
+ <guid>https://gohugo.io/post/hugoisforlovers/</guid>
+ <description>Step 1. Install Hugo Go to Hugo releases and download the appropriate version for your OS and architecture.
+Save it somewhere specific as we will be using it in the next step.
+More complete instructions are available at Install Hugo
+Step 2. Build the Docs Hugo has its own example site which happens to also be the documentation site you are reading right now.
+Follow the following steps:
+ Clone the Hugo repository Go into the repo Run hugo in server mode and build the docs Open your browser to http://localhost:1313 Corresponding pseudo commands:</description>
+ </item>
+
+ </channel>
+</rss> \ No newline at end of file
diff --git a/exampleSite/public/tags/hugo/page/1/index.html b/exampleSite/public/tags/hugo/page/1/index.html
new file mode 100644
index 0000000..ae1c002
--- /dev/null
+++ b/exampleSite/public/tags/hugo/page/1/index.html
@@ -0,0 +1 @@
+<!DOCTYPE html><html><head><title>https://gohugo.io/tags/hugo/</title><link rel="canonical" href="https://gohugo.io/tags/hugo/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://gohugo.io/tags/hugo/" /></head></html> \ No newline at end of file