Updated content of exampleSite
4 files modified
1 files renamed
2 files added
| New file |
| | |
| | | +++ |
| | | author = "Hugo Authors" |
| | | +++ |
| | | |
| | |
| | | --- |
| | | title: "About" |
| | | description: "Hugo, the world’s fastest framework for building websites" |
| | | date: "2018-02-11" |
| | | aliases: ["about-us","about-hugo","contact"] |
| | | author: "Hugo Authors" |
| | | --- |
| | | +++ |
| | | title = "About" |
| | | description = "Hugo, the world’s fastest framework for building websites" |
| | | date = "2019-02-28" |
| | | aliases = ["about-us","about-hugo","contact"] |
| | | author = "Hugo Authors" |
| | | +++ |
| | | |
| | | Written in Go, Hugo is an open source static site generator available under the [Apache Licence 2.0.](https://github.com/gohugoio/hugo/blob/master/LICENSE) Hugo supports TOML, YAML and JSON data file types, Markdown and HTML content files and uses shortcodes to add rich content. Other notable features are taxonomies, multilingual mode, image processing, custom output formats, HTML/CSS/JS minification and support for Sass SCSS workflows. |
| | | |
| | | Hugo makes use of a variety of open source projects including: |
| | | |
| | | * https://github.com/russross/blackfriday |
| | | * https://github.com/yuin/goldmark |
| | | * https://github.com/alecthomas/chroma |
| | | * https://github.com/muesli/smartcrop |
| | | * https://github.com/spf13/cobra |
| | |
| | | |
| | | Websites built with Hugo are extremelly fast, secure and can be deployed anywhere including, AWS, GitHub Pages, Heroku, Netlify and any other hosting provider. |
| | | |
| | | Learn more and contribute on [GitHub](https://github.com/gohugoio). |
| | | Learn more and contribute on [GitHub](https://github.com/gohugoio). |
| | | |
| | | |
| | | |
| New file |
| | |
| | | --- |
| | | date: 2019-05-28 |
| | | type: section |
| | | layout: "archives" |
| | | --- |
| | |
| | | title = "Posts" |
| | | author = "Hugo Authors" |
| | | tags = ["index"] |
| | | +++ |
| | | +++ |
| | |
| | | +++ |
| | | author = "Hugo Authors" |
| | | title = "Markdown Syntax Guide" |
| | | date = "2020-03-11" |
| | | date = "2019-03-11" |
| | | description = "Sample article showcasing basic Markdown syntax and formatting for HTML elements." |
| | | tags = [ |
| | | "markdown", |
| | |
| | | |
| | | #### Nested list |
| | | |
| | | * Item |
| | | 1. First Sub-item |
| | | 2. Second Sub-item |
| | | * Fruit |
| | | * Apple |
| | | * Orange |
| | | * Banana |
| | | * Dairy |
| | | * Milk |
| | | * Cheese |
| | | |
| | | ## Other Elements — abbr, sub, sup, kbd, mark |
| | | |
| File was renamed from exampleSite/content/post/math-typesetting.mmark |
| | |
| | | title: Math Typesetting |
| | | date: 2019-03-08 |
| | | description: A brief guide to setup KaTeX |
| | | markup: mmark |
| | | math: true |
| | | --- |
| | | |
| | |
| | | {{< math.inline >}} |
| | | {{ if or .Page.Params.math .Site.Params.math }} |
| | | <!-- KaTeX --> |
| | | <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.10.1/dist/katex.min.css" integrity="sha384-dbVIfZGuN1Yq7/1Ocstc1lUEm+AT+/rCkibIcC/OmWo5f0EA48Vf8CytHzGrSwbQ" crossorigin="anonymous"> |
| | | <script defer src="https://cdn.jsdelivr.net/npm/katex@0.10.1/dist/katex.min.js" integrity="sha384-2BKqo+exmr9su6dir+qCw08N2ZKRucY4PrGQPPWU1A7FtlCGjmEGFqXCv5nyM5Ij" crossorigin="anonymous"></script> |
| | | <script defer src="https://cdn.jsdelivr.net/npm/katex@0.10.1/dist/contrib/auto-render.min.js" integrity="sha384-kWPLUVMOks5AQFrykwIup5lo0m3iMkkHrD0uJ4H5cjeGihAutqP0yW0J6dpFiVkI" crossorigin="anonymous" onload="renderMathInElement(document.body);"></script> |
| | | <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.11.1/dist/katex.min.css" integrity="sha384-zB1R0rpPzHqg7Kpt0Aljp8JPLqbXI3bhnPWROx27a9N0Ll6ZP/+DiW/UqRcLbRjq" crossorigin="anonymous"> |
| | | <script defer src="https://cdn.jsdelivr.net/npm/katex@0.11.1/dist/katex.min.js" integrity="sha384-y23I5Q6l+B6vatafAwxRu/0oK/79VlbSz7Q9aiSZUvyWYIYsd+qj+o24G5ZU2zJz" crossorigin="anonymous"></script> |
| | | <script defer src="https://cdn.jsdelivr.net/npm/katex@0.11.1/dist/contrib/auto-render.min.js" integrity="sha384-kWPLUVMOks5AQFrykwIup5lo0m3iMkkHrD0uJ4H5cjeGihAutqP0yW0J6dpFiVkI" crossorigin="anonymous" onload="renderMathInElement(document.body);"></script> |
| | | {{ end }} |
| | | {{</ math.inline >}} |
| | | |
| | | ### Examples |
| | | |
| | | Inline math: $$ \varphi = \dfrac{1+\sqrt5}{2}= 1.6180339887… $$ |
| | | {{< math.inline >}} |
| | | <p> |
| | | Inline math: \(\varphi = \dfrac{1+\sqrt5}{2}= 1.6180339887…\) |
| | | </p> |
| | | {{</ math.inline >}} |
| | | |
| | | Block math: |
| | | |
| | | $$ |
| | | \varphi = 1+\frac{1} {1+\frac{1} {1+\frac{1} {1+\cdots} } } |
| | | $$ |
| | |
| | | +++ |
| | | author = "Hugo Authors" |
| | | title = "Rich Content" |
| | | date = "2018-03-10" |
| | | date = "2019-03-10" |
| | | description = "A brief description of Hugo Shortcodes" |
| | | tags = [ |
| | | "shortcodes", |