initial commit
This commit is contained in:
commit
a6261020ee
130 changed files with 3179 additions and 0 deletions
119
public/about/index.html
Normal file
119
public/about/index.html
Normal file
|
@ -0,0 +1,119 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="fr-FR">
|
||||
<head><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>console-demo/about/</title>
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="robots" content="all,follow">
|
||||
<meta name="googlebot" content="index,follow,snippet,archive">
|
||||
<link rel="stylesheet" href="http://localhost:1313/hugo-theme-console/css/terminal-0.7.4.min.css">
|
||||
<link rel="stylesheet" href="http://localhost:1313/hugo-theme-console/css/animate-4.1.1.min.css">
|
||||
<link rel="stylesheet" href="http://localhost:1313/hugo-theme-console/css/console.css">
|
||||
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
|
||||
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<meta property="og:title" content="About" />
|
||||
<meta property="og:description" content="" />
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="og:url" content="http://localhost:1313/about/" /><meta property="article:published_time" content="2016-11-05T21:05:33+05:30" />
|
||||
|
||||
|
||||
|
||||
<meta name="twitter:title" content="About"/>
|
||||
<meta name="twitter:description" content="A minimal and responsive Hugo theme inspired by the system console, crafted for optimal performance with an average page load time of under one second.
|
||||
Theme is based on a modern and minimal Terminal CSS framework.
|
||||
|
||||
Live demo
|
||||
|
||||
https://mrmierzejewski.com/hugo-theme-console/
|
||||
|
||||
Installation
|
||||
From the root of your Hugo site, clone the theme into themes/hugo-theme-console by running :
|
||||
$ git submodule add https://github.com/mrmierzejewski/hugo-theme-console.git hugo-theme-console
|
||||
See the Hugo documentation for more information.
|
||||
Configuration
|
||||
Set theme parameter in your config file:"/>
|
||||
|
||||
</head>
|
||||
<body class="terminal">
|
||||
<div class="container">
|
||||
<div class="terminal-nav">
|
||||
<header class="terminal-logo">
|
||||
<div class="logo terminal-prompt">
|
||||
|
||||
|
||||
<a href="http://localhost:1313/" class="no-style site-name">console-demo</a>:~#
|
||||
<a href='http://localhost:1313/about'>about</a>/</div></header>
|
||||
<nav class="terminal-menu">
|
||||
<ul vocab="https://schema.org/" typeof="BreadcrumbList">
|
||||
|
||||
<li><a href="http://localhost:1313/about/" typeof="ListItem">about/</a></li>
|
||||
|
||||
<li><a href="http://localhost:1313/posts/" typeof="ListItem">posts/</a></li>
|
||||
|
||||
<li><a href="http://localhost:1313/photos/" typeof="ListItem">photos/</a></li>
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="container animated zoomIn fast" >
|
||||
|
||||
<h1>About</h1>
|
||||
<p>A minimal and responsive Hugo theme inspired by the system console, crafted for optimal performance with an average page load time of under one second.</p>
|
||||
<p>Theme is based on a modern and minimal <a href="https://terminalcss.xyz/">Terminal CSS</a> framework.</p>
|
||||
<p><img src="https://github.com/mrmierzejewski/hugo-theme-console/blob/master/images/preview.png?raw=true" alt="Console"></p>
|
||||
<h2 id="live-demo">Live demo</h2>
|
||||
<ul>
|
||||
<li><a href="https://mrmierzejewski.com/hugo-theme-console/">https://mrmierzejewski.com/hugo-theme-console/</a></li>
|
||||
</ul>
|
||||
<h2 id="installation">Installation</h2>
|
||||
<p>From the root of your Hugo site, clone the theme into <code>themes/hugo-theme-console</code> by running :</p>
|
||||
<pre tabindex="0"><code>$ git submodule add https://github.com/mrmierzejewski/hugo-theme-console.git hugo-theme-console
|
||||
</code></pre><p>See the <a href="https://gohugo.io/hugo-modules/theme-components/">Hugo documentation</a> for more information.</p>
|
||||
<h2 id="configuration">Configuration</h2>
|
||||
<p>Set theme parameter in your config file:</p>
|
||||
<pre tabindex="0"><code>theme = "hugo-theme-console"
|
||||
</code></pre><h2 id="quick-start">Quick start</h2>
|
||||
<p>After installation, take a look in the <code>exampleSite</code> folder at. This directory contains an example config file and the content for the demo.</p>
|
||||
<pre tabindex="0"><code> exampleSite
|
||||
├── config.toml
|
||||
├── content
|
||||
│ ├── about
|
||||
│ │ └── index.md
|
||||
│ └── photos
|
||||
│ │ └── arizona-us
|
||||
│ │ ├── arizona-us.jpg
|
||||
│ │ └── index.md
|
||||
│ └── posts
|
||||
│ └── introduction
|
||||
│ └── index.md
|
||||
├── layouts
|
||||
│
|
||||
└── static
|
||||
</code></pre><p>Copy at least the <code>config.toml</code> in the root directory of your website. Overwrite the existing config file if necessary.</p>
|
||||
<p>Hugo includes a development server, so you can view your changes as you go -
|
||||
very handy. Spin it up with the following command:</p>
|
||||
<pre tabindex="0"><code>hugo serve
|
||||
</code></pre><p>Now you can go to <a href="http://localhost:1313">http://localhost:1313</a> and the theme should be visible.</p>
|
||||
<h2 id="example-site">Example Site</h2>
|
||||
<p>To run the example site, please type the following command.</p>
|
||||
<pre tabindex="0"><code>make hugo-server
|
||||
</code></pre><h2 id="license">License</h2>
|
||||
<p>Copyright © 2024 <a href="https://mrmierzejewski.com/">Marcin Mierzejewski</a></p>
|
||||
<p>The theme is released under the MIT License. Check the <a href="https://github.com/panr/hugo-theme-terminal/blob/master/LICENSE.md">original theme license</a> for additional licensing information.</p>
|
||||
|
||||
|
||||
<div class="footer">
|
||||
Powered by <a href="https://gohugo.io/">Hugo</a> with
|
||||
<a href="https://github.com/mrmierzejewski/hugo-theme-console/">Console Theme</a>.
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue