Add example site configuration post, shortcodes

- Hopefully help explain related issues #217, #194

Close #226
This commit is contained in:
Victoria Drake 2020-07-25 09:38:23 -04:00
parent 5f5084d870
commit e781be1620
76 changed files with 2197 additions and 878 deletions

View file

@ -1,8 +1,8 @@
baseURL = "http://example.com/" # Your domain name. Must end with "/"
baseURL = "http://example.com/" # Your domain name. Must end with "/"
theme = "introduction"
DefaultContentLanguage = "en" # Default language for multilingual sites
# disqusshortname = "" # https://gohugo.io/content-management/comments
# googleAnalytics = "" # https://gohugo.io/templates/internal/#google-analytics
# disqusshortname = "" # https://gohugo.io/content-management/comments
# googleAnalytics = "" # https://gohugo.io/templates/internal/#google-analytics
[params]
themeStyle = "light" # Choose "light" or "dark"
@ -12,7 +12,7 @@ DefaultContentLanguage = "en" # Default language fo
fadeInIndex = false # Turn on/off the fade-in effect on the index page even if fade-in was otherwise turned off
dateFormat = "Jan 2, 2006"
email = "youremail@email.com" # E-mail address for contact section
# customCSS = ["foo.css"] # Include custom css files placed under assets/
# customCSS = ["foo.css"] # Include custom css files placed under assets/
# Configure the home page
[params.home]
@ -20,7 +20,6 @@ DefaultContentLanguage = "en" # Default language fo
showLatest = true # Show latest blog post summary
showAllPosts = false # Set true to list all posts on home page, or set false to link to separate blog list page
numberOfProjectsToShow = 3 # Maximum number of projects to show on home page. Unset or comment out to show all projects
localTime = true # Show your current local time in contact section
timeZone = "America/Los_Angeles" # Your timezone as in the TZ* column of this list: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
timeFormat = "h:mm A" # https://momentjs.com/docs/#/displaying/format/
@ -75,6 +74,23 @@ DefaultContentLanguage = "en" # Default language fo
[taxonomies]
tag = "tags"
[markup]
defaultMarkdownHandler = "goldmark"
[markup.goldmark]
[markup.goldmark.renderer]
unsafe = true
[markup.highlight]
codeFences = true
guessSyntax = false
hl_Lines = ""
lineNoStart = 1
lineNos = false
lineNumbersInTable = true
noClasses = true
# For styles, see https://xyproto.github.io/splash/docs/longer/all.html
style = "friendly"
tabWidth = 4
[languages]
[languages.en]
languageName = "English"

View file

@ -0,0 +1,58 @@
---
title: "Theme Features"
date: 2020-07-25T02:04:06-05:00
tags: ["code"]
---
Here are some helpful tips for setting up this theme.
## Syntax Highlighting
Introduction allows the use of Hugo's rich built-in syntax highlighting capabilities. See [Syntax Highlighting](https://gohugo.io/content-management/syntax-highlighting/) in the Hugo docs.
Below is an example configuration for Highlight. See [Highlight in the Hugo docs](https://gohugo.io/getting-started/configuration-markup#highlight) for more.
```toml
[markup]
[markup.highlight]
codeFences = true
guessSyntax = false
hl_Lines = ""
lineNoStart = 1
lineNos = false
lineNumbersInTable = true
noClasses = true
# For styles, see https://xyproto.github.io/splash/docs/longer/all.html
style = "friendly"
tabWidth = 4
```
## Shortcodes
[Custom shortcodes](https://gohugo.io/templates/shortcode-templates/) can be added to a `layouts/shortcodes/` directory in your site root. Below, I use two custom shortcodes to display a data file: the current configuration file for this site! See the [source for this page](https://github.com/victoriadrake/hugo-theme-introduction/blob/master/exampleSite/content/en/blog/configuration.md) to understand how to use shortcodes.
## Show HTML in Posts
To ensure Hugo renders any HTML that your shortcode or other additions like Font Awesome uses in posts, make sure these lines for [the Goldmark renderer](https://gohugo.io/getting-started/configuration-markup) are in your `config.toml`:
```toml
[markup]
defaultMarkdownHandler = "goldmark"
[markup.goldmark]
[markup.goldmark.renderer]
unsafe = true
```
## Configuration
Introduction can be easily configured using [Hugo's configuration file](https://gohugo.io/getting-started/configuration/). You can copy the `config.toml` in the `exampleSite/` to your site root get started.
Here are all the options included in the configuration file for this example site!
```toml
{{% md %}}
{{< readfile file="config.toml" >}}
{{% /md %}}
```

View file

@ -10,7 +10,7 @@
<meta name="referrer" content="no-referrer">
<meta name="description" content="Website Description">
<title>
404 Page not found - Introduction
404 Page Not Found - Introduction
</title>
@ -39,7 +39,7 @@
<link rel="stylesheet" href="/css/main.min.1eaffbdff5446b797511e3967e8419d2ad7851677604addf74d560bdfc5f91c7.css" integrity="sha256-Hq/73/VEa3l1EeOWfoQZ0q14UWd2BK3fdNVgvfxfkcc=" crossorigin="anonymous" media="screen">
<link rel="stylesheet" href="/css/main.min.daa833377fb1636f8cbfa65c601050bb5475623deb7aa6e6fdde94a064a6185d.css" integrity="sha256-2qgzN3&#43;xY2&#43;Mv6ZcYBBQu1R1Yj3reqbm/d6UoGSmGF0=" crossorigin="anonymous" media="screen">
@ -146,12 +146,12 @@
<a class="navbar-item" href="http://example.com/es/">Español</a>
<a class="navbar-item" href="http://example.com/de/">Deutsch</a>
@ -176,7 +176,7 @@
<div class="container has-text-centered">
<span class="footer-text">
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> theme for <a href="http://gohugo.io/">Hugo</a>. Made with <a href="https://victoria.dev"><!-- raw HTML omitted --><!-- raw HTML omitted --> and <!-- raw HTML omitted --><!-- raw HTML omitted --></a> by open source contributors.
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> theme for <a href="http://gohugo.io/">Hugo</a>. Made with <a href="https://victoria.dev"><i class="fa fa-heart"></i> and <i class="fa fa-coffee"></i></a> by open source contributors.
</span>
</div>

View file

@ -37,7 +37,7 @@ Coffee Ipsum - Introduction
<link rel="stylesheet" href="/css/main.min.1eaffbdff5446b797511e3967e8419d2ad7851677604addf74d560bdfc5f91c7.css" integrity="sha256-Hq/73/VEa3l1EeOWfoQZ0q14UWd2BK3fdNVgvfxfkcc=" crossorigin="anonymous" media="screen">
<link rel="stylesheet" href="/css/main.min.daa833377fb1636f8cbfa65c601050bb5475623deb7aa6e6fdde94a064a6185d.css" integrity="sha256-2qgzN3&#43;xY2&#43;Mv6ZcYBBQu1R1Yj3reqbm/d6UoGSmGF0=" crossorigin="anonymous" media="screen">
@ -54,7 +54,7 @@ Coffee Ipsum - Introduction
<div class="container hero fade-in one ">
<h1 class="bold-title is-1">Blog</h1>
<h1 class="bold-title is-1">Blog</h1>
</div>
@ -146,12 +146,12 @@ Coffee Ipsum - Introduction
<a class="navbar-item" href="http://example.com/es/">Español</a>
<a class="navbar-item" href="http://example.com/de/">Deutsch</a>
@ -166,72 +166,72 @@ Coffee Ipsum - Introduction
<div class="container">
<h2 class="title is-1 top-pad strong-post-title">
<a href="http://example.com/blog/coffee-ipsum/">Coffee Ipsum</a>
</h2>
<div class="post-data">
Nov 1, 2017 |
5 minutes read
</div>
<div class="container">
<h2 class="title is-1 top-pad strong-post-title">
<a href="http://example.com/blog/coffee-ipsum/">Coffee Ipsum</a>
</h2>
<div class="post-data">
Nov 1, 2017 |
5 minutes read
</div>
<div class="blog-share">
Share this:
<div class="blog-share">
Share this:
<a class="twitter-share-button" href="https://twitter.com/intent/tweet?text=Coffee%20Ipsum%20http%3a%2f%2fexample.com%2fblog%2fcoffee-ipsum%2f" onclick="window.open(this.href, 'twitter-share', 'width=550,height=235');return false;">
<i class="fab fa-twitter"></i>
<span class="hidden">Twitter</span>
</a>
<a class="icon-facebook" href="https://www.facebook.com/sharer/sharer.php?u=http%3a%2f%2fexample.com%2fblog%2fcoffee-ipsum%2f" onclick="window.open(this.href, 'facebook-share','width=580,height=296');return false;">
<i class="fab fa-facebook-f"></i>
<span class="hidden">Facebook</span>
</a>
<a class="icon-pinterest" href="http://pinterest.com/pin/create/button/?url=http%3a%2f%2fexample.com%2fblog%2fcoffee-ipsum%2f&amp;description=Coffee%20Ipsum" onclick="window.open(this.href, 'pinterest-share','width=580,height=296');return false;">
<i class="fab fa-pinterest-p"></i>
<span class="hidden">Pinterest</span>
</a>
<a class="icon-google-plus" href="https://plus.google.com/share?url=http%3a%2f%2fexample.com%2fblog%2fcoffee-ipsum%2f" onclick="window.open(this.href, 'google-plus-share', 'width=490,height=530');return false;">
<i class="fab fa-google-plus-g"></i>
<span class="hidden">Google+</span>
</a>
</div>
<a class="twitter-share-button" href="https://twitter.com/intent/tweet?text=Coffee%20Ipsum%20http%3a%2f%2fexample.com%2fblog%2fcoffee-ipsum%2f" onclick="window.open(this.href, 'twitter-share', 'width=550,height=235');return false;">
<i class="fab fa-twitter"></i>
<span class="hidden">Twitter</span>
</a>
<a class="icon-facebook" href="https://www.facebook.com/sharer/sharer.php?u=http%3a%2f%2fexample.com%2fblog%2fcoffee-ipsum%2f" onclick="window.open(this.href, 'facebook-share','width=580,height=296');return false;">
<i class="fab fa-facebook-f"></i>
<span class="hidden">Facebook</span>
</a>
<p>
Tags:
<a href="/tags/coffee">coffee</a>,
<a href="/tags/ipsum">ipsum</a>,
<a href="/tags/images">images</a>
</p>
<a class="icon-pinterest" href="http://pinterest.com/pin/create/button/?url=http%3a%2f%2fexample.com%2fblog%2fcoffee-ipsum%2f&amp;description=Coffee%20Ipsum" onclick="window.open(this.href, 'pinterest-share','width=580,height=296');return false;">
<i class="fab fa-pinterest-p"></i>
<span class="hidden">Pinterest</span>
</a>
<a class="icon-google-plus" href="https://plus.google.com/share?url=http%3a%2f%2fexample.com%2fblog%2fcoffee-ipsum%2f" onclick="window.open(this.href, 'google-plus-share', 'width=490,height=530');return false;">
<i class="fab fa-google-plus-g"></i>
<span class="hidden">Google+</span>
</a>
</div>
<div class="container markdown top-pad">
<p>Aromatic aroma con panna, crema so coffee robust coffee barista, café au lait trifecta that strong blue mountain cortado aftertaste. Aroma extraction french press, skinny sweet, blue mountain cup roast barista, beans, extra cappuccino mug crema strong. Americano caffeine white, con panna saucer sit, con panna eu, carajillo aftertaste kopi-luwak, body aftertaste cup single origin café au lait saucer. Macchiato java sweet arabica, turkish cup, eu flavour mug extraction white cortado saucer est white brewed instant, rich, barista breve cappuccino barista organic. Barista, beans extraction, barista mocha, roast steamed siphon cup sweet cortado, cinnamon froth milk ristretto cortado galão. Crema, milk extra brewed, lungo dripper, espresso flavour qui, variety, grinder caramelization sit, strong turkish espresso body, filter barista caramelization half and half strong. To go viennese cream to go, flavour, so mocha as, carajillo iced et a siphon froth. Aged, eu, cup, brewed aroma kopi-luwak, coffee, id viennese french press brewed grounds acerbic froth. Decaffeinated acerbic, spoon beans seasonal, french press café au lait mazagran roast chicory, pumpkin spice galão as fair trade, dark irish cup ristretto half and half whipped shop. Latte instant black extra aroma, instant, extra robusta variety skinny shop aged cup ristretto foam cortado. Bar galão skinny saucer est affogato sugar caffeine chicory sugar coffee, seasonal barista french press acerbic in chicory robust.</p>
<p>
Tags:
<a href="/tags/coffee">coffee</a>,
<a href="/tags/ipsum">ipsum</a>,
<a href="/tags/images">images</a>
</p>
</div>
<div class="container markdown top-pad">
<p>Aromatic aroma con panna, crema so coffee robust coffee barista, café au lait trifecta that strong blue mountain cortado aftertaste. Aroma extraction french press, skinny sweet, blue mountain cup roast barista, beans, extra cappuccino mug crema strong. Americano caffeine white, con panna saucer sit, con panna eu, carajillo aftertaste kopi-luwak, body aftertaste cup single origin café au lait saucer. Macchiato java sweet arabica, turkish cup, eu flavour mug extraction white cortado saucer est white brewed instant, rich, barista breve cappuccino barista organic. Barista, beans extraction, barista mocha, roast steamed siphon cup sweet cortado, cinnamon froth milk ristretto cortado galão. Crema, milk extra brewed, lungo dripper, espresso flavour qui, variety, grinder caramelization sit, strong turkish espresso body, filter barista caramelization half and half strong. To go viennese cream to go, flavour, so mocha as, carajillo iced et a siphon froth. Aged, eu, cup, brewed aroma kopi-luwak, coffee, id viennese french press brewed grounds acerbic froth. Decaffeinated acerbic, spoon beans seasonal, french press café au lait mazagran roast chicory, pumpkin spice galão as fair trade, dark irish cup ristretto half and half whipped shop. Latte instant black extra aroma, instant, extra robusta variety skinny shop aged cup ristretto foam cortado. Bar galão skinny saucer est affogato sugar caffeine chicory sugar coffee, seasonal barista french press acerbic in chicory robust.</p>
<p><img src="workday.jpg" alt="Sample image"></p>
<p>At, whipped extraction, wings, dark black, breve, single origin, est as irish, caffeine milk half and half, whipped, arabica filter dark a trifecta aftertaste. Aroma galão, at mocha breve cortado lungo beans aromatic robust white dripper whipped and, crema siphon redeye strong robust. Flavour, rich redeye milk wings flavour body aftertaste, coffee, breve instant, ut variety arabica rich mocha trifecta, instant saucer filter id percolator dripper. Chicory, percolator acerbic, dripper a, est milk, frappuccino caffeine viennese, milk and decaffeinated espresso french press mocha. Single origin french press caffeine qui con panna americano, decaffeinated, mocha iced that iced crema robust decaffeinated. Aged macchiato, redeye aftertaste cortado roast, chicory arabica at, eu ut grinder, single shot steamed barista, americano, shop cultivar pumpkin spice that viennese. Ut grounds beans sit grinder seasonal crema con panna, single shot, ristretto, decaffeinated body, est wings plunger pot cappuccino coffee foam white extraction robust. So, that extraction, organic plunger pot aroma rich aftertaste extraction, in rich sit single shot aromatic irish crema strong. Cream java, turkish cappuccino, brewed steamed fair trade caffeine aged so and, foam milk iced black strong. Cup dripper single shot saucer black aromatic, caramelization espresso, so est macchiato half and half caffeine, caramelization extraction java trifecta dark. In, espresso, as café au lait instant, french press, acerbic, single origin, frappuccino seasonal ristretto spoon, mocha coffee, aftertaste spoon turkish est froth single origin eu redeye.</p>
<p>Block of code:</p>
<div class="highlight"><pre style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4"><code class="language-JavaScript" data-lang="JavaScript"> <span style="color:#66d9ef">const</span> <span style="color:#a6e22e">thisIsATest</span> <span style="color:#f92672">=</span> () =&gt; {
<span style="color:#a6e22e">console</span>.<span style="color:#a6e22e">log</span>(<span style="color:#e6db74">&#34;This is funny&#34;</span>)
<div class="highlight"><pre style="background-color:#f0f0f0;-moz-tab-size:4;-o-tab-size:4;tab-size:4"><code class="language-JavaScript" data-lang="JavaScript"> <span style="color:#007020;font-weight:bold">const</span> thisIsATest <span style="color:#666">=</span> () =&gt; {
console.log(<span style="color:#4070a0">&#34;This is funny&#34;</span>)
}
</code></pre></div><p>Barista at, whipped, brewed americano ut, black americano spoon crema, black carajillo, con panna, qui galão crema aged arabica. Cup half and half white, sugar, viennese, mocha to go single shot americano crema single origin sweet strong, pumpkin spice, flavour, rich steamed shop grinder steamed latte extra to go brewed. Frappuccino, variety a flavour rich, bar caffeine carajillo, caffeine, half and half brewed half and half that con panna single origin redeye. Roast percolator, beans kopi-luwak aftertaste ut, cup java, sweet, single origin affogato, eu espresso barista cortado trifecta ristretto to go aged cortado caramelization sweet. So variety wings sit roast acerbic a saucer, cream galão foam seasonal, instant, cinnamon beans macchiato mug steamed caffeine cappuccino. To go, frappuccino, body dripper aftertaste brewed spoon ristretto redeye, black dark, bar crema whipped wings macchiato, flavour, ut rich mocha variety filter aromatic. Ut instant single shot shop turkish and, grounds, latte half and half aged breve mug percolator shop. Macchiato, at cup single origin crema affogato, mug cup, eu et ristretto espresso, viennese froth beans variety to go. Coffee caffeine spoon, macchiato strong dripper crema, macchiato espresso blue mountain, chicory con panna white bar caffeine skinny trifecta con panna. Robust, mazagran latte to go, carajillo cinnamon at and trifecta, cream body variety instant id cream so extra. Ut as iced wings saucer caramelization, affogato, coffee, froth so, brewed acerbic iced shop in sweet brewed.</p>
<p>Doppio, in, con panna, half and half, dark, viennese aftertaste caffeine aged cultivar mug shop flavour. Spoon to go, doppio caffeine, a latte carajillo whipped, viennese grinder carajillo whipped dark grinder espresso coffee, espresso, variety café au lait aged half and half grounds. Mazagran as, kopi-luwak viennese, dark, sit aged id at, milk, to go cup sweet, shop coffee, spoon mazagran filter, doppio at extra cup milk. Chicory id roast chicory aromatic strong, white sweet viennese, carajillo java strong a to go aftertaste, frappuccino at cinnamon dripper pumpkin spice arabica. Aged, brewed percolator, id, macchiato aroma, black bar aromatic ristretto lungo as mug grinder as mocha. Mug, medium et roast doppio, spoon so single origin french press skinny, caffeine blue mountain variety, mocha, percolator grinder café au lait kopi-luwak arabica. Caffeine, seasonal, french press steamed rich single origin cream galão brewed cinnamon, doppio java, chicory aftertaste ristretto, plunger pot aromatic, ut, plunger pot milk est whipped grinder coffee. Sweet macchiato cappuccino cup, decaffeinated macchiato cream, milk extra, ut, galão froth half and half sweet qui, siphon, et aged, skinny, siphon milk grounds strong to go. Chicory medium, ut viennese instant fair trade steamed medium café au lait, as fair trade, barista single origin, body acerbic decaffeinated lungo café au lait bar trifecta americano mazagran. Strong cortado caffeine wings cappuccino foam, saucer est cream white aftertaste body french press. Beans affogato, ristretto a plunger pot bar macchiato, froth filter seasonal doppio, siphon sit caffeine cortado redeye single shot.</p>
</div>
</div>
@ -253,7 +253,7 @@ Coffee Ipsum - Introduction
<div class="container has-text-centered">
<span class="footer-text">
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> theme for <a href="http://gohugo.io/">Hugo</a>. Made with <a href="https://victoria.dev"><!-- raw HTML omitted --><!-- raw HTML omitted --> and <!-- raw HTML omitted --><!-- raw HTML omitted --></a> by open source contributors.
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> theme for <a href="http://gohugo.io/">Hugo</a>. Made with <a href="https://victoria.dev"><i class="fa fa-heart"></i> and <i class="fa fa-coffee"></i></a> by open source contributors.
</span>
</div>

View file

@ -0,0 +1,424 @@
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="referrer" content="no-referrer">
<meta name="description" content="Website Description">
<title>
Theme Features - Introduction
</title>
<meta property="og:title" content="Theme Features - Introduction" />
<meta property="og:type" content="website" />
<meta property="og:description" content="Website Description"/>
<meta property="og:url" content="http://example.com/blog/configuration/"/>
<meta property="og:site_name" content="Introduction"/>
<meta property="og:image" content="http://example.com/home/profile.jpg"/>
<link rel="shortcut icon" href="/img/fav.ico">
<link rel="stylesheet" href="/css/main.min.daa833377fb1636f8cbfa65c601050bb5475623deb7aa6e6fdde94a064a6185d.css" integrity="sha256-2qgzN3&#43;xY2&#43;Mv6ZcYBBQu1R1Yj3reqbm/d6UoGSmGF0=" crossorigin="anonymous" media="screen">
</head>
<body>
<section id="top" class="section">
<div class="container hero fade-in one ">
<h1 class="bold-title is-1">Blog</h1>
</div>
<div class="section fade-in two ">
<div class="container">
<hr>
<nav class="navbar" role="navigation" aria-label="main navigation">
<a role="button" class="navbar-burger" data-target="navMenu" aria-label="menu" aria-expanded="false" >
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
<div class="navbar-menu " id="navMenu">
<a class="navbar-item" href="/">main</a>
<a class="navbar-item" href="/#about">About</a>
<a class="navbar-item" href="http://example.com/projects/">
Project
</a>
<a class="navbar-item" href="http://example.com/blog/">
Back to Blog
</a>
<a class="navbar-item" href="/#lorem">Lorem Ipsum</a>
<a class="navbar-item" href="/#contact">Contact</a>
<a class="navbar-item" href="http://example.com/es/">Español</a>
<a class="navbar-item" href="http://example.com/de/">Deutsch</a>
</div>
</nav>
<hr>
</div>
<div class="container">
<h2 class="title is-1 top-pad strong-post-title">
<a href="http://example.com/blog/configuration/">Theme Features</a>
</h2>
<div class="post-data">
Jul 25, 2020 |
4 minutes read
</div>
<div class="blog-share">
Share this:
<a class="twitter-share-button" href="https://twitter.com/intent/tweet?text=Theme%20Features%20http%3a%2f%2fexample.com%2fblog%2fconfiguration%2f" onclick="window.open(this.href, 'twitter-share', 'width=550,height=235');return false;">
<i class="fab fa-twitter"></i>
<span class="hidden">Twitter</span>
</a>
<a class="icon-facebook" href="https://www.facebook.com/sharer/sharer.php?u=http%3a%2f%2fexample.com%2fblog%2fconfiguration%2f" onclick="window.open(this.href, 'facebook-share','width=580,height=296');return false;">
<i class="fab fa-facebook-f"></i>
<span class="hidden">Facebook</span>
</a>
<a class="icon-pinterest" href="http://pinterest.com/pin/create/button/?url=http%3a%2f%2fexample.com%2fblog%2fconfiguration%2f&amp;description=Theme%20Features" onclick="window.open(this.href, 'pinterest-share','width=580,height=296');return false;">
<i class="fab fa-pinterest-p"></i>
<span class="hidden">Pinterest</span>
</a>
<a class="icon-google-plus" href="https://plus.google.com/share?url=http%3a%2f%2fexample.com%2fblog%2fconfiguration%2f" onclick="window.open(this.href, 'google-plus-share', 'width=490,height=530');return false;">
<i class="fab fa-google-plus-g"></i>
<span class="hidden">Google+</span>
</a>
</div>
<p>
Tag:
<a href="/tags/code">code</a>
</p>
</div>
<div class="container markdown top-pad">
<p>Here are some helpful tips for setting up this theme.</p>
<h2 id="syntax-highlighting">Syntax Highlighting</h2>
<p>Introduction allows the use of Hugo&rsquo;s rich built-in syntax highlighting capabilities. See <a href="https://gohugo.io/content-management/syntax-highlighting/">Syntax Highlighting</a> in the Hugo docs.</p>
<p>Below is an example configuration for Highlight. See <a href="https://gohugo.io/getting-started/configuration-markup#highlight">Highlight in the Hugo docs</a> for more.</p>
<div class="highlight"><pre style="background-color:#f0f0f0;-moz-tab-size:4;-o-tab-size:4;tab-size:4"><code class="language-toml" data-lang="toml">[markup]
[markup.highlight]
codeFences = <span style="color:#007020;font-weight:bold">true</span>
guessSyntax = <span style="color:#007020;font-weight:bold">false</span>
hl_Lines = <span style="color:#4070a0">&#34;&#34;</span>
lineNoStart = <span style="color:#40a070">1</span>
lineNos = <span style="color:#007020;font-weight:bold">false</span>
lineNumbersInTable = <span style="color:#007020;font-weight:bold">true</span>
noClasses = <span style="color:#007020;font-weight:bold">true</span>
<span style="color:#60a0b0;font-style:italic"># For styles, see https://xyproto.github.io/splash/docs/longer/all.html</span>
style = <span style="color:#4070a0">&#34;friendly&#34;</span>
tabWidth = <span style="color:#40a070">4</span>
</code></pre></div><h2 id="shortcodes">Shortcodes</h2>
<p><a href="https://gohugo.io/templates/shortcode-templates/">Custom shortcodes</a> can be added to a <code>layouts/shortcodes/</code> directory in your site root. Below, I use two custom shortcodes to display a data file: the current configuration file for this site! See the <a href="https://github.com/victoriadrake/hugo-theme-introduction/blob/master/exampleSite/content/en/blog/configuration.md">source for this page</a> to understand how to use shortcodes.</p>
<h2 id="show-html-in-posts">Show HTML in Posts</h2>
<p>To ensure Hugo renders any HTML that your shortcode or other additions like Font Awesome uses in posts, make sure these lines for <a href="https://gohugo.io/getting-started/configuration-markup">the Goldmark renderer</a> are in your <code>config.toml</code>:</p>
<div class="highlight"><pre style="background-color:#f0f0f0;-moz-tab-size:4;-o-tab-size:4;tab-size:4"><code class="language-toml" data-lang="toml">[markup]
defaultMarkdownHandler = <span style="color:#4070a0">&#34;goldmark&#34;</span>
[markup.goldmark]
[markup.goldmark.renderer]
unsafe = <span style="color:#007020;font-weight:bold">true</span>
</code></pre></div><h2 id="configuration">Configuration</h2>
<p>Introduction can be easily configured using <a href="https://gohugo.io/getting-started/configuration/">Hugo&rsquo;s configuration file</a>. You can copy the <code>config.toml</code> in the <code>exampleSite/</code> to your site root get started.</p>
<p>Here are all the options included in the configuration file for this example site!</p>
<div class="highlight"><pre style="background-color:#f0f0f0;-moz-tab-size:4;-o-tab-size:4;tab-size:4"><code class="language-toml" data-lang="toml">
baseURL = <span style="color:#4070a0">&#34;http://example.com/&#34;</span> <span style="color:#60a0b0;font-style:italic"># Your domain name. Must end with &#34;/&#34;</span>
theme = <span style="color:#4070a0">&#34;introduction&#34;</span>
DefaultContentLanguage = <span style="color:#4070a0">&#34;en&#34;</span> <span style="color:#60a0b0;font-style:italic"># Default language for multilingual sites</span>
<span style="color:#60a0b0;font-style:italic"># disqusshortname = &#34;&#34; # https://gohugo.io/content-management/comments</span>
<span style="color:#60a0b0;font-style:italic"># googleAnalytics = &#34;&#34; # https://gohugo.io/templates/internal/#google-analytics</span>
[params]
themeStyle = <span style="color:#4070a0">&#34;light&#34;</span> <span style="color:#60a0b0;font-style:italic"># Choose &#34;light&#34; or &#34;dark&#34;</span>
favicon = <span style="color:#4070a0">&#34;/img/fav.ico&#34;</span> <span style="color:#60a0b0;font-style:italic"># Path to favicon file</span>
showRSSButton = <span style="color:#007020;font-weight:bold">false</span> <span style="color:#60a0b0;font-style:italic"># Show rss button in navigation</span>
fadeIn = <span style="color:#007020;font-weight:bold">true</span> <span style="color:#60a0b0;font-style:italic"># Turn on/off the fade-in effect</span>
fadeInIndex = <span style="color:#007020;font-weight:bold">false</span> <span style="color:#60a0b0;font-style:italic"># Turn on/off the fade-in effect on the index page even if fade-in was otherwise turned off</span>
dateFormat = <span style="color:#4070a0">&#34;Jan 2, 2006&#34;</span>
email = <span style="color:#4070a0">&#34;youremail@email.com&#34;</span> <span style="color:#60a0b0;font-style:italic"># E-mail address for contact section</span>
<span style="color:#60a0b0;font-style:italic"># customCSS = [&#34;foo.css&#34;] # Include custom css files placed under assets/</span>
<span style="color:#60a0b0;font-style:italic"># Configure the home page</span>
[params.home]
introHeight = <span style="color:#4070a0">&#34;fullheight&#34;</span> <span style="color:#60a0b0;font-style:italic"># Input either &#34;medium&#34; or &#34;large&#34; or &#34;fullheight&#34;</span>
showLatest = <span style="color:#007020;font-weight:bold">true</span> <span style="color:#60a0b0;font-style:italic"># Show latest blog post summary</span>
showAllPosts = <span style="color:#007020;font-weight:bold">false</span> <span style="color:#60a0b0;font-style:italic"># Set true to list all posts on home page, or set false to link to separate blog list page</span>
numberOfProjectsToShow = <span style="color:#40a070">3</span> <span style="color:#60a0b0;font-style:italic"># Maximum number of projects to show on home page. Unset or comment out to show all projects</span>
localTime = <span style="color:#007020;font-weight:bold">true</span> <span style="color:#60a0b0;font-style:italic"># Show your current local time in contact section</span>
timeZone = <span style="color:#4070a0">&#34;America/Los_Angeles&#34;</span> <span style="color:#60a0b0;font-style:italic"># Your timezone as in the TZ* column of this list: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones</span>
timeFormat = <span style="color:#4070a0">&#34;h:mm A&#34;</span> <span style="color:#60a0b0;font-style:italic"># https://momentjs.com/docs/#/displaying/format/</span>
[params.projects]
useTwoColumns = <span style="color:#007020;font-weight:bold">false</span> <span style="color:#60a0b0;font-style:italic"># Use a layout with two columns instead of three</span>
<span style="color:#60a0b0;font-style:italic"># Share buttons on blog post pages</span>
[params.share]
twitter = <span style="color:#007020;font-weight:bold">true</span>
facebook = <span style="color:#007020;font-weight:bold">true</span>
googlePlus = <span style="color:#007020;font-weight:bold">true</span>
pinterest = <span style="color:#007020;font-weight:bold">true</span>
<span style="color:#60a0b0;font-style:italic"># Social icons appear in introduction and contact section. Add as many more as you like.</span>
<span style="color:#60a0b0;font-style:italic"># Icon pack &#34;fab&#34; includes social network icons, see: https://fontawesome.com/icons?d=gallery&amp;s=brands&amp;m=free</span>
<span style="color:#60a0b0;font-style:italic"># Icon pack &#34;fas&#34; includes solid style icons, see: https://fontawesome.com/icons?d=gallery&amp;s=solid&amp;m=free</span>
[[params.social]]
url = <span style="color:#4070a0">&#34;https://twitter.com/&#34;</span>
icon = <span style="color:#4070a0">&#34;twitter&#34;</span> <span style="color:#60a0b0;font-style:italic"># icon name without the &#39;fa-&#39;</span>
icon_pack = <span style="color:#4070a0">&#34;fab&#34;</span>
[[params.social]]
url = <span style="color:#4070a0">&#34;https://facebook.com/&#34;</span>
icon = <span style="color:#4070a0">&#34;facebook-f&#34;</span> <span style="color:#60a0b0;font-style:italic"># icon name without the &#39;fa-&#39;</span>
icon_pack = <span style="color:#4070a0">&#34;fab&#34;</span>
[[params.social]]
url = <span style="color:#4070a0">&#34;https://linkedin.com/&#34;</span>
icon = <span style="color:#4070a0">&#34;linkedin-in&#34;</span> <span style="color:#60a0b0;font-style:italic"># icon name without the &#39;fa-&#39;</span>
icon_pack = <span style="color:#4070a0">&#34;fab&#34;</span>
[[params.social]]
url = <span style="color:#4070a0">&#34;mailto:youremail@email.com&#34;</span> <span style="color:#60a0b0;font-style:italic"># For a direct email link, use &#34;mailto:test@example.org&#34;.</span>
icon = <span style="color:#4070a0">&#34;paper-plane&#34;</span> <span style="color:#60a0b0;font-style:italic"># icon name without the &#39;fa-&#39;</span>
icon_pack = <span style="color:#4070a0">&#34;fas&#34;</span>
[[params.social]]
url = <span style="color:#4070a0">&#34;https://mastodon.social/&#34;</span>
icon = <span style="color:#4070a0">&#34;mastodon&#34;</span> <span style="color:#60a0b0;font-style:italic"># icon name without the &#39;fa-&#39;</span>
icon_pack = <span style="color:#4070a0">&#34;fab&#34;</span>
html_attributes = <span style="color:#4070a0">&#34;rel=\&#34;me\&#34;&#34;</span> <span style="color:#60a0b0;font-style:italic"># Add rel attribute for Mastodon profile link verification</span>
<span style="color:#60a0b0;font-style:italic"># If you don&#39;t want to use the default menu, you can define one by yourself</span>
<span style="color:#60a0b0;font-style:italic"># [[menu.main]]</span>
<span style="color:#60a0b0;font-style:italic"># name = &#34;Home&#34;</span>
<span style="color:#60a0b0;font-style:italic"># url = &#34;/&#34;</span>
<span style="color:#60a0b0;font-style:italic"># weight = 0</span>
<span style="color:#60a0b0;font-style:italic"># [[menu.main]]</span>
<span style="color:#60a0b0;font-style:italic"># name = &#34;Blog&#34;</span>
<span style="color:#60a0b0;font-style:italic"># url = &#34;/blog/&#34;</span>
<span style="color:#60a0b0;font-style:italic"># weight = 1</span>
<span style="color:#60a0b0;font-style:italic"># We only use tag as a taxonomies</span>
<span style="color:#60a0b0;font-style:italic"># You can add more by yourself</span>
[taxonomies]
tag = <span style="color:#4070a0">&#34;tags&#34;</span>
[markup]
defaultMarkdownHandler = <span style="color:#4070a0">&#34;goldmark&#34;</span>
[markup.goldmark]
[markup.goldmark.renderer]
unsafe = <span style="color:#007020;font-weight:bold">true</span>
[markup.highlight]
codeFences = <span style="color:#007020;font-weight:bold">true</span>
guessSyntax = <span style="color:#007020;font-weight:bold">false</span>
hl_Lines = <span style="color:#4070a0">&#34;&#34;</span>
lineNoStart = <span style="color:#40a070">1</span>
lineNos = <span style="color:#007020;font-weight:bold">false</span>
lineNumbersInTable = <span style="color:#007020;font-weight:bold">true</span>
noClasses = <span style="color:#007020;font-weight:bold">true</span>
<span style="color:#60a0b0;font-style:italic"># For styles, see https://xyproto.github.io/splash/docs/longer/all.html</span>
style = <span style="color:#4070a0">&#34;friendly&#34;</span>
tabWidth = <span style="color:#40a070">4</span>
[languages]
[languages.en]
languageName = <span style="color:#4070a0">&#34;English&#34;</span>
languageCode = <span style="color:#4070a0">&#34;en-us&#34;</span>
contentDir = <span style="color:#4070a0">&#34;content/en&#34;</span>
weight = <span style="color:#40a070">0</span>
title = <span style="color:#4070a0">&#34;Introduction&#34;</span>
[languages.en.params]
description = <span style="color:#4070a0">&#34;Website Description&#34;</span> <span style="color:#60a0b0;font-style:italic"># Max 160 characters show in search results</span>
<span style="color:#60a0b0;font-style:italic"># footerText = &#34;&#34; # Text to override default footer text (markdown allowed)</span>
[languages.es]
languageName = <span style="color:#4070a0">&#34;Español&#34;</span>
languageCode = <span style="color:#4070a0">&#34;es&#34;</span>
contentDir = <span style="color:#4070a0">&#34;content/es&#34;</span>
weight = <span style="color:#40a070">1</span>
title = <span style="color:#4070a0">&#34;Introducción&#34;</span>
[languages.es.params]
description = <span style="color:#4070a0">&#34;Descripcion del sitio web&#34;</span>
<span style="color:#60a0b0;font-style:italic"># footerText = &#34;&#34;</span>
[languages.de]
languageName = <span style="color:#4070a0">&#34;Deutsch&#34;</span>
languageCode = <span style="color:#4070a0">&#34;de&#34;</span>
contentDir = <span style="color:#4070a0">&#34;content/de&#34;</span>
weight = <span style="color:#40a070">2</span>
title = <span style="color:#4070a0">&#34;Vorstellung&#34;</span>
[languages.de.params]
dateFormat = <span style="color:#4070a0">&#34;2. January 2006&#34;</span>
description = <span style="color:#4070a0">&#34;Beschreibung der Webseite&#34;</span>
<span style="color:#60a0b0;font-style:italic"># footerText = &#34;&#34;</span>
</code></pre></div>
</div>
<div class="container">
<hr>
</div>
<div class="container has-text-centered top-pad">
<a href="#top">
<i class="fa fa-arrow-up"></i>
</a>
</div>
<div class="container">
<hr>
</div>
<div class="section" id="footer">
<div class="container has-text-centered">
<span class="footer-text">
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> theme for <a href="http://gohugo.io/">Hugo</a>. Made with <a href="https://victoria.dev"><i class="fa fa-heart"></i> and <i class="fa fa-coffee"></i></a> by open source contributors.
</span>
</div>
</div>
</div>
</section>
<script src="http://example.com/js/bundle.e6934e69d06bb8a213134f4c1468f9478bb7755e786dfb60e3c5a917c5335805.js" integrity="sha256-5pNOadBruKITE09MFGj5R4u3dV54bftg48WpF8UzWAU="></script>
</body>
</html>

View file

@ -39,7 +39,7 @@ Hipster Ipsum - Introduction
<link rel="stylesheet" href="/css/main.min.1eaffbdff5446b797511e3967e8419d2ad7851677604addf74d560bdfc5f91c7.css" integrity="sha256-Hq/73/VEa3l1EeOWfoQZ0q14UWd2BK3fdNVgvfxfkcc=" crossorigin="anonymous" media="screen">
<link rel="stylesheet" href="/css/main.min.daa833377fb1636f8cbfa65c601050bb5475623deb7aa6e6fdde94a064a6185d.css" integrity="sha256-2qgzN3&#43;xY2&#43;Mv6ZcYBBQu1R1Yj3reqbm/d6UoGSmGF0=" crossorigin="anonymous" media="screen">
@ -56,7 +56,7 @@ Hipster Ipsum - Introduction
<div class="container hero fade-in one ">
<h1 class="bold-title is-1">Blog</h1>
<h1 class="bold-title is-1">Blog</h1>
</div>
@ -148,12 +148,12 @@ Hipster Ipsum - Introduction
<a class="navbar-item" href="http://example.com/es/">Español</a>
<a class="navbar-item" href="http://example.com/de/">Deutsch</a>
@ -168,65 +168,65 @@ Hipster Ipsum - Introduction
<div class="container">
<h2 class="title is-1 top-pad strong-post-title">
<a href="http://example.com/blog/hipster-ipsum/">Hipster Ipsum</a>
</h2>
<div class="post-data">
Nov 13, 2017 |
2 minutes read
</div>
<div class="container">
<h2 class="title is-1 top-pad strong-post-title">
<a href="http://example.com/blog/hipster-ipsum/">Hipster Ipsum</a>
</h2>
<div class="post-data">
Nov 13, 2017 |
2 minutes read
</div>
<div class="blog-share">
Share this:
<div class="blog-share">
Share this:
<a class="twitter-share-button" href="https://twitter.com/intent/tweet?text=Hipster%20Ipsum%20http%3a%2f%2fexample.com%2fblog%2fhipster-ipsum%2f" onclick="window.open(this.href, 'twitter-share', 'width=550,height=235');return false;">
<i class="fab fa-twitter"></i>
<span class="hidden">Twitter</span>
</a>
<a class="icon-facebook" href="https://www.facebook.com/sharer/sharer.php?u=http%3a%2f%2fexample.com%2fblog%2fhipster-ipsum%2f" onclick="window.open(this.href, 'facebook-share','width=580,height=296');return false;">
<i class="fab fa-facebook-f"></i>
<span class="hidden">Facebook</span>
</a>
<a class="icon-pinterest" href="http://pinterest.com/pin/create/button/?url=http%3a%2f%2fexample.com%2fblog%2fhipster-ipsum%2f&amp;description=Hipster%20Ipsum" onclick="window.open(this.href, 'pinterest-share','width=580,height=296');return false;">
<i class="fab fa-pinterest-p"></i>
<span class="hidden">Pinterest</span>
</a>
<a class="icon-google-plus" href="https://plus.google.com/share?url=http%3a%2f%2fexample.com%2fblog%2fhipster-ipsum%2f" onclick="window.open(this.href, 'google-plus-share', 'width=490,height=530');return false;">
<i class="fab fa-google-plus-g"></i>
<span class="hidden">Google+</span>
</a>
</div>
<a class="twitter-share-button" href="https://twitter.com/intent/tweet?text=Hipster%20Ipsum%20http%3a%2f%2fexample.com%2fblog%2fhipster-ipsum%2f" onclick="window.open(this.href, 'twitter-share', 'width=550,height=235');return false;">
<i class="fab fa-twitter"></i>
<span class="hidden">Twitter</span>
</a>
<a class="icon-facebook" href="https://www.facebook.com/sharer/sharer.php?u=http%3a%2f%2fexample.com%2fblog%2fhipster-ipsum%2f" onclick="window.open(this.href, 'facebook-share','width=580,height=296');return false;">
<i class="fab fa-facebook-f"></i>
<span class="hidden">Facebook</span>
</a>
<p>
Tags:
<a href="/tags/ipsum">ipsum</a>,
<a href="/tags/words">words</a>
</p>
<a class="icon-pinterest" href="http://pinterest.com/pin/create/button/?url=http%3a%2f%2fexample.com%2fblog%2fhipster-ipsum%2f&amp;description=Hipster%20Ipsum" onclick="window.open(this.href, 'pinterest-share','width=580,height=296');return false;">
<i class="fab fa-pinterest-p"></i>
<span class="hidden">Pinterest</span>
</a>
<a class="icon-google-plus" href="https://plus.google.com/share?url=http%3a%2f%2fexample.com%2fblog%2fhipster-ipsum%2f" onclick="window.open(this.href, 'google-plus-share', 'width=490,height=530');return false;">
<i class="fab fa-google-plus-g"></i>
<span class="hidden">Google+</span>
</a>
</div>
<div class="container markdown top-pad">
<p>Occupy mlkshk kale chips woke, listicle locavore next level fingerstache glossier aesthetic man braid before they sold out kitsch prism. Cred copper mug freegan, flannel YOLO single-origin coffee skateboard artisan four loko church-key man bun. Synth literally gastropub, kombucha chillwave helvetica offal truffaut church-key freegan pop-up gentrify narwhal. Kombucha viral vexillologist green juice. Slow-carb hoodie mumblecore tumeric tattooed meditation, lo-fi fap cred affogato forage whatever austin. Shabby chic direct trade migas, brunch gochujang sriracha chambray fanny pack 8-bit mustache letterpress. Street art umami tattooed, glossier selfies 90&rsquo;s kale chips cred cardigan taxidermy seitan distillery migas.</p>
<p>
Tags:
<a href="/tags/ipsum">ipsum</a>,
<a href="/tags/words">words</a>
</p>
</div>
<div class="container markdown top-pad">
<p>Occupy mlkshk kale chips woke, listicle locavore next level fingerstache glossier aesthetic man braid before they sold out kitsch prism. Cred copper mug freegan, flannel YOLO single-origin coffee skateboard artisan four loko church-key man bun. Synth literally gastropub, kombucha chillwave helvetica offal truffaut church-key freegan pop-up gentrify narwhal. Kombucha viral vexillologist green juice. Slow-carb hoodie mumblecore tumeric tattooed meditation, lo-fi fap cred affogato forage whatever austin. Shabby chic direct trade migas, brunch gochujang sriracha chambray fanny pack 8-bit mustache letterpress. Street art umami tattooed, glossier selfies 90&rsquo;s kale chips cred cardigan taxidermy seitan distillery migas.</p>
<p>Chicharrones ethical activated charcoal cardigan vegan copper mug. Ennui messenger bag 90&rsquo;s street art art party etsy. Four loko freegan flannel flexitarian, slow-carb hot chicken vexillologist tote bag church-key tilde pinterest. Ethical hell of retro, mlkshk twee yr selfies asymmetrical venmo. Photo booth mixtape tattooed pop-up, synth flexitarian paleo. DIY cornhole sustainable, gochujang whatever slow-carb hexagon tilde. Bitters XOXO kombucha af.</p>
<p>Organic neutra brooklyn, literally helvetica air plant celiac chia sustainable sriracha. Jean shorts typewriter chambray 90&rsquo;s farm-to-table, man bun tofu VHS. Messenger bag paleo plaid meditation intelligentsia forage, lomo jianbing hell of. Waistcoat synth tacos direct trade truffaut kogi. Gentrify street art woke, everyday carry whatever gastropub PBR&amp;B fixie chambray kale chips af photo booth shoreditch. Thundercats hella cold-pressed, ethical vape irony pitchfork mixtape kombucha heirloom viral hell of deep v banh mi hoodie. Craft beer slow-carb raw denim, ugh asymmetrical artisan banh mi fingerstache trust fund poke bespoke green juice man bun mustache 3 wolf moon.</p>
<p>Seitan tumblr freegan, readymade health goth tofu letterpress mixtape. Viral microdosing roof party, narwhal paleo photo booth cronut fingerstache. Bitters ramps snackwave listicle, taxidermy skateboard williamsburg. Vexillologist irony ennui, vegan fap 8-bit street art hashtag bicycle rights thundercats woke fashion axe aesthetic. Before they sold out umami forage disrupt, fashion axe cardigan ugh kitsch small batch. Kitsch try-hard vexillologist, semiotics disrupt shabby chic schlitz. Cardigan deep v hammock yuccie craft beer wayfarers, bespoke shabby chic keytar vape venmo semiotics iPhone cray.</p>
</div>
</div>
@ -248,7 +248,7 @@ Hipster Ipsum - Introduction
<div class="container has-text-centered">
<span class="footer-text">
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> theme for <a href="http://gohugo.io/">Hugo</a>. Made with <a href="https://victoria.dev"><!-- raw HTML omitted --><!-- raw HTML omitted --> and <!-- raw HTML omitted --><!-- raw HTML omitted --></a> by open source contributors.
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> theme for <a href="http://gohugo.io/">Hugo</a>. Made with <a href="https://victoria.dev"><i class="fa fa-heart"></i> and <i class="fa fa-coffee"></i></a> by open source contributors.
</span>
</div>

View file

@ -39,7 +39,7 @@ Blog - Introduction
<link rel="stylesheet" href="/css/main.min.1eaffbdff5446b797511e3967e8419d2ad7851677604addf74d560bdfc5f91c7.css" integrity="sha256-Hq/73/VEa3l1EeOWfoQZ0q14UWd2BK3fdNVgvfxfkcc=" crossorigin="anonymous" media="screen">
<link rel="stylesheet" href="/css/main.min.daa833377fb1636f8cbfa65c601050bb5475623deb7aa6e6fdde94a064a6185d.css" integrity="sha256-2qgzN3&#43;xY2&#43;Mv6ZcYBBQu1R1Yj3reqbm/d6UoGSmGF0=" crossorigin="anonymous" media="screen">
@ -140,12 +140,12 @@ Blog - Introduction
<a class="navbar-item" href="http://example.com/es/">Español</a>
<a class="navbar-item" href="http://example.com/de/">Deutsch</a>
@ -168,16 +168,19 @@ Blog - Introduction
<h2 class="title is-2 top-pad">Latest Post</h2>
<div class="summary">Nov 13, 2017
<div class="summary">Jul 25, 2020
<h3 class="title is-3 strong-post-title">
<a href="http://example.com/blog/hipster-ipsum/">
Hipster Ipsum
<a href="http://example.com/blog/configuration/">
Theme Features
</a>
</h3>
<div class="markdown">
Occupy mlkshk kale chips woke, listicle locavore next level fingerstache glossier aesthetic man braid before they sold out kitsch prism. Cred copper mug freegan, flannel YOLO single-origin coffee skateboard artisan four loko church-key man bun. Synth literally gastropub, kombucha chillwave helvetica offal truffaut church-key freegan pop-up gentrify narwhal. Kombucha viral vexillologist green juice. Slow-carb hoodie mumblecore tumeric tattooed meditation, lo-fi fap cred affogato forage whatever austin. Shabby chic direct trade migas, brunch gochujang sriracha chambray fanny pack 8-bit mustache letterpress.
Here are some helpful tips for setting up this theme.
Syntax Highlighting Introduction allows the use of Hugo&rsquo;s rich built-in syntax highlighting capabilities. See Syntax Highlighting in the Hugo docs.
Below is an example configuration for Highlight. See Highlight in the Hugo docs for more.
[markup] [markup.highlight] codeFences = true guessSyntax = false hl_Lines = &#34;&#34; lineNoStart = 1 lineNos = false lineNumbersInTable = true noClasses = true # For styles, see https://xyproto.
<a href="http://example.com/blog/hipster-ipsum/">Read more</a>
<a href="http://example.com/blog/configuration/">Read more</a>
</div>
</div>
@ -186,6 +189,14 @@ Blog - Introduction
<h2 class="title is-2 top-pad">All Posts</h2>
<li class="post-item">
<span><a href="http://example.com/blog/configuration/">Theme Features</a></span> - <span>Jul 25, 2020</span>
</li>
<li class="post-item">
<span><a href="http://example.com/blog/long-form-post/"><strong>Long</strong> Form Post!</a></span> - <span>May 30, 2020</span>
</li>
<li class="post-item">
<span><a href="http://example.com/blog/hipster-ipsum/">Hipster Ipsum</a></span> - <span>Nov 13, 2017</span>
</li>
@ -224,7 +235,7 @@ Blog - Introduction
<div class="container has-text-centered">
<span class="footer-text">
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> theme for <a href="http://gohugo.io/">Hugo</a>. Made with <a href="https://victoria.dev"><!-- raw HTML omitted --><!-- raw HTML omitted --> and <!-- raw HTML omitted --><!-- raw HTML omitted --></a> by open source contributors.
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> theme for <a href="http://gohugo.io/">Hugo</a>. Made with <a href="https://victoria.dev"><i class="fa fa-heart"></i> and <i class="fa fa-coffee"></i></a> by open source contributors.
</span>
</div>

View file

@ -6,11 +6,33 @@
<description>Recent content in Blog on Introduction</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<lastBuildDate>Mon, 13 Nov 2017 11:58:39 -0500</lastBuildDate>
<lastBuildDate>Sat, 25 Jul 2020 02:04:06 -0500</lastBuildDate>
<atom:link href="http://example.com/blog/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Theme Features</title>
<link>http://example.com/blog/configuration/</link>
<pubDate>Sat, 25 Jul 2020 02:04:06 -0500</pubDate>
<guid>http://example.com/blog/configuration/</guid>
<description>Here are some helpful tips for setting up this theme.
Syntax Highlighting Introduction allows the use of Hugo&amp;rsquo;s rich built-in syntax highlighting capabilities. See Syntax Highlighting in the Hugo docs.
Below is an example configuration for Highlight. See Highlight in the Hugo docs for more.
[markup] [markup.highlight] codeFences = true guessSyntax = false hl_Lines = &amp;#34;&amp;#34; lineNoStart = 1 lineNos = false lineNumbersInTable = true noClasses = true # For styles, see https://xyproto.</description>
</item>
<item>
<title>**Long** Form Post!</title>
<link>http://example.com/blog/long-form-post/</link>
<pubDate>Sat, 30 May 2020 20:18:53 -0500</pubDate>
<guid>http://example.com/blog/long-form-post/</guid>
<description>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Cursus eget nunc scelerisque viverra. Quam vulputate dignissim suspendisse in est ante in nibh mauris. Pharetra magna ac placerat vestibulum lectus mauris. Eget lorem dolor sed viverra ipsum.
Elementum Nisi Quis eleifend quam adipiscing. Aliquet nec ullamcorper sit amet risus. Auctor neque vitae tempus quam pellentesque. Tincidunt lobortis feugiat vivamus at augue.</description>
</item>
<item>
<title>Hipster Ipsum</title>
<link>http://example.com/blog/hipster-ipsum/</link>

View file

@ -0,0 +1,317 @@
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="referrer" content="no-referrer">
<meta name="description" content="Website Description">
<title>
** Long** Form Post! - Introduction
</title>
<meta property="og:title" content="Long Form Post! - Introduction" />
<meta property="og:type" content="website" />
<meta property="og:description" content="Website Description"/>
<meta property="og:url" content="http://example.com/blog/long-form-post/"/>
<meta property="og:site_name" content="Introduction"/>
<meta property="og:image" content="http://example.com/home/profile.jpg"/>
<link rel="shortcut icon" href="/img/fav.ico">
<link rel="stylesheet" href="/css/main.min.daa833377fb1636f8cbfa65c601050bb5475623deb7aa6e6fdde94a064a6185d.css" integrity="sha256-2qgzN3&#43;xY2&#43;Mv6ZcYBBQu1R1Yj3reqbm/d6UoGSmGF0=" crossorigin="anonymous" media="screen">
</head>
<body>
<section id="top" class="section">
<div class="container hero fade-in one ">
<h1 class="bold-title is-1">Blog</h1>
</div>
<div class="section fade-in two ">
<div class="container">
<hr>
<nav class="navbar" role="navigation" aria-label="main navigation">
<a role="button" class="navbar-burger" data-target="navMenu" aria-label="menu" aria-expanded="false" >
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
<div class="navbar-menu " id="navMenu">
<a class="navbar-item" href="/">main</a>
<a class="navbar-item" href="/#about">About</a>
<a class="navbar-item" href="http://example.com/projects/">
Project
</a>
<a class="navbar-item" href="http://example.com/blog/">
Back to Blog
</a>
<a class="navbar-item" href="/#lorem">Lorem Ipsum</a>
<a class="navbar-item" href="/#contact">Contact</a>
<a class="navbar-item" href="http://example.com/es/">Español</a>
<a class="navbar-item" href="http://example.com/de/">Deutsch</a>
</div>
</nav>
<hr>
</div>
<div class="container">
<h2 class="title is-1 top-pad strong-post-title">
<a href="http://example.com/blog/long-form-post/"><strong>Long</strong> Form Post!</a>
</h2>
<div class="post-data">
May 30, 2020 |
3 minutes read
</div>
<div class="blog-share">
Share this:
<a class="twitter-share-button" href="https://twitter.com/intent/tweet?text=%3cstrong%3eLong%3c%2fstrong%3e%20Form%20Post%21%20http%3a%2f%2fexample.com%2fblog%2flong-form-post%2f" onclick="window.open(this.href, 'twitter-share', 'width=550,height=235');return false;">
<i class="fab fa-twitter"></i>
<span class="hidden">Twitter</span>
</a>
<a class="icon-facebook" href="https://www.facebook.com/sharer/sharer.php?u=http%3a%2f%2fexample.com%2fblog%2flong-form-post%2f" onclick="window.open(this.href, 'facebook-share','width=580,height=296');return false;">
<i class="fab fa-facebook-f"></i>
<span class="hidden">Facebook</span>
</a>
<a class="icon-pinterest" href="http://pinterest.com/pin/create/button/?url=http%3a%2f%2fexample.com%2fblog%2flong-form-post%2f&amp;description=%2a%2aLong%2a%2a%20Form%20Post%21" onclick="window.open(this.href, 'pinterest-share','width=580,height=296');return false;">
<i class="fab fa-pinterest-p"></i>
<span class="hidden">Pinterest</span>
</a>
<a class="icon-google-plus" href="https://plus.google.com/share?url=http%3a%2f%2fexample.com%2fblog%2flong-form-post%2f" onclick="window.open(this.href, 'google-plus-share', 'width=490,height=530');return false;">
<i class="fab fa-google-plus-g"></i>
<span class="hidden">Google+</span>
</a>
</div>
<p>
Tags:
<a href="/tags/blog">blog</a>,
<a href="/tags/code">code</a>
</p>
</div>
<div class="container markdown top-pad">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Cursus eget nunc scelerisque viverra. Quam vulputate dignissim suspendisse in est ante in nibh mauris. Pharetra magna ac placerat vestibulum lectus mauris. Eget lorem dolor sed viverra ipsum.</p>
<h2 id="elementum-nisi">Elementum Nisi</h2>
<p>Quis eleifend quam adipiscing. Aliquet nec ullamcorper sit amet risus. Auctor neque vitae tempus quam pellentesque. Tincidunt lobortis feugiat vivamus at augue. Leo vel orci porta non pulvinar neque laoreet. Non enim praesent elementum facilisis leo vel.</p>
<blockquote>
<p>In nibh mauris cursus mattis. Enim ut sem viverra aliquet eget sit. Risus sed vulputate odio ut enim. Id interdum velit laoreet id.</p>
<ul>
<li>Id aliquet risus feugiat in ante metus dictum.</li>
<li>Enim nulla aliquet porttitor lacus luctus accumsan tortor.</li>
</ul>
<p>A scelerisque purus semper eget duis at tellus at. Proin fermentum leo vel orci porta non pulvinar. Nunc scelerisque viverra mauris in. Accumsan tortor posuere ac ut consequat. Lorem ipsum dolor sit amet consectetur adipiscing. Varius sit amet mattis vulputate enim nulla. Diam quis enim lobortis scelerisque fermentum dui faucibus in.</p>
</blockquote>
<h3 id="accumsan">Accumsan</h3>
<p>Tortor posuere ac ut consequat.</p>
<ul>
<li>placerat</li>
<li>aliquet</li>
<li>egestas sed</li>
</ul>
<h3 id="tortor">Tortor</h3>
<p>Tortor id aliquet lectus proin nibh nisl condimentum id venenatis.</p>
<ol>
<li>scelerisque</li>
<li>habitasse</li>
<li>adipiscing foo</li>
</ol>
<h2 id="gravida-arcu-ac-tortor">Gravida Arcu ac Tortor</h2>
<p>Pretium <code>aenean pharetra magna</code> ac placerat vestibulum lectus. Gravida arcu ac tortor dignissim convallis aenean et. Amet luctus venenatis lectus magna fringilla urna porttitor rhoncus. Pellentesque elit eget gravida cum sociis natoque penatibus et magnis. Pharetra diam sit amet nisl <code>suscipit</code> adipiscing bibendum est. Consequat interdum varius sit amet mattis. Senectus et netus et malesuada fames ac turpis egestas sed. A arcu cursus vitae congue mauris rhoncus. Enim tortor at auctor urna nunc id cursus metus. Lacus sed viverra tellus in hac.</p>
<p>Nulla pharetra diam:</p>
<table>
<thead>
<tr>
<th>sit</th>
<th>amet</th>
</tr>
</thead>
<tbody>
<tr>
<td>nisl</td>
<td>suscipit</td>
</tr>
<tr>
<td>adipiscing</td>
<td>bibendum</td>
</tr>
</tbody>
</table>
<p>Elit ut aliquam purus sit. Tortor id aliquet lectus proin nibh nisl condimentum id venenatis. Dictumst quisque sagittis purus sit. Consectetur purus ut faucibus pulvinar. Neque ornare aenean euismod elementum nisi. Nisl nisi scelerisque eu ultrices vitae auctor. Morbi tristique senectus et netus et malesuada fames ac turpis. Dolor morbi non arcu risus quis. Tortor pretium viverra suspendisse potenti.</p>
<p>Imperdiet sed euismod nisi porta lorem mollis. In hac habitasse platea dictumst vestibulum. Tincidunt eget nullam non nisi est sit. Facilisis sed odio morbi quis commodo odio. Tellus rutrum tellus pellentesque eu tincidunt tortor aliquam. Pulvinar pellentesque habitant morbi tristique senectus. Justo laoreet sit amet cursus sit amet dictum. Imperdiet sed euismod nisi porta lorem mollis aliquam ut. Integer vitae justo eget magna fermentum iaculis eu non diam. Suscipit adipiscing bibendum est ultricies integer quis auctor. Cursus risus at ultrices mi tempus imperdiet nulla. Facilisis leo vel fringilla est. Ut porttitor leo a diam sollicitudin tempor id eu. Curabitur gravida arcu ac tortor dignissim convallis. Egestas tellus rutrum tellus pellentesque eu tincidunt tortor aliquam nulla. Sit amet consectetur adipiscing elit. Nunc lobortis mattis aliquam faucibus purus in. Nulla porttitor massa id neque aliquam vestibulum. Augue ut lectus arcu bibendum at varius vel. Sit amet aliquam id diam maecenas ultricies.</p>
</div>
<div class="container">
<hr>
</div>
<div class="container has-text-centered top-pad">
<a href="#top">
<i class="fa fa-arrow-up"></i>
</a>
</div>
<div class="container">
<hr>
</div>
<div class="section" id="footer">
<div class="container has-text-centered">
<span class="footer-text">
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> theme for <a href="http://gohugo.io/">Hugo</a>. Made with <a href="https://victoria.dev"><i class="fa fa-heart"></i> and <i class="fa fa-coffee"></i></a> by open source contributors.
</span>
</div>
</div>
</div>
</section>
<script src="http://example.com/js/bundle.e6934e69d06bb8a213134f4c1468f9478bb7755e786dfb60e3c5a917c5335805.js" integrity="sha256-5pNOadBruKITE09MFGj5R4u3dV54bftg48WpF8UzWAU="></script>
</body>
</html>

View file

@ -10,7 +10,7 @@
<meta name="referrer" content="no-referrer">
<meta name="description" content="Website Description">
<title>
Undated post - Introduction
Undated Post - Introduction
</title>
@ -39,7 +39,7 @@ Undated post - Introduction
<link rel="stylesheet" href="/css/main.min.1eaffbdff5446b797511e3967e8419d2ad7851677604addf74d560bdfc5f91c7.css" integrity="sha256-Hq/73/VEa3l1EeOWfoQZ0q14UWd2BK3fdNVgvfxfkcc=" crossorigin="anonymous" media="screen">
<link rel="stylesheet" href="/css/main.min.daa833377fb1636f8cbfa65c601050bb5475623deb7aa6e6fdde94a064a6185d.css" integrity="sha256-2qgzN3&#43;xY2&#43;Mv6ZcYBBQu1R1Yj3reqbm/d6UoGSmGF0=" crossorigin="anonymous" media="screen">
@ -56,7 +56,7 @@ Undated post - Introduction
<div class="container hero fade-in one ">
<h1 class="bold-title is-1">Blog</h1>
<h1 class="bold-title is-1">Blog</h1>
</div>
@ -148,12 +148,12 @@ Undated post - Introduction
<a class="navbar-item" href="http://example.com/es/">Español</a>
<a class="navbar-item" href="http://example.com/de/">Deutsch</a>
@ -168,60 +168,60 @@ Undated post - Introduction
<div class="container">
<h2 class="title is-1 top-pad strong-post-title">
<a href="http://example.com/blog/no-date/">Undated post</a>
</h2>
<div class="post-data">
1 minute read
</div>
<div class="container">
<h2 class="title is-1 top-pad strong-post-title">
<a href="http://example.com/blog/no-date/">Undated post</a>
</h2>
<div class="post-data">
<div class="blog-share">
Share this:
<a class="twitter-share-button" href="https://twitter.com/intent/tweet?text=Undated%20post%20http%3a%2f%2fexample.com%2fblog%2fno-date%2f" onclick="window.open(this.href, 'twitter-share', 'width=550,height=235');return false;">
<i class="fab fa-twitter"></i>
<span class="hidden">Twitter</span>
</a>
<a class="icon-facebook" href="https://www.facebook.com/sharer/sharer.php?u=http%3a%2f%2fexample.com%2fblog%2fno-date%2f" onclick="window.open(this.href, 'facebook-share','width=580,height=296');return false;">
<i class="fab fa-facebook-f"></i>
<span class="hidden">Facebook</span>
</a>
<a class="icon-pinterest" href="http://pinterest.com/pin/create/button/?url=http%3a%2f%2fexample.com%2fblog%2fno-date%2f&amp;description=Undated%20post" onclick="window.open(this.href, 'pinterest-share','width=580,height=296');return false;">
<i class="fab fa-pinterest-p"></i>
<span class="hidden">Pinterest</span>
</a>
<a class="icon-google-plus" href="https://plus.google.com/share?url=http%3a%2f%2fexample.com%2fblog%2fno-date%2f" onclick="window.open(this.href, 'google-plus-share', 'width=490,height=530');return false;">
<i class="fab fa-google-plus-g"></i>
<span class="hidden">Google+</span>
</a>
</div>
1 minute read
</div>
<div class="blog-share">
Share this:
<a class="twitter-share-button" href="https://twitter.com/intent/tweet?text=Undated%20post%20http%3a%2f%2fexample.com%2fblog%2fno-date%2f" onclick="window.open(this.href, 'twitter-share', 'width=550,height=235');return false;">
<i class="fab fa-twitter"></i>
<span class="hidden">Twitter</span>
</a>
<a class="icon-facebook" href="https://www.facebook.com/sharer/sharer.php?u=http%3a%2f%2fexample.com%2fblog%2fno-date%2f" onclick="window.open(this.href, 'facebook-share','width=580,height=296');return false;">
<i class="fab fa-facebook-f"></i>
<span class="hidden">Facebook</span>
</a>
<p>
Tag:
<a href="/tags/words">words</a>
</p>
<a class="icon-pinterest" href="http://pinterest.com/pin/create/button/?url=http%3a%2f%2fexample.com%2fblog%2fno-date%2f&amp;description=Undated%20post" onclick="window.open(this.href, 'pinterest-share','width=580,height=296');return false;">
<i class="fab fa-pinterest-p"></i>
<span class="hidden">Pinterest</span>
</a>
<a class="icon-google-plus" href="https://plus.google.com/share?url=http%3a%2f%2fexample.com%2fblog%2fno-date%2f" onclick="window.open(this.href, 'google-plus-share', 'width=490,height=530');return false;">
<i class="fab fa-google-plus-g"></i>
<span class="hidden">Google+</span>
</a>
</div>
<div class="container markdown top-pad">
<p>I was born yesterday, tomorrow.</p>
<p>
Tag:
<a href="/tags/words">words</a>
</p>
</div>
<div class="container markdown top-pad">
<p>I was born yesterday, tomorrow.</p>
</div>
</div>
@ -243,7 +243,7 @@ Undated post - Introduction
<div class="container has-text-centered">
<span class="footer-text">
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> theme for <a href="http://gohugo.io/">Hugo</a>. Made with <a href="https://victoria.dev"><!-- raw HTML omitted --><!-- raw HTML omitted --> and <!-- raw HTML omitted --><!-- raw HTML omitted --></a> by open source contributors.
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> theme for <a href="http://gohugo.io/">Hugo</a>. Made with <a href="https://victoria.dev"><i class="fa fa-heart"></i> and <i class="fa fa-coffee"></i></a> by open source contributors.
</span>
</div>

View file

@ -39,7 +39,7 @@ Startup Ipsum - Introduction
<link rel="stylesheet" href="/css/main.min.1eaffbdff5446b797511e3967e8419d2ad7851677604addf74d560bdfc5f91c7.css" integrity="sha256-Hq/73/VEa3l1EeOWfoQZ0q14UWd2BK3fdNVgvfxfkcc=" crossorigin="anonymous" media="screen">
<link rel="stylesheet" href="/css/main.min.daa833377fb1636f8cbfa65c601050bb5475623deb7aa6e6fdde94a064a6185d.css" integrity="sha256-2qgzN3&#43;xY2&#43;Mv6ZcYBBQu1R1Yj3reqbm/d6UoGSmGF0=" crossorigin="anonymous" media="screen">
@ -56,7 +56,7 @@ Startup Ipsum - Introduction
<div class="container hero fade-in one ">
<h1 class="bold-title is-1">Blog</h1>
<h1 class="bold-title is-1">Blog</h1>
</div>
@ -148,12 +148,12 @@ Startup Ipsum - Introduction
<a class="navbar-item" href="http://example.com/es/">Español</a>
<a class="navbar-item" href="http://example.com/de/">Deutsch</a>
@ -168,62 +168,62 @@ Startup Ipsum - Introduction
<div class="container">
<h2 class="title is-1 top-pad strong-post-title">
<a href="http://example.com/blog/startup-ipsum/">Startup Ipsum</a>
</h2>
<div class="post-data">
Nov 6, 2017 |
2 minutes read
</div>
<div class="container">
<h2 class="title is-1 top-pad strong-post-title">
<a href="http://example.com/blog/startup-ipsum/">Startup Ipsum</a>
</h2>
<div class="post-data">
Nov 6, 2017 |
2 minutes read
</div>
<div class="blog-share">
Share this:
<div class="blog-share">
Share this:
<a class="twitter-share-button" href="https://twitter.com/intent/tweet?text=Startup%20Ipsum%20http%3a%2f%2fexample.com%2fblog%2fstartup-ipsum%2f" onclick="window.open(this.href, 'twitter-share', 'width=550,height=235');return false;">
<i class="fab fa-twitter"></i>
<span class="hidden">Twitter</span>
</a>
<a class="icon-facebook" href="https://www.facebook.com/sharer/sharer.php?u=http%3a%2f%2fexample.com%2fblog%2fstartup-ipsum%2f" onclick="window.open(this.href, 'facebook-share','width=580,height=296');return false;">
<i class="fab fa-facebook-f"></i>
<span class="hidden">Facebook</span>
</a>
<a class="icon-pinterest" href="http://pinterest.com/pin/create/button/?url=http%3a%2f%2fexample.com%2fblog%2fstartup-ipsum%2f&amp;description=Startup%20Ipsum" onclick="window.open(this.href, 'pinterest-share','width=580,height=296');return false;">
<i class="fab fa-pinterest-p"></i>
<span class="hidden">Pinterest</span>
</a>
<a class="icon-google-plus" href="https://plus.google.com/share?url=http%3a%2f%2fexample.com%2fblog%2fstartup-ipsum%2f" onclick="window.open(this.href, 'google-plus-share', 'width=490,height=530');return false;">
<i class="fab fa-google-plus-g"></i>
<span class="hidden">Google+</span>
</a>
</div>
<a class="twitter-share-button" href="https://twitter.com/intent/tweet?text=Startup%20Ipsum%20http%3a%2f%2fexample.com%2fblog%2fstartup-ipsum%2f" onclick="window.open(this.href, 'twitter-share', 'width=550,height=235');return false;">
<i class="fab fa-twitter"></i>
<span class="hidden">Twitter</span>
</a>
<a class="icon-facebook" href="https://www.facebook.com/sharer/sharer.php?u=http%3a%2f%2fexample.com%2fblog%2fstartup-ipsum%2f" onclick="window.open(this.href, 'facebook-share','width=580,height=296');return false;">
<i class="fab fa-facebook-f"></i>
<span class="hidden">Facebook</span>
</a>
<p>
Tags:
<a href="/tags/code">code</a>,
<a href="/tags/ipsum">ipsum</a>,
<a href="/tags/words">words</a>
</p>
<a class="icon-pinterest" href="http://pinterest.com/pin/create/button/?url=http%3a%2f%2fexample.com%2fblog%2fstartup-ipsum%2f&amp;description=Startup%20Ipsum" onclick="window.open(this.href, 'pinterest-share','width=580,height=296');return false;">
<i class="fab fa-pinterest-p"></i>
<span class="hidden">Pinterest</span>
</a>
<a class="icon-google-plus" href="https://plus.google.com/share?url=http%3a%2f%2fexample.com%2fblog%2fstartup-ipsum%2f" onclick="window.open(this.href, 'google-plus-share', 'width=490,height=530');return false;">
<i class="fab fa-google-plus-g"></i>
<span class="hidden">Google+</span>
</a>
</div>
<div class="container markdown top-pad">
<p>SpaceTeam affordances quantitative vs. qualitative SpaceTeam physical computing earned media thinker-maker-doer pair programming. Bootstrapping pitch deck physical computing driven cortado human-centered design innovate human-centered design driven. Grok pitch deck fund pitch deck sticky note affordances minimum viable product integrate paradigm viral iterate. Driven fund thought leader personas workflow SpaceTeam viral pair programming physical computing intuitive 360 campaign latte bootstrapping minimum viable product. Bootstrapping physical computing responsive pitch deck SpaceTeam parallax long shadow pitch deck bootstrapping ideate.</p>
<div class="highlight"><pre style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4"><code class="language-sh" data-lang="sh">$ complicated techie code git bash ubuntu
&gt;&gt;&gt; <span style="color:#66d9ef">return</span> value init foo
<p>
Tags:
<a href="/tags/code">code</a>,
<a href="/tags/ipsum">ipsum</a>,
<a href="/tags/words">words</a>
</p>
</div>
<div class="container markdown top-pad">
<p>SpaceTeam affordances quantitative vs. qualitative SpaceTeam physical computing earned media thinker-maker-doer pair programming. Bootstrapping pitch deck physical computing driven cortado human-centered design innovate human-centered design driven. Grok pitch deck fund pitch deck sticky note affordances minimum viable product integrate paradigm viral iterate. Driven fund thought leader personas workflow SpaceTeam viral pair programming physical computing intuitive 360 campaign latte bootstrapping minimum viable product. Bootstrapping physical computing responsive pitch deck SpaceTeam parallax long shadow pitch deck bootstrapping ideate.</p>
<div class="highlight"><pre style="background-color:#f0f0f0;-moz-tab-size:4;-o-tab-size:4;tab-size:4"><code class="language-sh" data-lang="sh">$ complicated techie code git bash ubuntu
&gt;&gt;&gt; <span style="color:#007020;font-weight:bold">return</span> value init foo
</code></pre></div><p>Responsive innovate grok latte disrupt intuitive actionable insight SpaceTeam grok. Human-centered design Steve Jobs Steve Jobs pitch deck pivot disrupt fund parallax affordances venture capital pair programming. Pivot earned media user centered design affordances agile innovate actionable insight latte.</p>
<table>
<thead>
@ -281,10 +281,31 @@ Startup Ipsum - Introduction
</tbody>
</table>
<p>Waterfall is so 2000 and late personas pitch deck fund big data actionable insight unicorn driven grok. Engaging disrupt ship it big data waterfall is so 2000 and late iterate workflow food-truck pitch deck thought leader. Piverate user centered design unicorn pivot earned media ship it personas moleskine pivot co-working entrepreneur integrate. Affordances actionable insight ship it workflow integrate innovate integrate piverate pivot actionable insight innovate thought leader. Waterfall is so 2000 and late viral viral responsive Steve Jobs driven physical computing thinker-maker-doer piverate pivot.</p>
<ul>
<li>Unordered list
<ul>
<li>First sub-item</li>
<li>Second sub-item</li>
</ul>
</li>
<li>Second top level item</li>
</ul>
<p>Now for an ordered list:</p>
<ol>
<li>Top level
<ol>
<li>First sub-level
<ol>
<li>Second sub-level</li>
</ol>
</li>
</ol>
</li>
</ol>
</div>
</div>
@ -306,7 +327,7 @@ Startup Ipsum - Introduction
<div class="container has-text-centered">
<span class="footer-text">
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> theme for <a href="http://gohugo.io/">Hugo</a>. Made with <a href="https://victoria.dev"><!-- raw HTML omitted --><!-- raw HTML omitted --> and <!-- raw HTML omitted --><!-- raw HTML omitted --></a> by open source contributors.
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> theme for <a href="http://gohugo.io/">Hugo</a>. Made with <a href="https://victoria.dev"><i class="fa fa-heart"></i> and <i class="fa fa-coffee"></i></a> by open source contributors.
</span>
</div>

File diff suppressed because one or more lines are too long

View file

@ -10,7 +10,7 @@
<meta name="referrer" content="no-referrer">
<meta name="description" content="Beschreibung der Webseite">
<title>
404 Page not found - Vorstellung
404 Page Not Found - Vorstellung
</title>
@ -39,7 +39,7 @@
<link rel="stylesheet" href="/css/main.min.1eaffbdff5446b797511e3967e8419d2ad7851677604addf74d560bdfc5f91c7.css" integrity="sha256-Hq/73/VEa3l1EeOWfoQZ0q14UWd2BK3fdNVgvfxfkcc=" crossorigin="anonymous" media="screen">
<link rel="stylesheet" href="/css/main.min.daa833377fb1636f8cbfa65c601050bb5475623deb7aa6e6fdde94a064a6185d.css" integrity="sha256-2qgzN3&#43;xY2&#43;Mv6ZcYBBQu1R1Yj3reqbm/d6UoGSmGF0=" crossorigin="anonymous" media="screen">
@ -146,14 +146,14 @@
<a class="navbar-item" href="http://example.com/es/">Español</a>
<a class="navbar-item" href="http://example.com/">English</a>
<a class="navbar-item" href="http://example.com/es/">Español</a>
@ -176,7 +176,7 @@
<div class="container has-text-centered">
<span class="footer-text">
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Vorstellung</strong></a>, ein Theme für <a href="http://gohugo.io/">Hugo</a>. Entwickelt mit <a href="https://victoria.dev"><!-- raw HTML omitted --><!-- raw HTML omitted --> und <!-- raw HTML omitted --><!-- raw HTML omitted --></a> von Open Source Mitwirkenden
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Vorstellung</strong></a>, ein Theme für <a href="http://gohugo.io/">Hugo</a>. Entwickelt mit <a href="https://victoria.dev"><i class="fa fa-heart"></i> und <i class="fa fa-coffee"></i></a> von Open Source Mitwirkenden
</span>
</div>

View file

@ -37,7 +37,7 @@ Kaffee Ipsum - Vorstellung
<link rel="stylesheet" href="/css/main.min.1eaffbdff5446b797511e3967e8419d2ad7851677604addf74d560bdfc5f91c7.css" integrity="sha256-Hq/73/VEa3l1EeOWfoQZ0q14UWd2BK3fdNVgvfxfkcc=" crossorigin="anonymous" media="screen">
<link rel="stylesheet" href="/css/main.min.daa833377fb1636f8cbfa65c601050bb5475623deb7aa6e6fdde94a064a6185d.css" integrity="sha256-2qgzN3&#43;xY2&#43;Mv6ZcYBBQu1R1Yj3reqbm/d6UoGSmGF0=" crossorigin="anonymous" media="screen">
@ -54,7 +54,7 @@ Kaffee Ipsum - Vorstellung
<div class="container hero fade-in one ">
<h1 class="bold-title is-1">Blog</h1>
<h1 class="bold-title is-1">Blog</h1>
</div>
@ -146,14 +146,14 @@ Kaffee Ipsum - Vorstellung
<a class="navbar-item" href="http://example.com/es/">Español</a>
<a class="navbar-item" href="http://example.com/">English</a>
<a class="navbar-item" href="http://example.com/es/">Español</a>
@ -166,68 +166,68 @@ Kaffee Ipsum - Vorstellung
<div class="container">
<h2 class="title is-1 top-pad strong-post-title">
<a href="http://example.com/de/blog/coffee-ipsum/">Kaffee Ipsum</a>
</h2>
<div class="post-data">
1. November 2017 |
5 Minuten zum Lesen
</div>
<div class="container">
<h2 class="title is-1 top-pad strong-post-title">
<a href="http://example.com/de/blog/coffee-ipsum/">Kaffee Ipsum</a>
</h2>
<div class="post-data">
1. November 2017 |
5 Minuten zum Lesen
</div>
<div class="blog-share">
Teilen:
<div class="blog-share">
Teilen:
<a class="twitter-share-button" href="https://twitter.com/intent/tweet?text=Kaffee%20Ipsum%20http%3a%2f%2fexample.com%2fde%2fblog%2fcoffee-ipsum%2f" onclick="window.open(this.href, 'twitter-share', 'width=550,height=235');return false;">
<i class="fab fa-twitter"></i>
<span class="hidden">Twitter</span>
</a>
<a class="icon-facebook" href="https://www.facebook.com/sharer/sharer.php?u=http%3a%2f%2fexample.com%2fde%2fblog%2fcoffee-ipsum%2f" onclick="window.open(this.href, 'facebook-share','width=580,height=296');return false;">
<i class="fab fa-facebook-f"></i>
<span class="hidden">Facebook</span>
</a>
<a class="icon-pinterest" href="http://pinterest.com/pin/create/button/?url=http%3a%2f%2fexample.com%2fde%2fblog%2fcoffee-ipsum%2f&amp;description=Kaffee%20Ipsum" onclick="window.open(this.href, 'pinterest-share','width=580,height=296');return false;">
<i class="fab fa-pinterest-p"></i>
<span class="hidden">Pinterest</span>
</a>
<a class="icon-google-plus" href="https://plus.google.com/share?url=http%3a%2f%2fexample.com%2fde%2fblog%2fcoffee-ipsum%2f" onclick="window.open(this.href, 'google-plus-share', 'width=490,height=530');return false;">
<i class="fab fa-google-plus-g"></i>
<span class="hidden">Google+</span>
</a>
</div>
<a class="twitter-share-button" href="https://twitter.com/intent/tweet?text=Kaffee%20Ipsum%20http%3a%2f%2fexample.com%2fde%2fblog%2fcoffee-ipsum%2f" onclick="window.open(this.href, 'twitter-share', 'width=550,height=235');return false;">
<i class="fab fa-twitter"></i>
<span class="hidden">Twitter</span>
</a>
<a class="icon-facebook" href="https://www.facebook.com/sharer/sharer.php?u=http%3a%2f%2fexample.com%2fde%2fblog%2fcoffee-ipsum%2f" onclick="window.open(this.href, 'facebook-share','width=580,height=296');return false;">
<i class="fab fa-facebook-f"></i>
<span class="hidden">Facebook</span>
</a>
<p>
Tags:
<a href="/de/tags/coffee">coffee</a>,
<a href="/de/tags/ipsum">ipsum</a>,
<a href="/de/tags/images">images</a>
</p>
<a class="icon-pinterest" href="http://pinterest.com/pin/create/button/?url=http%3a%2f%2fexample.com%2fde%2fblog%2fcoffee-ipsum%2f&amp;description=Kaffee%20Ipsum" onclick="window.open(this.href, 'pinterest-share','width=580,height=296');return false;">
<i class="fab fa-pinterest-p"></i>
<span class="hidden">Pinterest</span>
</a>
<a class="icon-google-plus" href="https://plus.google.com/share?url=http%3a%2f%2fexample.com%2fde%2fblog%2fcoffee-ipsum%2f" onclick="window.open(this.href, 'google-plus-share', 'width=490,height=530');return false;">
<i class="fab fa-google-plus-g"></i>
<span class="hidden">Google+</span>
</a>
</div>
<div class="container markdown top-pad">
<p>Aromatic aroma con panna, crema so coffee robust coffee barista, café au lait trifecta that strong blue mountain cortado aftertaste. Aroma extraction french press, skinny sweet, blue mountain cup roast barista, beans, extra cappuccino mug crema strong. Americano caffeine white, con panna saucer sit, con panna eu, carajillo aftertaste kopi-luwak, body aftertaste cup single origin café au lait saucer. Macchiato java sweet arabica, turkish cup, eu flavour mug extraction white cortado saucer est white brewed instant, rich, barista breve cappuccino barista organic. Barista, beans extraction, barista mocha, roast steamed siphon cup sweet cortado, cinnamon froth milk ristretto cortado galão. Crema, milk extra brewed, lungo dripper, espresso flavour qui, variety, grinder caramelization sit, strong turkish espresso body, filter barista caramelization half and half strong. To go viennese cream to go, flavour, so mocha as, carajillo iced et a siphon froth. Aged, eu, cup, brewed aroma kopi-luwak, coffee, id viennese french press brewed grounds acerbic froth. Decaffeinated acerbic, spoon beans seasonal, french press café au lait mazagran roast chicory, pumpkin spice galão as fair trade, dark irish cup ristretto half and half whipped shop. Latte instant black extra aroma, instant, extra robusta variety skinny shop aged cup ristretto foam cortado. Bar galão skinny saucer est affogato sugar caffeine chicory sugar coffee, seasonal barista french press acerbic in chicory robust.</p>
<p>
Tags:
<a href="/de/tags/coffee">coffee</a>,
<a href="/de/tags/ipsum">ipsum</a>,
<a href="/de/tags/images">images</a>
</p>
</div>
<div class="container markdown top-pad">
<p>Aromatic aroma con panna, crema so coffee robust coffee barista, café au lait trifecta that strong blue mountain cortado aftertaste. Aroma extraction french press, skinny sweet, blue mountain cup roast barista, beans, extra cappuccino mug crema strong. Americano caffeine white, con panna saucer sit, con panna eu, carajillo aftertaste kopi-luwak, body aftertaste cup single origin café au lait saucer. Macchiato java sweet arabica, turkish cup, eu flavour mug extraction white cortado saucer est white brewed instant, rich, barista breve cappuccino barista organic. Barista, beans extraction, barista mocha, roast steamed siphon cup sweet cortado, cinnamon froth milk ristretto cortado galão. Crema, milk extra brewed, lungo dripper, espresso flavour qui, variety, grinder caramelization sit, strong turkish espresso body, filter barista caramelization half and half strong. To go viennese cream to go, flavour, so mocha as, carajillo iced et a siphon froth. Aged, eu, cup, brewed aroma kopi-luwak, coffee, id viennese french press brewed grounds acerbic froth. Decaffeinated acerbic, spoon beans seasonal, french press café au lait mazagran roast chicory, pumpkin spice galão as fair trade, dark irish cup ristretto half and half whipped shop. Latte instant black extra aroma, instant, extra robusta variety skinny shop aged cup ristretto foam cortado. Bar galão skinny saucer est affogato sugar caffeine chicory sugar coffee, seasonal barista french press acerbic in chicory robust.</p>
<p><img src="workday.jpg" alt="Sample image"></p>
<p>At, whipped extraction, wings, dark black, breve, single origin, est as irish, caffeine milk half and half, whipped, arabica filter dark a trifecta aftertaste. Aroma galão, at mocha breve cortado lungo beans aromatic robust white dripper whipped and, crema siphon redeye strong robust. Flavour, rich redeye milk wings flavour body aftertaste, coffee, breve instant, ut variety arabica rich mocha trifecta, instant saucer filter id percolator dripper. Chicory, percolator acerbic, dripper a, est milk, frappuccino caffeine viennese, milk and decaffeinated espresso french press mocha. Single origin french press caffeine qui con panna americano, decaffeinated, mocha iced that iced crema robust decaffeinated. Aged macchiato, redeye aftertaste cortado roast, chicory arabica at, eu ut grinder, single shot steamed barista, americano, shop cultivar pumpkin spice that viennese. Ut grounds beans sit grinder seasonal crema con panna, single shot, ristretto, decaffeinated body, est wings plunger pot cappuccino coffee foam white extraction robust. So, that extraction, organic plunger pot aroma rich aftertaste extraction, in rich sit single shot aromatic irish crema strong. Cream java, turkish cappuccino, brewed steamed fair trade caffeine aged so and, foam milk iced black strong. Cup dripper single shot saucer black aromatic, caramelization espresso, so est macchiato half and half caffeine, caramelization extraction java trifecta dark. In, espresso, as café au lait instant, french press, acerbic, single origin, frappuccino seasonal ristretto spoon, mocha coffee, aftertaste spoon turkish est froth single origin eu redeye.</p>
<p>Barista at, whipped, brewed americano ut, black americano spoon crema, black carajillo, con panna, qui galão crema aged arabica. Cup half and half white, sugar, viennese, mocha to go single shot americano crema single origin sweet strong, pumpkin spice, flavour, rich steamed shop grinder steamed latte extra to go brewed. Frappuccino, variety a flavour rich, bar caffeine carajillo, caffeine, half and half brewed half and half that con panna single origin redeye. Roast percolator, beans kopi-luwak aftertaste ut, cup java, sweet, single origin affogato, eu espresso barista cortado trifecta ristretto to go aged cortado caramelization sweet. So variety wings sit roast acerbic a saucer, cream galão foam seasonal, instant, cinnamon beans macchiato mug steamed caffeine cappuccino. To go, frappuccino, body dripper aftertaste brewed spoon ristretto redeye, black dark, bar crema whipped wings macchiato, flavour, ut rich mocha variety filter aromatic. Ut instant single shot shop turkish and, grounds, latte half and half aged breve mug percolator shop. Macchiato, at cup single origin crema affogato, mug cup, eu et ristretto espresso, viennese froth beans variety to go. Coffee caffeine spoon, macchiato strong dripper crema, macchiato espresso blue mountain, chicory con panna white bar caffeine skinny trifecta con panna. Robust, mazagran latte to go, carajillo cinnamon at and trifecta, cream body variety instant id cream so extra. Ut as iced wings saucer caramelization, affogato, coffee, froth so, brewed acerbic iced shop in sweet brewed.</p>
<p>Doppio, in, con panna, half and half, dark, viennese aftertaste caffeine aged cultivar mug shop flavour. Spoon to go, doppio caffeine, a latte carajillo whipped, viennese grinder carajillo whipped dark grinder espresso coffee, espresso, variety café au lait aged half and half grounds. Mazagran as, kopi-luwak viennese, dark, sit aged id at, milk, to go cup sweet, shop coffee, spoon mazagran filter, doppio at extra cup milk. Chicory id roast chicory aromatic strong, white sweet viennese, carajillo java strong a to go aftertaste, frappuccino at cinnamon dripper pumpkin spice arabica. Aged, brewed percolator, id, macchiato aroma, black bar aromatic ristretto lungo as mug grinder as mocha. Mug, medium et roast doppio, spoon so single origin french press skinny, caffeine blue mountain variety, mocha, percolator grinder café au lait kopi-luwak arabica. Caffeine, seasonal, french press steamed rich single origin cream galão brewed cinnamon, doppio java, chicory aftertaste ristretto, plunger pot aromatic, ut, plunger pot milk est whipped grinder coffee. Sweet macchiato cappuccino cup, decaffeinated macchiato cream, milk extra, ut, galão froth half and half sweet qui, siphon, et aged, skinny, siphon milk grounds strong to go. Chicory medium, ut viennese instant fair trade steamed medium café au lait, as fair trade, barista single origin, body acerbic decaffeinated lungo café au lait bar trifecta americano mazagran. Strong cortado caffeine wings cappuccino foam, saucer est cream white aftertaste body french press. Beans affogato, ristretto a plunger pot bar macchiato, froth filter seasonal doppio, siphon sit caffeine cortado redeye single shot.</p>
</div>
</div>
@ -249,7 +249,7 @@ Kaffee Ipsum - Vorstellung
<div class="container has-text-centered">
<span class="footer-text">
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Vorstellung</strong></a>, ein Theme für <a href="http://gohugo.io/">Hugo</a>. Entwickelt mit <a href="https://victoria.dev"><!-- raw HTML omitted --><!-- raw HTML omitted --> und <!-- raw HTML omitted --><!-- raw HTML omitted --></a> von Open Source Mitwirkenden
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Vorstellung</strong></a>, ein Theme für <a href="http://gohugo.io/">Hugo</a>. Entwickelt mit <a href="https://victoria.dev"><i class="fa fa-heart"></i> und <i class="fa fa-coffee"></i></a> von Open Source Mitwirkenden
</span>
</div>

View file

@ -39,7 +39,7 @@ Hipster Ipsum - Vorstellung
<link rel="stylesheet" href="/css/main.min.1eaffbdff5446b797511e3967e8419d2ad7851677604addf74d560bdfc5f91c7.css" integrity="sha256-Hq/73/VEa3l1EeOWfoQZ0q14UWd2BK3fdNVgvfxfkcc=" crossorigin="anonymous" media="screen">
<link rel="stylesheet" href="/css/main.min.daa833377fb1636f8cbfa65c601050bb5475623deb7aa6e6fdde94a064a6185d.css" integrity="sha256-2qgzN3&#43;xY2&#43;Mv6ZcYBBQu1R1Yj3reqbm/d6UoGSmGF0=" crossorigin="anonymous" media="screen">
@ -56,7 +56,7 @@ Hipster Ipsum - Vorstellung
<div class="container hero fade-in one ">
<h1 class="bold-title is-1">Blog</h1>
<h1 class="bold-title is-1">Blog</h1>
</div>
@ -148,14 +148,14 @@ Hipster Ipsum - Vorstellung
<a class="navbar-item" href="http://example.com/es/">Español</a>
<a class="navbar-item" href="http://example.com/">English</a>
<a class="navbar-item" href="http://example.com/es/">Español</a>
@ -168,65 +168,65 @@ Hipster Ipsum - Vorstellung
<div class="container">
<h2 class="title is-1 top-pad strong-post-title">
<a href="http://example.com/de/blog/hipster-ipsum/">Hipster Ipsum</a>
</h2>
<div class="post-data">
13. November 2017 |
2 Minuten zum Lesen
</div>
<div class="container">
<h2 class="title is-1 top-pad strong-post-title">
<a href="http://example.com/de/blog/hipster-ipsum/">Hipster Ipsum</a>
</h2>
<div class="post-data">
13. November 2017 |
2 Minuten zum Lesen
</div>
<div class="blog-share">
Teilen:
<div class="blog-share">
Teilen:
<a class="twitter-share-button" href="https://twitter.com/intent/tweet?text=Hipster%20Ipsum%20http%3a%2f%2fexample.com%2fde%2fblog%2fhipster-ipsum%2f" onclick="window.open(this.href, 'twitter-share', 'width=550,height=235');return false;">
<i class="fab fa-twitter"></i>
<span class="hidden">Twitter</span>
</a>
<a class="icon-facebook" href="https://www.facebook.com/sharer/sharer.php?u=http%3a%2f%2fexample.com%2fde%2fblog%2fhipster-ipsum%2f" onclick="window.open(this.href, 'facebook-share','width=580,height=296');return false;">
<i class="fab fa-facebook-f"></i>
<span class="hidden">Facebook</span>
</a>
<a class="icon-pinterest" href="http://pinterest.com/pin/create/button/?url=http%3a%2f%2fexample.com%2fde%2fblog%2fhipster-ipsum%2f&amp;description=Hipster%20Ipsum" onclick="window.open(this.href, 'pinterest-share','width=580,height=296');return false;">
<i class="fab fa-pinterest-p"></i>
<span class="hidden">Pinterest</span>
</a>
<a class="icon-google-plus" href="https://plus.google.com/share?url=http%3a%2f%2fexample.com%2fde%2fblog%2fhipster-ipsum%2f" onclick="window.open(this.href, 'google-plus-share', 'width=490,height=530');return false;">
<i class="fab fa-google-plus-g"></i>
<span class="hidden">Google+</span>
</a>
</div>
<a class="twitter-share-button" href="https://twitter.com/intent/tweet?text=Hipster%20Ipsum%20http%3a%2f%2fexample.com%2fde%2fblog%2fhipster-ipsum%2f" onclick="window.open(this.href, 'twitter-share', 'width=550,height=235');return false;">
<i class="fab fa-twitter"></i>
<span class="hidden">Twitter</span>
</a>
<a class="icon-facebook" href="https://www.facebook.com/sharer/sharer.php?u=http%3a%2f%2fexample.com%2fde%2fblog%2fhipster-ipsum%2f" onclick="window.open(this.href, 'facebook-share','width=580,height=296');return false;">
<i class="fab fa-facebook-f"></i>
<span class="hidden">Facebook</span>
</a>
<p>
Tags:
<a href="/de/tags/ipsum">ipsum</a>,
<a href="/de/tags/words">words</a>
</p>
<a class="icon-pinterest" href="http://pinterest.com/pin/create/button/?url=http%3a%2f%2fexample.com%2fde%2fblog%2fhipster-ipsum%2f&amp;description=Hipster%20Ipsum" onclick="window.open(this.href, 'pinterest-share','width=580,height=296');return false;">
<i class="fab fa-pinterest-p"></i>
<span class="hidden">Pinterest</span>
</a>
<a class="icon-google-plus" href="https://plus.google.com/share?url=http%3a%2f%2fexample.com%2fde%2fblog%2fhipster-ipsum%2f" onclick="window.open(this.href, 'google-plus-share', 'width=490,height=530');return false;">
<i class="fab fa-google-plus-g"></i>
<span class="hidden">Google+</span>
</a>
</div>
<div class="container markdown top-pad">
<p>Occupy mlkshk kale chips woke, listicle locavore next level fingerstache glossier aesthetic man braid before they sold out kitsch prism. Cred copper mug freegan, flannel YOLO single-origin coffee skateboard artisan four loko church-key man bun. Synth literally gastropub, kombucha chillwave helvetica offal truffaut church-key freegan pop-up gentrify narwhal. Kombucha viral vexillologist green juice. Slow-carb hoodie mumblecore tumeric tattooed meditation, lo-fi fap cred affogato forage whatever austin. Shabby chic direct trade migas, brunch gochujang sriracha chambray fanny pack 8-bit mustache letterpress. Street art umami tattooed, glossier selfies 90&rsquo;s kale chips cred cardigan taxidermy seitan distillery migas.</p>
<p>
Tags:
<a href="/de/tags/ipsum">ipsum</a>,
<a href="/de/tags/words">words</a>
</p>
</div>
<div class="container markdown top-pad">
<p>Occupy mlkshk kale chips woke, listicle locavore next level fingerstache glossier aesthetic man braid before they sold out kitsch prism. Cred copper mug freegan, flannel YOLO single-origin coffee skateboard artisan four loko church-key man bun. Synth literally gastropub, kombucha chillwave helvetica offal truffaut church-key freegan pop-up gentrify narwhal. Kombucha viral vexillologist green juice. Slow-carb hoodie mumblecore tumeric tattooed meditation, lo-fi fap cred affogato forage whatever austin. Shabby chic direct trade migas, brunch gochujang sriracha chambray fanny pack 8-bit mustache letterpress. Street art umami tattooed, glossier selfies 90&rsquo;s kale chips cred cardigan taxidermy seitan distillery migas.</p>
<p>Chicharrones ethical activated charcoal cardigan vegan copper mug. Ennui messenger bag 90&rsquo;s street art art party etsy. Four loko freegan flannel flexitarian, slow-carb hot chicken vexillologist tote bag church-key tilde pinterest. Ethical hell of retro, mlkshk twee yr selfies asymmetrical venmo. Photo booth mixtape tattooed pop-up, synth flexitarian paleo. DIY cornhole sustainable, gochujang whatever slow-carb hexagon tilde. Bitters XOXO kombucha af.</p>
<p>Organic neutra brooklyn, literally helvetica air plant celiac chia sustainable sriracha. Jean shorts typewriter chambray 90&rsquo;s farm-to-table, man bun tofu VHS. Messenger bag paleo plaid meditation intelligentsia forage, lomo jianbing hell of. Waistcoat synth tacos direct trade truffaut kogi. Gentrify street art woke, everyday carry whatever gastropub PBR&amp;B fixie chambray kale chips af photo booth shoreditch. Thundercats hella cold-pressed, ethical vape irony pitchfork mixtape kombucha heirloom viral hell of deep v banh mi hoodie. Craft beer slow-carb raw denim, ugh asymmetrical artisan banh mi fingerstache trust fund poke bespoke green juice man bun mustache 3 wolf moon.</p>
<p>Seitan tumblr freegan, readymade health goth tofu letterpress mixtape. Viral microdosing roof party, narwhal paleo photo booth cronut fingerstache. Bitters ramps snackwave listicle, taxidermy skateboard williamsburg. Vexillologist irony ennui, vegan fap 8-bit street art hashtag bicycle rights thundercats woke fashion axe aesthetic. Before they sold out umami forage disrupt, fashion axe cardigan ugh kitsch small batch. Kitsch try-hard vexillologist, semiotics disrupt shabby chic schlitz. Cardigan deep v hammock yuccie craft beer wayfarers, bespoke shabby chic keytar vape venmo semiotics iPhone cray.</p>
</div>
</div>
@ -248,7 +248,7 @@ Hipster Ipsum - Vorstellung
<div class="container has-text-centered">
<span class="footer-text">
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Vorstellung</strong></a>, ein Theme für <a href="http://gohugo.io/">Hugo</a>. Entwickelt mit <a href="https://victoria.dev"><!-- raw HTML omitted --><!-- raw HTML omitted --> und <!-- raw HTML omitted --><!-- raw HTML omitted --></a> von Open Source Mitwirkenden
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Vorstellung</strong></a>, ein Theme für <a href="http://gohugo.io/">Hugo</a>. Entwickelt mit <a href="https://victoria.dev"><i class="fa fa-heart"></i> und <i class="fa fa-coffee"></i></a> von Open Source Mitwirkenden
</span>
</div>

View file

@ -39,7 +39,7 @@ Blog - Vorstellung
<link rel="stylesheet" href="/css/main.min.1eaffbdff5446b797511e3967e8419d2ad7851677604addf74d560bdfc5f91c7.css" integrity="sha256-Hq/73/VEa3l1EeOWfoQZ0q14UWd2BK3fdNVgvfxfkcc=" crossorigin="anonymous" media="screen">
<link rel="stylesheet" href="/css/main.min.daa833377fb1636f8cbfa65c601050bb5475623deb7aa6e6fdde94a064a6185d.css" integrity="sha256-2qgzN3&#43;xY2&#43;Mv6ZcYBBQu1R1Yj3reqbm/d6UoGSmGF0=" crossorigin="anonymous" media="screen">
@ -140,14 +140,14 @@ Blog - Vorstellung
<a class="navbar-item" href="http://example.com/es/">Español</a>
<a class="navbar-item" href="http://example.com/">English</a>
<a class="navbar-item" href="http://example.com/es/">Español</a>
@ -220,7 +220,7 @@ Blog - Vorstellung
<div class="container has-text-centered">
<span class="footer-text">
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Vorstellung</strong></a>, ein Theme für <a href="http://gohugo.io/">Hugo</a>. Entwickelt mit <a href="https://victoria.dev"><!-- raw HTML omitted --><!-- raw HTML omitted --> und <!-- raw HTML omitted --><!-- raw HTML omitted --></a> von Open Source Mitwirkenden
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Vorstellung</strong></a>, ein Theme für <a href="http://gohugo.io/">Hugo</a>. Entwickelt mit <a href="https://victoria.dev"><i class="fa fa-heart"></i> und <i class="fa fa-coffee"></i></a> von Open Source Mitwirkenden
</span>
</div>

View file

@ -39,7 +39,7 @@ Startup Ipsum - Vorstellung
<link rel="stylesheet" href="/css/main.min.1eaffbdff5446b797511e3967e8419d2ad7851677604addf74d560bdfc5f91c7.css" integrity="sha256-Hq/73/VEa3l1EeOWfoQZ0q14UWd2BK3fdNVgvfxfkcc=" crossorigin="anonymous" media="screen">
<link rel="stylesheet" href="/css/main.min.daa833377fb1636f8cbfa65c601050bb5475623deb7aa6e6fdde94a064a6185d.css" integrity="sha256-2qgzN3&#43;xY2&#43;Mv6ZcYBBQu1R1Yj3reqbm/d6UoGSmGF0=" crossorigin="anonymous" media="screen">
@ -56,7 +56,7 @@ Startup Ipsum - Vorstellung
<div class="container hero fade-in one ">
<h1 class="bold-title is-1">Blog</h1>
<h1 class="bold-title is-1">Blog</h1>
</div>
@ -148,14 +148,14 @@ Startup Ipsum - Vorstellung
<a class="navbar-item" href="http://example.com/es/">Español</a>
<a class="navbar-item" href="http://example.com/">English</a>
<a class="navbar-item" href="http://example.com/es/">Español</a>
@ -168,68 +168,89 @@ Startup Ipsum - Vorstellung
<div class="container">
<h2 class="title is-1 top-pad strong-post-title">
<a href="http://example.com/de/blog/startup-ipsum/">Startup Ipsum</a>
</h2>
<div class="post-data">
6. November 2017 |
1 Minute zum Lesen
</div>
<div class="container">
<h2 class="title is-1 top-pad strong-post-title">
<a href="http://example.com/de/blog/startup-ipsum/">Startup Ipsum</a>
</h2>
<div class="post-data">
6. November 2017 |
2 Minuten zum Lesen
</div>
<div class="blog-share">
Teilen:
<div class="blog-share">
Teilen:
<a class="twitter-share-button" href="https://twitter.com/intent/tweet?text=Startup%20Ipsum%20http%3a%2f%2fexample.com%2fde%2fblog%2fstartup-ipsum%2f" onclick="window.open(this.href, 'twitter-share', 'width=550,height=235');return false;">
<i class="fab fa-twitter"></i>
<span class="hidden">Twitter</span>
</a>
<a class="icon-facebook" href="https://www.facebook.com/sharer/sharer.php?u=http%3a%2f%2fexample.com%2fde%2fblog%2fstartup-ipsum%2f" onclick="window.open(this.href, 'facebook-share','width=580,height=296');return false;">
<i class="fab fa-facebook-f"></i>
<span class="hidden">Facebook</span>
</a>
<a class="icon-pinterest" href="http://pinterest.com/pin/create/button/?url=http%3a%2f%2fexample.com%2fde%2fblog%2fstartup-ipsum%2f&amp;description=Startup%20Ipsum" onclick="window.open(this.href, 'pinterest-share','width=580,height=296');return false;">
<i class="fab fa-pinterest-p"></i>
<span class="hidden">Pinterest</span>
</a>
<a class="icon-google-plus" href="https://plus.google.com/share?url=http%3a%2f%2fexample.com%2fde%2fblog%2fstartup-ipsum%2f" onclick="window.open(this.href, 'google-plus-share', 'width=490,height=530');return false;">
<i class="fab fa-google-plus-g"></i>
<span class="hidden">Google+</span>
</a>
</div>
<a class="twitter-share-button" href="https://twitter.com/intent/tweet?text=Startup%20Ipsum%20http%3a%2f%2fexample.com%2fde%2fblog%2fstartup-ipsum%2f" onclick="window.open(this.href, 'twitter-share', 'width=550,height=235');return false;">
<i class="fab fa-twitter"></i>
<span class="hidden">Twitter</span>
</a>
<a class="icon-facebook" href="https://www.facebook.com/sharer/sharer.php?u=http%3a%2f%2fexample.com%2fde%2fblog%2fstartup-ipsum%2f" onclick="window.open(this.href, 'facebook-share','width=580,height=296');return false;">
<i class="fab fa-facebook-f"></i>
<span class="hidden">Facebook</span>
</a>
<p>
Tags:
<a href="/de/tags/code">code</a>,
<a href="/de/tags/ipsum">ipsum</a>,
<a href="/de/tags/words">words</a>
</p>
<a class="icon-pinterest" href="http://pinterest.com/pin/create/button/?url=http%3a%2f%2fexample.com%2fde%2fblog%2fstartup-ipsum%2f&amp;description=Startup%20Ipsum" onclick="window.open(this.href, 'pinterest-share','width=580,height=296');return false;">
<i class="fab fa-pinterest-p"></i>
<span class="hidden">Pinterest</span>
</a>
<a class="icon-google-plus" href="https://plus.google.com/share?url=http%3a%2f%2fexample.com%2fde%2fblog%2fstartup-ipsum%2f" onclick="window.open(this.href, 'google-plus-share', 'width=490,height=530');return false;">
<i class="fab fa-google-plus-g"></i>
<span class="hidden">Google+</span>
</a>
</div>
<div class="container markdown top-pad">
<p>SpaceTeam affordances quantitative vs. qualitative SpaceTeam physical computing earned media thinker-maker-doer pair programming. Bootstrapping pitch deck physical computing driven cortado human-centered design innovate human-centered design driven. Grok pitch deck fund pitch deck sticky note affordances minimum viable product integrate paradigm viral iterate. Driven fund thought leader personas workflow SpaceTeam viral pair programming physical computing intuitive 360 campaign latte bootstrapping minimum viable product. Bootstrapping physical computing responsive pitch deck SpaceTeam parallax long shadow pitch deck bootstrapping ideate.</p>
<div class="highlight"><pre style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4"><code class="language-sh" data-lang="sh">$ complicated techie code git bash ubuntu
&gt;&gt;&gt; <span style="color:#66d9ef">return</span> value init foo
<p>
Tags:
<a href="/de/tags/code">code</a>,
<a href="/de/tags/ipsum">ipsum</a>,
<a href="/de/tags/words">words</a>
</p>
</div>
<div class="container markdown top-pad">
<p>SpaceTeam affordances quantitative vs. qualitative SpaceTeam physical computing earned media thinker-maker-doer pair programming. Bootstrapping pitch deck physical computing driven cortado human-centered design innovate human-centered design driven. Grok pitch deck fund pitch deck sticky note affordances minimum viable product integrate paradigm viral iterate. Driven fund thought leader personas workflow SpaceTeam viral pair programming physical computing intuitive 360 campaign latte bootstrapping minimum viable product. Bootstrapping physical computing responsive pitch deck SpaceTeam parallax long shadow pitch deck bootstrapping ideate.</p>
<div class="highlight"><pre style="background-color:#f0f0f0;-moz-tab-size:4;-o-tab-size:4;tab-size:4"><code class="language-sh" data-lang="sh">$ complicated techie code git bash ubuntu
&gt;&gt;&gt; <span style="color:#007020;font-weight:bold">return</span> value init foo
</code></pre></div><p>Responsive innovate grok latte disrupt intuitive actionable insight SpaceTeam grok. Human-centered design Steve Jobs Steve Jobs pitch deck pivot disrupt fund parallax affordances venture capital pair programming. Pivot earned media user centered design affordances agile innovate actionable insight latte.</p>
<p>Waterfall is so 2000 and late personas pitch deck fund big data actionable insight unicorn driven grok. Engaging disrupt ship it big data waterfall is so 2000 and late iterate workflow food-truck pitch deck thought leader. Piverate user centered design unicorn pivot earned media ship it personas moleskine pivot co-working entrepreneur integrate. Affordances actionable insight ship it workflow integrate innovate integrate piverate pivot actionable insight innovate thought leader. Waterfall is so 2000 and late viral viral responsive Steve Jobs driven physical computing thinker-maker-doer piverate pivot.</p>
<ul>
<li>Unordered list
<ul>
<li>First sub-item</li>
<li>Second sub-item</li>
</ul>
</li>
<li>Second top level item</li>
</ul>
<p>Now for an ordered list:</p>
<ol>
<li>Top level
<ol>
<li>First sub-level
<ol>
<li>Second sub-level</li>
</ol>
</li>
</ol>
</li>
</ol>
</div>
</div>
@ -251,7 +272,7 @@ Startup Ipsum - Vorstellung
<div class="container has-text-centered">
<span class="footer-text">
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Vorstellung</strong></a>, ein Theme für <a href="http://gohugo.io/">Hugo</a>. Entwickelt mit <a href="https://victoria.dev"><!-- raw HTML omitted --><!-- raw HTML omitted --> und <!-- raw HTML omitted --><!-- raw HTML omitted --></a> von Open Source Mitwirkenden
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Vorstellung</strong></a>, ein Theme für <a href="http://gohugo.io/">Hugo</a>. Entwickelt mit <a href="https://victoria.dev"><i class="fa fa-heart"></i> und <i class="fa fa-coffee"></i></a> von Open Source Mitwirkenden
</span>
</div>

View file

@ -2,7 +2,7 @@
<html lang="de">
<head>
<meta name="generator" content="Hugo 0.67.0" />
<meta name="generator" content="Hugo 0.74.2" />
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta name="HandheldFriendly" content="True">
@ -40,7 +40,7 @@ Vorstellung
<link rel="stylesheet" href="/css/main.min.1eaffbdff5446b797511e3967e8419d2ad7851677604addf74d560bdfc5f91c7.css" integrity="sha256-Hq/73/VEa3l1EeOWfoQZ0q14UWd2BK3fdNVgvfxfkcc=" crossorigin="anonymous" media="screen">
<link rel="stylesheet" href="/css/main.min.daa833377fb1636f8cbfa65c601050bb5475623deb7aa6e6fdde94a064a6185d.css" integrity="sha256-2qgzN3&#43;xY2&#43;Mv6ZcYBBQu1R1Yj3reqbm/d6UoGSmGF0=" crossorigin="anonymous" media="screen">
@ -76,23 +76,23 @@ Vorstellung
<div class="social-icons">
<a href="https://twitter.com/" >
<i class="fab fa-twitter"></i>
<i class="fab fab fa-twitter"></i>
</a>
<a href="https://facebook.com/" >
<i class="fab fa-facebook-f"></i>
<i class="fab fab fa-facebook-f"></i>
</a>
<a href="https://linkedin.com/" >
<i class="fab fa-linkedin-in"></i>
<i class="fab fab fa-linkedin-in"></i>
</a>
<a href="mailto:youremail@email.com" >
<i class="fas fa-paper-plane"></i>
<i class="fas fab fa-paper-plane"></i>
</a>
<a href="https://mastodon.social/" rel="me">
<i class="fab fa-mastodon"></i>
<i class="fab fab fa-mastodon"></i>
</a>
</div>
@ -175,14 +175,14 @@ Vorstellung
<a class="navbar-item" href="http://example.com/es/">Español</a>
<a class="navbar-item" href="http://example.com/">English</a>
<a class="navbar-item" href="http://example.com/es/">Español</a>
@ -287,7 +287,7 @@ Vorstellung
<img src="http://example.com/de/projects/photography/camera_hu3d03a01dcc18bc5be0e67db3d8d209a6_30380_302x0_resize_q75_box.jpg" alt ="camera.jpg">
<img class="card-thumbnail" src="http://example.com/de/projects/photography/camera_hu3d03a01dcc18bc5be0e67db3d8d209a6_30380_302x0_resize_q75_box.jpg" alt ="camera.jpg">
</a>
@ -312,7 +312,7 @@ Vorstellung
<img src="http://example.com/de/projects/design/plant_hu3d03a01dcc18bc5be0e67db3d8d209a6_34602_302x0_resize_q75_box.jpg" alt ="plant.jpg">
<img class="card-thumbnail" src="http://example.com/de/projects/design/plant_hu3d03a01dcc18bc5be0e67db3d8d209a6_34602_302x0_resize_q75_box.jpg" alt ="plant.jpg">
</a>
@ -337,7 +337,7 @@ Vorstellung
<img src="http://example.com/de/projects/writing/workday_hu3d03a01dcc18bc5be0e67db3d8d209a6_59645_302x0_resize_q75_box.jpg" alt ="workday.jpg">
<img class="card-thumbnail" src="http://example.com/de/projects/writing/workday_hu3d03a01dcc18bc5be0e67db3d8d209a6_59645_302x0_resize_q75_box.jpg" alt ="workday.jpg">
</a>
@ -394,6 +394,15 @@ Vorstellung
<div class="item owl-height">
<img src="http://example.com/de/projects/photography/lorene-farrugia-JpmC-tAHiVA-unsplash_hu5e0d05c41608c807d4e7962ffe4f3978_970605_640x0_resize_q75_box.jpg" class="img-responsive" alt="lorene-farrugia-JpmC-tAHiVA-unsplash.jpg">
</div>
<div class="item owl-height">
<img src="http://example.com/de/projects/photography/mario-ho-277298-unsplash_hu3d03a01dcc18bc5be0e67db3d8d209a6_19450_640x0_resize_q75_box.jpg" class="img-responsive" alt="mario-ho-277298-unsplash.jpg">
@ -605,23 +614,23 @@ Vorstellung
<div class="social-icons">
<a href="https://twitter.com/" >
<i class="fab fa-twitter"></i>
<i class="fab fab fa-twitter"></i>
</a>
<a href="https://facebook.com/" >
<i class="fab fa-facebook-f"></i>
<i class="fab fab fa-facebook-f"></i>
</a>
<a href="https://linkedin.com/" >
<i class="fab fa-linkedin-in"></i>
<i class="fab fab fa-linkedin-in"></i>
</a>
<a href="mailto:youremail@email.com" >
<i class="fas fa-paper-plane"></i>
<i class="fas fab fa-paper-plane"></i>
</a>
<a href="https://mastodon.social/" rel="me">
<i class="fab fa-mastodon"></i>
<i class="fab fab fa-mastodon"></i>
</a>
</div>
@ -646,7 +655,7 @@ Vorstellung
<div class="container has-text-centered">
<span class="footer-text">
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Vorstellung</strong></a>, ein Theme für <a href="http://gohugo.io/">Hugo</a>. Entwickelt mit <a href="https://victoria.dev"><!-- raw HTML omitted --><!-- raw HTML omitted --> und <!-- raw HTML omitted --><!-- raw HTML omitted --></a> von Open Source Mitwirkenden
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Vorstellung</strong></a>, ein Theme für <a href="http://gohugo.io/">Hugo</a>. Entwickelt mit <a href="https://victoria.dev"><i class="fa fa-heart"></i> und <i class="fa fa-coffee"></i></a> von Open Source Mitwirkenden
</span>
</div>

View file

@ -37,7 +37,7 @@ Design - Vorstellung
<link rel="stylesheet" href="/css/main.min.1eaffbdff5446b797511e3967e8419d2ad7851677604addf74d560bdfc5f91c7.css" integrity="sha256-Hq/73/VEa3l1EeOWfoQZ0q14UWd2BK3fdNVgvfxfkcc=" crossorigin="anonymous" media="screen">
<link rel="stylesheet" href="/css/main.min.daa833377fb1636f8cbfa65c601050bb5475623deb7aa6e6fdde94a064a6185d.css" integrity="sha256-2qgzN3&#43;xY2&#43;Mv6ZcYBBQu1R1Yj3reqbm/d6UoGSmGF0=" crossorigin="anonymous" media="screen">
@ -149,14 +149,14 @@ Design - Vorstellung
<a class="navbar-item" href="http://example.com/es/">Español</a>
<a class="navbar-item" href="http://example.com/">English</a>
<a class="navbar-item" href="http://example.com/es/">Español</a>
@ -210,7 +210,7 @@ Design - Vorstellung
<div class="container has-text-centered">
<span class="footer-text">
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Vorstellung</strong></a>, ein Theme für <a href="http://gohugo.io/">Hugo</a>. Entwickelt mit <a href="https://victoria.dev"><!-- raw HTML omitted --><!-- raw HTML omitted --> und <!-- raw HTML omitted --><!-- raw HTML omitted --></a> von Open Source Mitwirkenden
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Vorstellung</strong></a>, ein Theme für <a href="http://gohugo.io/">Hugo</a>. Entwickelt mit <a href="https://victoria.dev"><i class="fa fa-heart"></i> und <i class="fa fa-coffee"></i></a> von Open Source Mitwirkenden
</span>
</div>

View file

@ -39,7 +39,7 @@ Projekte - Vorstellung
<link rel="stylesheet" href="/css/main.min.1eaffbdff5446b797511e3967e8419d2ad7851677604addf74d560bdfc5f91c7.css" integrity="sha256-Hq/73/VEa3l1EeOWfoQZ0q14UWd2BK3fdNVgvfxfkcc=" crossorigin="anonymous" media="screen">
<link rel="stylesheet" href="/css/main.min.daa833377fb1636f8cbfa65c601050bb5475623deb7aa6e6fdde94a064a6185d.css" integrity="sha256-2qgzN3&#43;xY2&#43;Mv6ZcYBBQu1R1Yj3reqbm/d6UoGSmGF0=" crossorigin="anonymous" media="screen">
@ -146,14 +146,14 @@ Projekte - Vorstellung
<a class="navbar-item" href="http://example.com/es/">Español</a>
<a class="navbar-item" href="http://example.com/">English</a>
<a class="navbar-item" href="http://example.com/es/">Español</a>
@ -273,7 +273,7 @@ Projekte - Vorstellung
<div class="container has-text-centered">
<span class="footer-text">
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Vorstellung</strong></a>, ein Theme für <a href="http://gohugo.io/">Hugo</a>. Entwickelt mit <a href="https://victoria.dev"><!-- raw HTML omitted --><!-- raw HTML omitted --> und <!-- raw HTML omitted --><!-- raw HTML omitted --></a> von Open Source Mitwirkenden
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Vorstellung</strong></a>, ein Theme für <a href="http://gohugo.io/">Hugo</a>. Entwickelt mit <a href="https://victoria.dev"><i class="fa fa-heart"></i> und <i class="fa fa-coffee"></i></a> von Open Source Mitwirkenden
</span>
</div>

View file

@ -27,6 +27,8 @@ Fotografie - Vorstellung
<meta property="og:image" content="http://example.com/de/projects/photography/erik-jan-leusink-180382-unsplash.jpg"/>
<meta property="og:image" content="http://example.com/de/projects/photography/lorene-farrugia-JpmC-tAHiVA-unsplash.jpg"/>
<meta property="og:image" content="http://example.com/de/projects/photography/mario-ho-277298-unsplash.jpg"/>
<meta property="og:image" content="http://example.com/de/projects/photography/tyler-lastovich-285380-unsplash.jpg"/>
@ -43,7 +45,7 @@ Fotografie - Vorstellung
<link rel="stylesheet" href="/css/main.min.1eaffbdff5446b797511e3967e8419d2ad7851677604addf74d560bdfc5f91c7.css" integrity="sha256-Hq/73/VEa3l1EeOWfoQZ0q14UWd2BK3fdNVgvfxfkcc=" crossorigin="anonymous" media="screen">
<link rel="stylesheet" href="/css/main.min.daa833377fb1636f8cbfa65c601050bb5475623deb7aa6e6fdde94a064a6185d.css" integrity="sha256-2qgzN3&#43;xY2&#43;Mv6ZcYBBQu1R1Yj3reqbm/d6UoGSmGF0=" crossorigin="anonymous" media="screen">
@ -155,14 +157,14 @@ Fotografie - Vorstellung
<a class="navbar-item" href="http://example.com/es/">Español</a>
<a class="navbar-item" href="http://example.com/">English</a>
<a class="navbar-item" href="http://example.com/es/">Español</a>
@ -203,6 +205,15 @@ Fotografie - Vorstellung
<div class="item owl-height">
<img src="/de/projects/photography/lorene-farrugia-JpmC-tAHiVA-unsplash_hu5e0d05c41608c807d4e7962ffe4f3978_970605_1000x0_resize_q75_box.jpg" class="img-responsive" alt="lorene-farrugia-JpmC-tAHiVA-unsplash.jpg">
</div>
<div class="item owl-height">
<img src="/de/projects/photography/mario-ho-277298-unsplash_hu3d03a01dcc18bc5be0e67db3d8d209a6_19450_1000x0_resize_q75_box.jpg" class="img-responsive" alt="mario-ho-277298-unsplash.jpg">
@ -251,7 +262,7 @@ Fotografie - Vorstellung
<div class="container has-text-centered">
<span class="footer-text">
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Vorstellung</strong></a>, ein Theme für <a href="http://gohugo.io/">Hugo</a>. Entwickelt mit <a href="https://victoria.dev"><!-- raw HTML omitted --><!-- raw HTML omitted --> und <!-- raw HTML omitted --><!-- raw HTML omitted --></a> von Open Source Mitwirkenden
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Vorstellung</strong></a>, ein Theme für <a href="http://gohugo.io/">Hugo</a>. Entwickelt mit <a href="https://victoria.dev"><i class="fa fa-heart"></i> und <i class="fa fa-coffee"></i></a> von Open Source Mitwirkenden
</span>
</div>

Binary file not shown.

After

Width:  |  Height:  |  Size: 948 KiB

View file

@ -37,7 +37,7 @@ Schreiben - Vorstellung
<link rel="stylesheet" href="/css/main.min.1eaffbdff5446b797511e3967e8419d2ad7851677604addf74d560bdfc5f91c7.css" integrity="sha256-Hq/73/VEa3l1EeOWfoQZ0q14UWd2BK3fdNVgvfxfkcc=" crossorigin="anonymous" media="screen">
<link rel="stylesheet" href="/css/main.min.daa833377fb1636f8cbfa65c601050bb5475623deb7aa6e6fdde94a064a6185d.css" integrity="sha256-2qgzN3&#43;xY2&#43;Mv6ZcYBBQu1R1Yj3reqbm/d6UoGSmGF0=" crossorigin="anonymous" media="screen">
@ -149,14 +149,14 @@ Schreiben - Vorstellung
<a class="navbar-item" href="http://example.com/es/">Español</a>
<a class="navbar-item" href="http://example.com/">English</a>
<a class="navbar-item" href="http://example.com/es/">Español</a>
@ -210,7 +210,7 @@ Schreiben - Vorstellung
<div class="container has-text-centered">
<span class="footer-text">
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Vorstellung</strong></a>, ein Theme für <a href="http://gohugo.io/">Hugo</a>. Entwickelt mit <a href="https://victoria.dev"><!-- raw HTML omitted --><!-- raw HTML omitted --> und <!-- raw HTML omitted --><!-- raw HTML omitted --></a> von Open Source Mitwirkenden
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Vorstellung</strong></a>, ein Theme für <a href="http://gohugo.io/">Hugo</a>. Entwickelt mit <a href="https://victoria.dev"><i class="fa fa-heart"></i> und <i class="fa fa-coffee"></i></a> von Open Source Mitwirkenden
</span>
</div>

View file

@ -10,7 +10,7 @@
<meta name="referrer" content="no-referrer">
<meta name="description" content="Beschreibung der Webseite">
<title>
code - Vorstellung
Code - Vorstellung
</title>
<link href="/de/tags/code/index.xml" rel="alternate" type="application/rss+xml" title="Vorstellung" />
@ -39,7 +39,7 @@ code - Vorstellung
<link rel="stylesheet" href="/css/main.min.1eaffbdff5446b797511e3967e8419d2ad7851677604addf74d560bdfc5f91c7.css" integrity="sha256-Hq/73/VEa3l1EeOWfoQZ0q14UWd2BK3fdNVgvfxfkcc=" crossorigin="anonymous" media="screen">
<link rel="stylesheet" href="/css/main.min.daa833377fb1636f8cbfa65c601050bb5475623deb7aa6e6fdde94a064a6185d.css" integrity="sha256-2qgzN3&#43;xY2&#43;Mv6ZcYBBQu1R1Yj3reqbm/d6UoGSmGF0=" crossorigin="anonymous" media="screen">
@ -146,14 +146,14 @@ code - Vorstellung
<a class="navbar-item" href="http://example.com/es/">Español</a>
<a class="navbar-item" href="http://example.com/">English</a>
<a class="navbar-item" href="http://example.com/es/">Español</a>
@ -197,7 +197,7 @@ code - Vorstellung
<div class="container has-text-centered">
<span class="footer-text">
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Vorstellung</strong></a>, ein Theme für <a href="http://gohugo.io/">Hugo</a>. Entwickelt mit <a href="https://victoria.dev"><!-- raw HTML omitted --><!-- raw HTML omitted --> und <!-- raw HTML omitted --><!-- raw HTML omitted --></a> von Open Source Mitwirkenden
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Vorstellung</strong></a>, ein Theme für <a href="http://gohugo.io/">Hugo</a>. Entwickelt mit <a href="https://victoria.dev"><i class="fa fa-heart"></i> und <i class="fa fa-coffee"></i></a> von Open Source Mitwirkenden
</span>
</div>

View file

@ -10,7 +10,7 @@
<meta name="referrer" content="no-referrer">
<meta name="description" content="Beschreibung der Webseite">
<title>
coffee - Vorstellung
Coffee - Vorstellung
</title>
<link href="/de/tags/coffee/index.xml" rel="alternate" type="application/rss+xml" title="Vorstellung" />
@ -39,7 +39,7 @@ coffee - Vorstellung
<link rel="stylesheet" href="/css/main.min.1eaffbdff5446b797511e3967e8419d2ad7851677604addf74d560bdfc5f91c7.css" integrity="sha256-Hq/73/VEa3l1EeOWfoQZ0q14UWd2BK3fdNVgvfxfkcc=" crossorigin="anonymous" media="screen">
<link rel="stylesheet" href="/css/main.min.daa833377fb1636f8cbfa65c601050bb5475623deb7aa6e6fdde94a064a6185d.css" integrity="sha256-2qgzN3&#43;xY2&#43;Mv6ZcYBBQu1R1Yj3reqbm/d6UoGSmGF0=" crossorigin="anonymous" media="screen">
@ -146,14 +146,14 @@ coffee - Vorstellung
<a class="navbar-item" href="http://example.com/es/">Español</a>
<a class="navbar-item" href="http://example.com/">English</a>
<a class="navbar-item" href="http://example.com/es/">Español</a>
@ -197,7 +197,7 @@ coffee - Vorstellung
<div class="container has-text-centered">
<span class="footer-text">
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Vorstellung</strong></a>, ein Theme für <a href="http://gohugo.io/">Hugo</a>. Entwickelt mit <a href="https://victoria.dev"><!-- raw HTML omitted --><!-- raw HTML omitted --> und <!-- raw HTML omitted --><!-- raw HTML omitted --></a> von Open Source Mitwirkenden
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Vorstellung</strong></a>, ein Theme für <a href="http://gohugo.io/">Hugo</a>. Entwickelt mit <a href="https://victoria.dev"><i class="fa fa-heart"></i> und <i class="fa fa-coffee"></i></a> von Open Source Mitwirkenden
</span>
</div>

View file

@ -10,7 +10,7 @@
<meta name="referrer" content="no-referrer">
<meta name="description" content="Beschreibung der Webseite">
<title>
images - Vorstellung
Images - Vorstellung
</title>
<link href="/de/tags/images/index.xml" rel="alternate" type="application/rss+xml" title="Vorstellung" />
@ -39,7 +39,7 @@ images - Vorstellung
<link rel="stylesheet" href="/css/main.min.1eaffbdff5446b797511e3967e8419d2ad7851677604addf74d560bdfc5f91c7.css" integrity="sha256-Hq/73/VEa3l1EeOWfoQZ0q14UWd2BK3fdNVgvfxfkcc=" crossorigin="anonymous" media="screen">
<link rel="stylesheet" href="/css/main.min.daa833377fb1636f8cbfa65c601050bb5475623deb7aa6e6fdde94a064a6185d.css" integrity="sha256-2qgzN3&#43;xY2&#43;Mv6ZcYBBQu1R1Yj3reqbm/d6UoGSmGF0=" crossorigin="anonymous" media="screen">
@ -146,14 +146,14 @@ images - Vorstellung
<a class="navbar-item" href="http://example.com/es/">Español</a>
<a class="navbar-item" href="http://example.com/">English</a>
<a class="navbar-item" href="http://example.com/es/">Español</a>
@ -197,7 +197,7 @@ images - Vorstellung
<div class="container has-text-centered">
<span class="footer-text">
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Vorstellung</strong></a>, ein Theme für <a href="http://gohugo.io/">Hugo</a>. Entwickelt mit <a href="https://victoria.dev"><!-- raw HTML omitted --><!-- raw HTML omitted --> und <!-- raw HTML omitted --><!-- raw HTML omitted --></a> von Open Source Mitwirkenden
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Vorstellung</strong></a>, ein Theme für <a href="http://gohugo.io/">Hugo</a>. Entwickelt mit <a href="https://victoria.dev"><i class="fa fa-heart"></i> und <i class="fa fa-coffee"></i></a> von Open Source Mitwirkenden
</span>
</div>

View file

@ -39,7 +39,7 @@ Tags - Vorstellung
<link rel="stylesheet" href="/css/main.min.1eaffbdff5446b797511e3967e8419d2ad7851677604addf74d560bdfc5f91c7.css" integrity="sha256-Hq/73/VEa3l1EeOWfoQZ0q14UWd2BK3fdNVgvfxfkcc=" crossorigin="anonymous" media="screen">
<link rel="stylesheet" href="/css/main.min.daa833377fb1636f8cbfa65c601050bb5475623deb7aa6e6fdde94a064a6185d.css" integrity="sha256-2qgzN3&#43;xY2&#43;Mv6ZcYBBQu1R1Yj3reqbm/d6UoGSmGF0=" crossorigin="anonymous" media="screen">
@ -146,14 +146,14 @@ Tags - Vorstellung
<a class="navbar-item" href="http://example.com/es/">Español</a>
<a class="navbar-item" href="http://example.com/">English</a>
<a class="navbar-item" href="http://example.com/es/">Español</a>
@ -189,7 +189,7 @@ Tags - Vorstellung
<div class="container has-text-centered">
<span class="footer-text">
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Vorstellung</strong></a>, ein Theme für <a href="http://gohugo.io/">Hugo</a>. Entwickelt mit <a href="https://victoria.dev"><!-- raw HTML omitted --><!-- raw HTML omitted --> und <!-- raw HTML omitted --><!-- raw HTML omitted --></a> von Open Source Mitwirkenden
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Vorstellung</strong></a>, ein Theme für <a href="http://gohugo.io/">Hugo</a>. Entwickelt mit <a href="https://victoria.dev"><i class="fa fa-heart"></i> und <i class="fa fa-coffee"></i></a> von Open Source Mitwirkenden
</span>
</div>

View file

@ -10,7 +10,7 @@
<meta name="referrer" content="no-referrer">
<meta name="description" content="Beschreibung der Webseite">
<title>
ipsum - Vorstellung
Ipsum - Vorstellung
</title>
<link href="/de/tags/ipsum/index.xml" rel="alternate" type="application/rss+xml" title="Vorstellung" />
@ -39,7 +39,7 @@ ipsum - Vorstellung
<link rel="stylesheet" href="/css/main.min.1eaffbdff5446b797511e3967e8419d2ad7851677604addf74d560bdfc5f91c7.css" integrity="sha256-Hq/73/VEa3l1EeOWfoQZ0q14UWd2BK3fdNVgvfxfkcc=" crossorigin="anonymous" media="screen">
<link rel="stylesheet" href="/css/main.min.daa833377fb1636f8cbfa65c601050bb5475623deb7aa6e6fdde94a064a6185d.css" integrity="sha256-2qgzN3&#43;xY2&#43;Mv6ZcYBBQu1R1Yj3reqbm/d6UoGSmGF0=" crossorigin="anonymous" media="screen">
@ -146,14 +146,14 @@ ipsum - Vorstellung
<a class="navbar-item" href="http://example.com/es/">Español</a>
<a class="navbar-item" href="http://example.com/">English</a>
<a class="navbar-item" href="http://example.com/es/">Español</a>
@ -209,7 +209,7 @@ ipsum - Vorstellung
<div class="container has-text-centered">
<span class="footer-text">
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Vorstellung</strong></a>, ein Theme für <a href="http://gohugo.io/">Hugo</a>. Entwickelt mit <a href="https://victoria.dev"><!-- raw HTML omitted --><!-- raw HTML omitted --> und <!-- raw HTML omitted --><!-- raw HTML omitted --></a> von Open Source Mitwirkenden
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Vorstellung</strong></a>, ein Theme für <a href="http://gohugo.io/">Hugo</a>. Entwickelt mit <a href="https://victoria.dev"><i class="fa fa-heart"></i> und <i class="fa fa-coffee"></i></a> von Open Source Mitwirkenden
</span>
</div>

View file

@ -10,7 +10,7 @@
<meta name="referrer" content="no-referrer">
<meta name="description" content="Beschreibung der Webseite">
<title>
words - Vorstellung
Words - Vorstellung
</title>
<link href="/de/tags/words/index.xml" rel="alternate" type="application/rss+xml" title="Vorstellung" />
@ -39,7 +39,7 @@ words - Vorstellung
<link rel="stylesheet" href="/css/main.min.1eaffbdff5446b797511e3967e8419d2ad7851677604addf74d560bdfc5f91c7.css" integrity="sha256-Hq/73/VEa3l1EeOWfoQZ0q14UWd2BK3fdNVgvfxfkcc=" crossorigin="anonymous" media="screen">
<link rel="stylesheet" href="/css/main.min.daa833377fb1636f8cbfa65c601050bb5475623deb7aa6e6fdde94a064a6185d.css" integrity="sha256-2qgzN3&#43;xY2&#43;Mv6ZcYBBQu1R1Yj3reqbm/d6UoGSmGF0=" crossorigin="anonymous" media="screen">
@ -146,14 +146,14 @@ words - Vorstellung
<a class="navbar-item" href="http://example.com/es/">Español</a>
<a class="navbar-item" href="http://example.com/">English</a>
<a class="navbar-item" href="http://example.com/es/">Español</a>
@ -203,7 +203,7 @@ words - Vorstellung
<div class="container has-text-centered">
<span class="footer-text">
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Vorstellung</strong></a>, ein Theme für <a href="http://gohugo.io/">Hugo</a>. Entwickelt mit <a href="https://victoria.dev"><!-- raw HTML omitted --><!-- raw HTML omitted --> und <!-- raw HTML omitted --><!-- raw HTML omitted --></a> von Open Source Mitwirkenden
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Vorstellung</strong></a>, ein Theme für <a href="http://gohugo.io/">Hugo</a>. Entwickelt mit <a href="https://victoria.dev"><i class="fa fa-heart"></i> und <i class="fa fa-coffee"></i></a> von Open Source Mitwirkenden
</span>
</div>

View file

@ -80,7 +80,7 @@
<url>
<loc>http://example.com/blog/</loc>
<lastmod>2017-11-13T11:58:39-05:00</lastmod>
<lastmod>2020-07-25T02:04:06-05:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="es"
@ -99,23 +99,28 @@
</url>
<url>
<loc>http://example.com/blog/hipster-ipsum/</loc>
<lastmod>2017-11-13T11:58:39-05:00</lastmod>
<loc>http://example.com/tags/code/</loc>
<lastmod>2020-07-25T02:04:06-05:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="es"
href="http://example.com/es/tags/code/"
/>
<xhtml:link
rel="alternate"
hreflang="de"
href="http://example.com/de/blog/hipster-ipsum/"
href="http://example.com/de/tags/code/"
/>
<xhtml:link
rel="alternate"
hreflang="en"
href="http://example.com/blog/hipster-ipsum/"
href="http://example.com/tags/code/"
/>
</url>
<url>
<loc>http://example.com/</loc>
<lastmod>2017-11-13T11:58:39-05:00</lastmod>
<lastmod>2020-07-25T02:04:06-05:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="es"
@ -133,6 +138,56 @@
/>
</url>
<url>
<loc>http://example.com/tags/</loc>
<lastmod>2020-07-25T02:04:06-05:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="es"
href="http://example.com/es/tags/"
/>
<xhtml:link
rel="alternate"
hreflang="de"
href="http://example.com/de/tags/"
/>
<xhtml:link
rel="alternate"
hreflang="en"
href="http://example.com/tags/"
/>
</url>
<url>
<loc>http://example.com/blog/configuration/</loc>
<lastmod>2020-07-25T02:04:06-05:00</lastmod>
</url>
<url>
<loc>http://example.com/blog/long-form-post/</loc>
<lastmod>2020-05-30T20:18:53-05:00</lastmod>
</url>
<url>
<loc>http://example.com/tags/blog/</loc>
<lastmod>2020-05-30T20:18:53-05:00</lastmod>
</url>
<url>
<loc>http://example.com/blog/hipster-ipsum/</loc>
<lastmod>2017-11-13T11:58:39-05:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="de"
href="http://example.com/de/blog/hipster-ipsum/"
/>
<xhtml:link
rel="alternate"
hreflang="en"
href="http://example.com/blog/hipster-ipsum/"
/>
</url>
<url>
<loc>http://example.com/tags/ipsum/</loc>
<lastmod>2017-11-13T11:58:39-05:00</lastmod>
@ -153,26 +208,6 @@
/>
</url>
<url>
<loc>http://example.com/tags/</loc>
<lastmod>2017-11-13T11:58:39-05:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="es"
href="http://example.com/es/tags/"
/>
<xhtml:link
rel="alternate"
hreflang="de"
href="http://example.com/de/tags/"
/>
<xhtml:link
rel="alternate"
hreflang="en"
href="http://example.com/tags/"
/>
</url>
<url>
<loc>http://example.com/tags/words/</loc>
<lastmod>2017-11-13T11:58:39-05:00</lastmod>
@ -193,26 +228,6 @@
/>
</url>
<url>
<loc>http://example.com/tags/code/</loc>
<lastmod>2017-11-06T12:04:06-05:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="es"
href="http://example.com/es/tags/code/"
/>
<xhtml:link
rel="alternate"
hreflang="de"
href="http://example.com/de/tags/code/"
/>
<xhtml:link
rel="alternate"
hreflang="en"
href="http://example.com/tags/code/"
/>
</url>
<url>
<loc>http://example.com/blog/startup-ipsum/</loc>
<lastmod>2017-11-06T12:04:06-05:00</lastmod>

View file

@ -10,7 +10,7 @@
<meta name="referrer" content="no-referrer">
<meta name="description" content="Descripcion del sitio web">
<title>
404 Page not found - Introducción
404 Page Not Found - Introducción
</title>
@ -39,7 +39,7 @@
<link rel="stylesheet" href="/css/main.min.1eaffbdff5446b797511e3967e8419d2ad7851677604addf74d560bdfc5f91c7.css" integrity="sha256-Hq/73/VEa3l1EeOWfoQZ0q14UWd2BK3fdNVgvfxfkcc=" crossorigin="anonymous" media="screen">
<link rel="stylesheet" href="/css/main.min.daa833377fb1636f8cbfa65c601050bb5475623deb7aa6e6fdde94a064a6185d.css" integrity="sha256-2qgzN3&#43;xY2&#43;Mv6ZcYBBQu1R1Yj3reqbm/d6UoGSmGF0=" crossorigin="anonymous" media="screen">
@ -146,12 +146,12 @@
<a class="navbar-item" href="http://example.com/">English</a>
<a class="navbar-item" href="http://example.com/de/">Deutsch</a>
@ -176,7 +176,7 @@
<div class="container has-text-centered">
<span class="footer-text">
Tema <a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> para <a href="http://gohugo.io/">Hugo</a>. Hecho con <a href="https://victoria.dev"><!-- raw HTML omitted --><!-- raw HTML omitted --> y <!-- raw HTML omitted --><!-- raw HTML omitted --></a> por colaboradores de código abierto.
Tema <a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> para <a href="http://gohugo.io/">Hugo</a>. Hecho con <a href="https://victoria.dev"><i class="fa fa-heart"></i> y <i class="fa fa-coffee"></i></a> por colaboradores de código abierto.
</span>
</div>

View file

@ -10,7 +10,7 @@
<meta name="referrer" content="no-referrer">
<meta name="description" content="Descripcion del sitio web">
<title>
Coffee Ipsum - Español - Introducción
Coffee Ipsum Español - Introducción
</title>
@ -37,7 +37,7 @@ Coffee Ipsum - Español - Introducción
<link rel="stylesheet" href="/css/main.min.1eaffbdff5446b797511e3967e8419d2ad7851677604addf74d560bdfc5f91c7.css" integrity="sha256-Hq/73/VEa3l1EeOWfoQZ0q14UWd2BK3fdNVgvfxfkcc=" crossorigin="anonymous" media="screen">
<link rel="stylesheet" href="/css/main.min.daa833377fb1636f8cbfa65c601050bb5475623deb7aa6e6fdde94a064a6185d.css" integrity="sha256-2qgzN3&#43;xY2&#43;Mv6ZcYBBQu1R1Yj3reqbm/d6UoGSmGF0=" crossorigin="anonymous" media="screen">
@ -54,7 +54,7 @@ Coffee Ipsum - Español - Introducción
<div class="container hero fade-in one ">
<h1 class="bold-title is-1">Blog</h1>
<h1 class="bold-title is-1">Blog</h1>
</div>
@ -146,12 +146,12 @@ Coffee Ipsum - Español - Introducción
<a class="navbar-item" href="http://example.com/">English</a>
<a class="navbar-item" href="http://example.com/de/">Deutsch</a>
@ -166,68 +166,68 @@ Coffee Ipsum - Español - Introducción
<div class="container">
<h2 class="title is-1 top-pad strong-post-title">
<a href="http://example.com/es/blog/coffee-ipsum/">Coffee Ipsum - Español</a>
</h2>
<div class="post-data">
Nov 1, 2017 |
5 minutos de lectura
</div>
<div class="container">
<h2 class="title is-1 top-pad strong-post-title">
<a href="http://example.com/es/blog/coffee-ipsum/">Coffee Ipsum - Español</a>
</h2>
<div class="post-data">
Nov 1, 2017 |
5 minutos de lectura
</div>
<div class="blog-share">
Comparte esto:
<div class="blog-share">
Comparte esto:
<a class="twitter-share-button" href="https://twitter.com/intent/tweet?text=Coffee%20Ipsum%20-%20Espa%c3%b1ol%20http%3a%2f%2fexample.com%2fes%2fblog%2fcoffee-ipsum%2f" onclick="window.open(this.href, 'twitter-share', 'width=550,height=235');return false;">
<i class="fab fa-twitter"></i>
<span class="hidden">Twitter</span>
</a>
<a class="icon-facebook" href="https://www.facebook.com/sharer/sharer.php?u=http%3a%2f%2fexample.com%2fes%2fblog%2fcoffee-ipsum%2f" onclick="window.open(this.href, 'facebook-share','width=580,height=296');return false;">
<i class="fab fa-facebook-f"></i>
<span class="hidden">Facebook</span>
</a>
<a class="icon-pinterest" href="http://pinterest.com/pin/create/button/?url=http%3a%2f%2fexample.com%2fes%2fblog%2fcoffee-ipsum%2f&amp;description=Coffee%20Ipsum%20-%20Espa%c3%b1ol" onclick="window.open(this.href, 'pinterest-share','width=580,height=296');return false;">
<i class="fab fa-pinterest-p"></i>
<span class="hidden">Pinterest</span>
</a>
<a class="icon-google-plus" href="https://plus.google.com/share?url=http%3a%2f%2fexample.com%2fes%2fblog%2fcoffee-ipsum%2f" onclick="window.open(this.href, 'google-plus-share', 'width=490,height=530');return false;">
<i class="fab fa-google-plus-g"></i>
<span class="hidden">Google+</span>
</a>
</div>
<a class="twitter-share-button" href="https://twitter.com/intent/tweet?text=Coffee%20Ipsum%20-%20Espa%c3%b1ol%20http%3a%2f%2fexample.com%2fes%2fblog%2fcoffee-ipsum%2f" onclick="window.open(this.href, 'twitter-share', 'width=550,height=235');return false;">
<i class="fab fa-twitter"></i>
<span class="hidden">Twitter</span>
</a>
<a class="icon-facebook" href="https://www.facebook.com/sharer/sharer.php?u=http%3a%2f%2fexample.com%2fes%2fblog%2fcoffee-ipsum%2f" onclick="window.open(this.href, 'facebook-share','width=580,height=296');return false;">
<i class="fab fa-facebook-f"></i>
<span class="hidden">Facebook</span>
</a>
<p>
Tags:
<a href="/es/tags/coffee">coffee</a>,
<a href="/es/tags/ipsum">ipsum</a>,
<a href="/es/tags/images">images</a>
</p>
<a class="icon-pinterest" href="http://pinterest.com/pin/create/button/?url=http%3a%2f%2fexample.com%2fes%2fblog%2fcoffee-ipsum%2f&amp;description=Coffee%20Ipsum%20-%20Espa%c3%b1ol" onclick="window.open(this.href, 'pinterest-share','width=580,height=296');return false;">
<i class="fab fa-pinterest-p"></i>
<span class="hidden">Pinterest</span>
</a>
<a class="icon-google-plus" href="https://plus.google.com/share?url=http%3a%2f%2fexample.com%2fes%2fblog%2fcoffee-ipsum%2f" onclick="window.open(this.href, 'google-plus-share', 'width=490,height=530');return false;">
<i class="fab fa-google-plus-g"></i>
<span class="hidden">Google+</span>
</a>
</div>
<div class="container markdown top-pad">
<p>Aromatic aroma con panna, crema so coffee robust coffee barista, café au lait trifecta that strong blue mountain cortado aftertaste. Aroma extraction french press, skinny sweet, blue mountain cup roast barista, beans, extra cappuccino mug crema strong. Americano caffeine white, con panna saucer sit, con panna eu, carajillo aftertaste kopi-luwak, body aftertaste cup single origin café au lait saucer. Macchiato java sweet arabica, turkish cup, eu flavour mug extraction white cortado saucer est white brewed instant, rich, barista breve cappuccino barista organic. Barista, beans extraction, barista mocha, roast steamed siphon cup sweet cortado, cinnamon froth milk ristretto cortado galão. Crema, milk extra brewed, lungo dripper, espresso flavour qui, variety, grinder caramelization sit, strong turkish espresso body, filter barista caramelization half and half strong. To go viennese cream to go, flavour, so mocha as, carajillo iced et a siphon froth. Aged, eu, cup, brewed aroma kopi-luwak, coffee, id viennese french press brewed grounds acerbic froth. Decaffeinated acerbic, spoon beans seasonal, french press café au lait mazagran roast chicory, pumpkin spice galão as fair trade, dark irish cup ristretto half and half whipped shop. Latte instant black extra aroma, instant, extra robusta variety skinny shop aged cup ristretto foam cortado. Bar galão skinny saucer est affogato sugar caffeine chicory sugar coffee, seasonal barista french press acerbic in chicory robust.</p>
<p>
Tags:
<a href="/es/tags/coffee">coffee</a>,
<a href="/es/tags/ipsum">ipsum</a>,
<a href="/es/tags/images">images</a>
</p>
</div>
<div class="container markdown top-pad">
<p>Aromatic aroma con panna, crema so coffee robust coffee barista, café au lait trifecta that strong blue mountain cortado aftertaste. Aroma extraction french press, skinny sweet, blue mountain cup roast barista, beans, extra cappuccino mug crema strong. Americano caffeine white, con panna saucer sit, con panna eu, carajillo aftertaste kopi-luwak, body aftertaste cup single origin café au lait saucer. Macchiato java sweet arabica, turkish cup, eu flavour mug extraction white cortado saucer est white brewed instant, rich, barista breve cappuccino barista organic. Barista, beans extraction, barista mocha, roast steamed siphon cup sweet cortado, cinnamon froth milk ristretto cortado galão. Crema, milk extra brewed, lungo dripper, espresso flavour qui, variety, grinder caramelization sit, strong turkish espresso body, filter barista caramelization half and half strong. To go viennese cream to go, flavour, so mocha as, carajillo iced et a siphon froth. Aged, eu, cup, brewed aroma kopi-luwak, coffee, id viennese french press brewed grounds acerbic froth. Decaffeinated acerbic, spoon beans seasonal, french press café au lait mazagran roast chicory, pumpkin spice galão as fair trade, dark irish cup ristretto half and half whipped shop. Latte instant black extra aroma, instant, extra robusta variety skinny shop aged cup ristretto foam cortado. Bar galão skinny saucer est affogato sugar caffeine chicory sugar coffee, seasonal barista french press acerbic in chicory robust.</p>
<p><img src="workday.jpg" alt="Sample image"></p>
<p>At, whipped extraction, wings, dark black, breve, single origin, est as irish, caffeine milk half and half, whipped, arabica filter dark a trifecta aftertaste. Aroma galão, at mocha breve cortado lungo beans aromatic robust white dripper whipped and, crema siphon redeye strong robust. Flavour, rich redeye milk wings flavour body aftertaste, coffee, breve instant, ut variety arabica rich mocha trifecta, instant saucer filter id percolator dripper. Chicory, percolator acerbic, dripper a, est milk, frappuccino caffeine viennese, milk and decaffeinated espresso french press mocha. Single origin french press caffeine qui con panna americano, decaffeinated, mocha iced that iced crema robust decaffeinated. Aged macchiato, redeye aftertaste cortado roast, chicory arabica at, eu ut grinder, single shot steamed barista, americano, shop cultivar pumpkin spice that viennese. Ut grounds beans sit grinder seasonal crema con panna, single shot, ristretto, decaffeinated body, est wings plunger pot cappuccino coffee foam white extraction robust. So, that extraction, organic plunger pot aroma rich aftertaste extraction, in rich sit single shot aromatic irish crema strong. Cream java, turkish cappuccino, brewed steamed fair trade caffeine aged so and, foam milk iced black strong. Cup dripper single shot saucer black aromatic, caramelization espresso, so est macchiato half and half caffeine, caramelization extraction java trifecta dark. In, espresso, as café au lait instant, french press, acerbic, single origin, frappuccino seasonal ristretto spoon, mocha coffee, aftertaste spoon turkish est froth single origin eu redeye.</p>
<p>Barista at, whipped, brewed americano ut, black americano spoon crema, black carajillo, con panna, qui galão crema aged arabica. Cup half and half white, sugar, viennese, mocha to go single shot americano crema single origin sweet strong, pumpkin spice, flavour, rich steamed shop grinder steamed latte extra to go brewed. Frappuccino, variety a flavour rich, bar caffeine carajillo, caffeine, half and half brewed half and half that con panna single origin redeye. Roast percolator, beans kopi-luwak aftertaste ut, cup java, sweet, single origin affogato, eu espresso barista cortado trifecta ristretto to go aged cortado caramelization sweet. So variety wings sit roast acerbic a saucer, cream galão foam seasonal, instant, cinnamon beans macchiato mug steamed caffeine cappuccino. To go, frappuccino, body dripper aftertaste brewed spoon ristretto redeye, black dark, bar crema whipped wings macchiato, flavour, ut rich mocha variety filter aromatic. Ut instant single shot shop turkish and, grounds, latte half and half aged breve mug percolator shop. Macchiato, at cup single origin crema affogato, mug cup, eu et ristretto espresso, viennese froth beans variety to go. Coffee caffeine spoon, macchiato strong dripper crema, macchiato espresso blue mountain, chicory con panna white bar caffeine skinny trifecta con panna. Robust, mazagran latte to go, carajillo cinnamon at and trifecta, cream body variety instant id cream so extra. Ut as iced wings saucer caramelization, affogato, coffee, froth so, brewed acerbic iced shop in sweet brewed.</p>
<p>Doppio, in, con panna, half and half, dark, viennese aftertaste caffeine aged cultivar mug shop flavour. Spoon to go, doppio caffeine, a latte carajillo whipped, viennese grinder carajillo whipped dark grinder espresso coffee, espresso, variety café au lait aged half and half grounds. Mazagran as, kopi-luwak viennese, dark, sit aged id at, milk, to go cup sweet, shop coffee, spoon mazagran filter, doppio at extra cup milk. Chicory id roast chicory aromatic strong, white sweet viennese, carajillo java strong a to go aftertaste, frappuccino at cinnamon dripper pumpkin spice arabica. Aged, brewed percolator, id, macchiato aroma, black bar aromatic ristretto lungo as mug grinder as mocha. Mug, medium et roast doppio, spoon so single origin french press skinny, caffeine blue mountain variety, mocha, percolator grinder café au lait kopi-luwak arabica. Caffeine, seasonal, french press steamed rich single origin cream galão brewed cinnamon, doppio java, chicory aftertaste ristretto, plunger pot aromatic, ut, plunger pot milk est whipped grinder coffee. Sweet macchiato cappuccino cup, decaffeinated macchiato cream, milk extra, ut, galão froth half and half sweet qui, siphon, et aged, skinny, siphon milk grounds strong to go. Chicory medium, ut viennese instant fair trade steamed medium café au lait, as fair trade, barista single origin, body acerbic decaffeinated lungo café au lait bar trifecta americano mazagran. Strong cortado caffeine wings cappuccino foam, saucer est cream white aftertaste body french press. Beans affogato, ristretto a plunger pot bar macchiato, froth filter seasonal doppio, siphon sit caffeine cortado redeye single shot.</p>
</div>
</div>
@ -249,7 +249,7 @@ Coffee Ipsum - Español - Introducción
<div class="container has-text-centered">
<span class="footer-text">
Tema <a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> para <a href="http://gohugo.io/">Hugo</a>. Hecho con <a href="https://victoria.dev"><!-- raw HTML omitted --><!-- raw HTML omitted --> y <!-- raw HTML omitted --><!-- raw HTML omitted --></a> por colaboradores de código abierto.
Tema <a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> para <a href="http://gohugo.io/">Hugo</a>. Hecho con <a href="https://victoria.dev"><i class="fa fa-heart"></i> y <i class="fa fa-coffee"></i></a> por colaboradores de código abierto.
</span>
</div>

View file

@ -10,7 +10,7 @@
<meta name="referrer" content="no-referrer">
<meta name="description" content="Descripcion del sitio web">
<title>
Hipster Ipsum - Español - Introducción
Hipster Ipsum Español - Introducción
</title>
@ -39,7 +39,7 @@ Hipster Ipsum - Español - Introducción
<link rel="stylesheet" href="/css/main.min.1eaffbdff5446b797511e3967e8419d2ad7851677604addf74d560bdfc5f91c7.css" integrity="sha256-Hq/73/VEa3l1EeOWfoQZ0q14UWd2BK3fdNVgvfxfkcc=" crossorigin="anonymous" media="screen">
<link rel="stylesheet" href="/css/main.min.daa833377fb1636f8cbfa65c601050bb5475623deb7aa6e6fdde94a064a6185d.css" integrity="sha256-2qgzN3&#43;xY2&#43;Mv6ZcYBBQu1R1Yj3reqbm/d6UoGSmGF0=" crossorigin="anonymous" media="screen">
@ -56,7 +56,7 @@ Hipster Ipsum - Español - Introducción
<div class="container hero fade-in one ">
<h1 class="bold-title is-1">Blog</h1>
<h1 class="bold-title is-1">Blog</h1>
</div>
@ -148,12 +148,12 @@ Hipster Ipsum - Español - Introducción
<a class="navbar-item" href="http://example.com/">English</a>
<a class="navbar-item" href="http://example.com/de/">Deutsch</a>
@ -168,65 +168,65 @@ Hipster Ipsum - Español - Introducción
<div class="container">
<h2 class="title is-1 top-pad strong-post-title">
<a href="http://example.com/es/blog/hipser-ipsum/">Hipster Ipsum - Español</a>
</h2>
<div class="post-data">
Nov 13, 2017 |
2 minutos de lectura
</div>
<div class="container">
<h2 class="title is-1 top-pad strong-post-title">
<a href="http://example.com/es/blog/hipser-ipsum/">Hipster Ipsum - Español</a>
</h2>
<div class="post-data">
Nov 13, 2017 |
2 minutos de lectura
</div>
<div class="blog-share">
Comparte esto:
<div class="blog-share">
Comparte esto:
<a class="twitter-share-button" href="https://twitter.com/intent/tweet?text=Hipster%20Ipsum%20-%20Espa%c3%b1ol%20http%3a%2f%2fexample.com%2fes%2fblog%2fhipser-ipsum%2f" onclick="window.open(this.href, 'twitter-share', 'width=550,height=235');return false;">
<i class="fab fa-twitter"></i>
<span class="hidden">Twitter</span>
</a>
<a class="icon-facebook" href="https://www.facebook.com/sharer/sharer.php?u=http%3a%2f%2fexample.com%2fes%2fblog%2fhipser-ipsum%2f" onclick="window.open(this.href, 'facebook-share','width=580,height=296');return false;">
<i class="fab fa-facebook-f"></i>
<span class="hidden">Facebook</span>
</a>
<a class="icon-pinterest" href="http://pinterest.com/pin/create/button/?url=http%3a%2f%2fexample.com%2fes%2fblog%2fhipser-ipsum%2f&amp;description=Hipster%20Ipsum%20-%20Espa%c3%b1ol" onclick="window.open(this.href, 'pinterest-share','width=580,height=296');return false;">
<i class="fab fa-pinterest-p"></i>
<span class="hidden">Pinterest</span>
</a>
<a class="icon-google-plus" href="https://plus.google.com/share?url=http%3a%2f%2fexample.com%2fes%2fblog%2fhipser-ipsum%2f" onclick="window.open(this.href, 'google-plus-share', 'width=490,height=530');return false;">
<i class="fab fa-google-plus-g"></i>
<span class="hidden">Google+</span>
</a>
</div>
<a class="twitter-share-button" href="https://twitter.com/intent/tweet?text=Hipster%20Ipsum%20-%20Espa%c3%b1ol%20http%3a%2f%2fexample.com%2fes%2fblog%2fhipser-ipsum%2f" onclick="window.open(this.href, 'twitter-share', 'width=550,height=235');return false;">
<i class="fab fa-twitter"></i>
<span class="hidden">Twitter</span>
</a>
<a class="icon-facebook" href="https://www.facebook.com/sharer/sharer.php?u=http%3a%2f%2fexample.com%2fes%2fblog%2fhipser-ipsum%2f" onclick="window.open(this.href, 'facebook-share','width=580,height=296');return false;">
<i class="fab fa-facebook-f"></i>
<span class="hidden">Facebook</span>
</a>
<p>
Tags:
<a href="/es/tags/ipsum">ipsum</a>,
<a href="/es/tags/words">words</a>
</p>
<a class="icon-pinterest" href="http://pinterest.com/pin/create/button/?url=http%3a%2f%2fexample.com%2fes%2fblog%2fhipser-ipsum%2f&amp;description=Hipster%20Ipsum%20-%20Espa%c3%b1ol" onclick="window.open(this.href, 'pinterest-share','width=580,height=296');return false;">
<i class="fab fa-pinterest-p"></i>
<span class="hidden">Pinterest</span>
</a>
<a class="icon-google-plus" href="https://plus.google.com/share?url=http%3a%2f%2fexample.com%2fes%2fblog%2fhipser-ipsum%2f" onclick="window.open(this.href, 'google-plus-share', 'width=490,height=530');return false;">
<i class="fab fa-google-plus-g"></i>
<span class="hidden">Google+</span>
</a>
</div>
<div class="container markdown top-pad">
<p>Occupy mlkshk kale chips woke, listicle locavore next level fingerstache glossier aesthetic man braid before they sold out kitsch prism. Cred copper mug freegan, flannel YOLO single-origin coffee skateboard artisan four loko church-key man bun. Synth literally gastropub, kombucha chillwave helvetica offal truffaut church-key freegan pop-up gentrify narwhal. Kombucha viral vexillologist green juice. Slow-carb hoodie mumblecore tumeric tattooed meditation, lo-fi fap cred affogato forage whatever austin. Shabby chic direct trade migas, brunch gochujang sriracha chambray fanny pack 8-bit mustache letterpress. Street art umami tattooed, glossier selfies 90&rsquo;s kale chips cred cardigan taxidermy seitan distillery migas.</p>
<p>
Tags:
<a href="/es/tags/ipsum">ipsum</a>,
<a href="/es/tags/words">words</a>
</p>
</div>
<div class="container markdown top-pad">
<p>Occupy mlkshk kale chips woke, listicle locavore next level fingerstache glossier aesthetic man braid before they sold out kitsch prism. Cred copper mug freegan, flannel YOLO single-origin coffee skateboard artisan four loko church-key man bun. Synth literally gastropub, kombucha chillwave helvetica offal truffaut church-key freegan pop-up gentrify narwhal. Kombucha viral vexillologist green juice. Slow-carb hoodie mumblecore tumeric tattooed meditation, lo-fi fap cred affogato forage whatever austin. Shabby chic direct trade migas, brunch gochujang sriracha chambray fanny pack 8-bit mustache letterpress. Street art umami tattooed, glossier selfies 90&rsquo;s kale chips cred cardigan taxidermy seitan distillery migas.</p>
<p>Chicharrones ethical activated charcoal cardigan vegan copper mug. Ennui messenger bag 90&rsquo;s street art art party etsy. Four loko freegan flannel flexitarian, slow-carb hot chicken vexillologist tote bag church-key tilde pinterest. Ethical hell of retro, mlkshk twee yr selfies asymmetrical venmo. Photo booth mixtape tattooed pop-up, synth flexitarian paleo. DIY cornhole sustainable, gochujang whatever slow-carb hexagon tilde. Bitters XOXO kombucha af.</p>
<p>Organic neutra brooklyn, literally helvetica air plant celiac chia sustainable sriracha. Jean shorts typewriter chambray 90&rsquo;s farm-to-table, man bun tofu VHS. Messenger bag paleo plaid meditation intelligentsia forage, lomo jianbing hell of. Waistcoat synth tacos direct trade truffaut kogi. Gentrify street art woke, everyday carry whatever gastropub PBR&amp;B fixie chambray kale chips af photo booth shoreditch. Thundercats hella cold-pressed, ethical vape irony pitchfork mixtape kombucha heirloom viral hell of deep v banh mi hoodie. Craft beer slow-carb raw denim, ugh asymmetrical artisan banh mi fingerstache trust fund poke bespoke green juice man bun mustache 3 wolf moon.</p>
<p>Seitan tumblr freegan, readymade health goth tofu letterpress mixtape. Viral microdosing roof party, narwhal paleo photo booth cronut fingerstache. Bitters ramps snackwave listicle, taxidermy skateboard williamsburg. Vexillologist irony ennui, vegan fap 8-bit street art hashtag bicycle rights thundercats woke fashion axe aesthetic. Before they sold out umami forage disrupt, fashion axe cardigan ugh kitsch small batch. Kitsch try-hard vexillologist, semiotics disrupt shabby chic schlitz. Cardigan deep v hammock yuccie craft beer wayfarers, bespoke shabby chic keytar vape venmo semiotics iPhone cray.</p>
</div>
</div>
@ -248,7 +248,7 @@ Hipster Ipsum - Español - Introducción
<div class="container has-text-centered">
<span class="footer-text">
Tema <a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> para <a href="http://gohugo.io/">Hugo</a>. Hecho con <a href="https://victoria.dev"><!-- raw HTML omitted --><!-- raw HTML omitted --> y <!-- raw HTML omitted --><!-- raw HTML omitted --></a> por colaboradores de código abierto.
Tema <a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> para <a href="http://gohugo.io/">Hugo</a>. Hecho con <a href="https://victoria.dev"><i class="fa fa-heart"></i> y <i class="fa fa-coffee"></i></a> por colaboradores de código abierto.
</span>
</div>

View file

@ -39,7 +39,7 @@ Blog - Introducción
<link rel="stylesheet" href="/css/main.min.1eaffbdff5446b797511e3967e8419d2ad7851677604addf74d560bdfc5f91c7.css" integrity="sha256-Hq/73/VEa3l1EeOWfoQZ0q14UWd2BK3fdNVgvfxfkcc=" crossorigin="anonymous" media="screen">
<link rel="stylesheet" href="/css/main.min.daa833377fb1636f8cbfa65c601050bb5475623deb7aa6e6fdde94a064a6185d.css" integrity="sha256-2qgzN3&#43;xY2&#43;Mv6ZcYBBQu1R1Yj3reqbm/d6UoGSmGF0=" crossorigin="anonymous" media="screen">
@ -140,12 +140,12 @@ Blog - Introducción
<a class="navbar-item" href="http://example.com/">English</a>
<a class="navbar-item" href="http://example.com/de/">Deutsch</a>
@ -220,7 +220,7 @@ Blog - Introducción
<div class="container has-text-centered">
<span class="footer-text">
Tema <a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> para <a href="http://gohugo.io/">Hugo</a>. Hecho con <a href="https://victoria.dev"><!-- raw HTML omitted --><!-- raw HTML omitted --> y <!-- raw HTML omitted --><!-- raw HTML omitted --></a> por colaboradores de código abierto.
Tema <a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> para <a href="http://gohugo.io/">Hugo</a>. Hecho con <a href="https://victoria.dev"><i class="fa fa-heart"></i> y <i class="fa fa-coffee"></i></a> por colaboradores de código abierto.
</span>
</div>

View file

@ -10,7 +10,7 @@
<meta name="referrer" content="no-referrer">
<meta name="description" content="Descripcion del sitio web">
<title>
Startup Ipsum - Español - Introducción
Startup Ipsum Español - Introducción
</title>
@ -39,7 +39,7 @@ Startup Ipsum - Español - Introducción
<link rel="stylesheet" href="/css/main.min.1eaffbdff5446b797511e3967e8419d2ad7851677604addf74d560bdfc5f91c7.css" integrity="sha256-Hq/73/VEa3l1EeOWfoQZ0q14UWd2BK3fdNVgvfxfkcc=" crossorigin="anonymous" media="screen">
<link rel="stylesheet" href="/css/main.min.daa833377fb1636f8cbfa65c601050bb5475623deb7aa6e6fdde94a064a6185d.css" integrity="sha256-2qgzN3&#43;xY2&#43;Mv6ZcYBBQu1R1Yj3reqbm/d6UoGSmGF0=" crossorigin="anonymous" media="screen">
@ -56,7 +56,7 @@ Startup Ipsum - Español - Introducción
<div class="container hero fade-in one ">
<h1 class="bold-title is-1">Blog</h1>
<h1 class="bold-title is-1">Blog</h1>
</div>
@ -148,12 +148,12 @@ Startup Ipsum - Español - Introducción
<a class="navbar-item" href="http://example.com/">English</a>
<a class="navbar-item" href="http://example.com/de/">Deutsch</a>
@ -168,68 +168,89 @@ Startup Ipsum - Español - Introducción
<div class="container">
<h2 class="title is-1 top-pad strong-post-title">
<a href="http://example.com/es/blog/startup-ipsum/">Startup Ipsum - Español</a>
</h2>
<div class="post-data">
Nov 6, 2017 |
1 minuto de lectura
</div>
<div class="container">
<h2 class="title is-1 top-pad strong-post-title">
<a href="http://example.com/es/blog/startup-ipsum/">Startup Ipsum - Español</a>
</h2>
<div class="post-data">
Nov 6, 2017 |
2 minutos de lectura
</div>
<div class="blog-share">
Comparte esto:
<div class="blog-share">
Comparte esto:
<a class="twitter-share-button" href="https://twitter.com/intent/tweet?text=Startup%20Ipsum%20-%20Espa%c3%b1ol%20http%3a%2f%2fexample.com%2fes%2fblog%2fstartup-ipsum%2f" onclick="window.open(this.href, 'twitter-share', 'width=550,height=235');return false;">
<i class="fab fa-twitter"></i>
<span class="hidden">Twitter</span>
</a>
<a class="icon-facebook" href="https://www.facebook.com/sharer/sharer.php?u=http%3a%2f%2fexample.com%2fes%2fblog%2fstartup-ipsum%2f" onclick="window.open(this.href, 'facebook-share','width=580,height=296');return false;">
<i class="fab fa-facebook-f"></i>
<span class="hidden">Facebook</span>
</a>
<a class="icon-pinterest" href="http://pinterest.com/pin/create/button/?url=http%3a%2f%2fexample.com%2fes%2fblog%2fstartup-ipsum%2f&amp;description=Startup%20Ipsum%20-%20Espa%c3%b1ol" onclick="window.open(this.href, 'pinterest-share','width=580,height=296');return false;">
<i class="fab fa-pinterest-p"></i>
<span class="hidden">Pinterest</span>
</a>
<a class="icon-google-plus" href="https://plus.google.com/share?url=http%3a%2f%2fexample.com%2fes%2fblog%2fstartup-ipsum%2f" onclick="window.open(this.href, 'google-plus-share', 'width=490,height=530');return false;">
<i class="fab fa-google-plus-g"></i>
<span class="hidden">Google+</span>
</a>
</div>
<a class="twitter-share-button" href="https://twitter.com/intent/tweet?text=Startup%20Ipsum%20-%20Espa%c3%b1ol%20http%3a%2f%2fexample.com%2fes%2fblog%2fstartup-ipsum%2f" onclick="window.open(this.href, 'twitter-share', 'width=550,height=235');return false;">
<i class="fab fa-twitter"></i>
<span class="hidden">Twitter</span>
</a>
<a class="icon-facebook" href="https://www.facebook.com/sharer/sharer.php?u=http%3a%2f%2fexample.com%2fes%2fblog%2fstartup-ipsum%2f" onclick="window.open(this.href, 'facebook-share','width=580,height=296');return false;">
<i class="fab fa-facebook-f"></i>
<span class="hidden">Facebook</span>
</a>
<p>
Tags:
<a href="/es/tags/code">code</a>,
<a href="/es/tags/ipsum">ipsum</a>,
<a href="/es/tags/words">words</a>
</p>
<a class="icon-pinterest" href="http://pinterest.com/pin/create/button/?url=http%3a%2f%2fexample.com%2fes%2fblog%2fstartup-ipsum%2f&amp;description=Startup%20Ipsum%20-%20Espa%c3%b1ol" onclick="window.open(this.href, 'pinterest-share','width=580,height=296');return false;">
<i class="fab fa-pinterest-p"></i>
<span class="hidden">Pinterest</span>
</a>
<a class="icon-google-plus" href="https://plus.google.com/share?url=http%3a%2f%2fexample.com%2fes%2fblog%2fstartup-ipsum%2f" onclick="window.open(this.href, 'google-plus-share', 'width=490,height=530');return false;">
<i class="fab fa-google-plus-g"></i>
<span class="hidden">Google+</span>
</a>
</div>
<div class="container markdown top-pad">
<p>SpaceTeam affordances quantitative vs. qualitative SpaceTeam physical computing earned media thinker-maker-doer pair programming. Bootstrapping pitch deck physical computing driven cortado human-centered design innovate human-centered design driven. Grok pitch deck fund pitch deck sticky note affordances minimum viable product integrate paradigm viral iterate. Driven fund thought leader personas workflow SpaceTeam viral pair programming physical computing intuitive 360 campaign latte bootstrapping minimum viable product. Bootstrapping physical computing responsive pitch deck SpaceTeam parallax long shadow pitch deck bootstrapping ideate.</p>
<div class="highlight"><pre style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4"><code class="language-sh" data-lang="sh">$ complicated techie code git bash ubuntu
&gt;&gt;&gt; <span style="color:#66d9ef">return</span> value init foo
<p>
Tags:
<a href="/es/tags/code">code</a>,
<a href="/es/tags/ipsum">ipsum</a>,
<a href="/es/tags/words">words</a>
</p>
</div>
<div class="container markdown top-pad">
<p>SpaceTeam affordances quantitative vs. qualitative SpaceTeam physical computing earned media thinker-maker-doer pair programming. Bootstrapping pitch deck physical computing driven cortado human-centered design innovate human-centered design driven. Grok pitch deck fund pitch deck sticky note affordances minimum viable product integrate paradigm viral iterate. Driven fund thought leader personas workflow SpaceTeam viral pair programming physical computing intuitive 360 campaign latte bootstrapping minimum viable product. Bootstrapping physical computing responsive pitch deck SpaceTeam parallax long shadow pitch deck bootstrapping ideate.</p>
<div class="highlight"><pre style="background-color:#f0f0f0;-moz-tab-size:4;-o-tab-size:4;tab-size:4"><code class="language-sh" data-lang="sh">$ complicated techie code git bash ubuntu
&gt;&gt;&gt; <span style="color:#007020;font-weight:bold">return</span> value init foo
</code></pre></div><p>Responsive innovate grok latte disrupt intuitive actionable insight SpaceTeam grok. Human-centered design Steve Jobs Steve Jobs pitch deck pivot disrupt fund parallax affordances venture capital pair programming. Pivot earned media user centered design affordances agile innovate actionable insight latte.</p>
<p>Waterfall is so 2000 and late personas pitch deck fund big data actionable insight unicorn driven grok. Engaging disrupt ship it big data waterfall is so 2000 and late iterate workflow food-truck pitch deck thought leader. Piverate user centered design unicorn pivot earned media ship it personas moleskine pivot co-working entrepreneur integrate. Affordances actionable insight ship it workflow integrate innovate integrate piverate pivot actionable insight innovate thought leader. Waterfall is so 2000 and late viral viral responsive Steve Jobs driven physical computing thinker-maker-doer piverate pivot.</p>
<ul>
<li>Unordered list
<ul>
<li>First sub-item</li>
<li>Second sub-item</li>
</ul>
</li>
<li>Second top level item</li>
</ul>
<p>Now for an ordered list:</p>
<ol>
<li>Top level
<ol>
<li>First sub-level
<ol>
<li>Second sub-level</li>
</ol>
</li>
</ol>
</li>
</ol>
</div>
</div>
@ -251,7 +272,7 @@ Startup Ipsum - Español - Introducción
<div class="container has-text-centered">
<span class="footer-text">
Tema <a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> para <a href="http://gohugo.io/">Hugo</a>. Hecho con <a href="https://victoria.dev"><!-- raw HTML omitted --><!-- raw HTML omitted --> y <!-- raw HTML omitted --><!-- raw HTML omitted --></a> por colaboradores de código abierto.
Tema <a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> para <a href="http://gohugo.io/">Hugo</a>. Hecho con <a href="https://victoria.dev"><i class="fa fa-heart"></i> y <i class="fa fa-coffee"></i></a> por colaboradores de código abierto.
</span>
</div>

View file

@ -2,7 +2,7 @@
<html lang="es">
<head>
<meta name="generator" content="Hugo 0.67.0" />
<meta name="generator" content="Hugo 0.74.2" />
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta name="HandheldFriendly" content="True">
@ -40,7 +40,7 @@ Introducción
<link rel="stylesheet" href="/css/main.min.1eaffbdff5446b797511e3967e8419d2ad7851677604addf74d560bdfc5f91c7.css" integrity="sha256-Hq/73/VEa3l1EeOWfoQZ0q14UWd2BK3fdNVgvfxfkcc=" crossorigin="anonymous" media="screen">
<link rel="stylesheet" href="/css/main.min.daa833377fb1636f8cbfa65c601050bb5475623deb7aa6e6fdde94a064a6185d.css" integrity="sha256-2qgzN3&#43;xY2&#43;Mv6ZcYBBQu1R1Yj3reqbm/d6UoGSmGF0=" crossorigin="anonymous" media="screen">
@ -76,23 +76,23 @@ Introducción
<div class="social-icons">
<a href="https://twitter.com/" >
<i class="fab fa-twitter"></i>
<i class="fab fab fa-twitter"></i>
</a>
<a href="https://facebook.com/" >
<i class="fab fa-facebook-f"></i>
<i class="fab fab fa-facebook-f"></i>
</a>
<a href="https://linkedin.com/" >
<i class="fab fa-linkedin-in"></i>
<i class="fab fab fa-linkedin-in"></i>
</a>
<a href="mailto:youremail@email.com" >
<i class="fas fa-paper-plane"></i>
<i class="fas fab fa-paper-plane"></i>
</a>
<a href="https://mastodon.social/" rel="me">
<i class="fab fa-mastodon"></i>
<i class="fab fab fa-mastodon"></i>
</a>
</div>
@ -175,12 +175,12 @@ Introducción
<a class="navbar-item" href="http://example.com/">English</a>
<a class="navbar-item" href="http://example.com/de/">Deutsch</a>
@ -287,7 +287,7 @@ Introducción
<img src="http://example.com/es/projects/photography/camera_hu3d03a01dcc18bc5be0e67db3d8d209a6_30380_302x0_resize_q75_box.jpg" alt ="camera.jpg">
<img class="card-thumbnail" src="http://example.com/es/projects/photography/camera_hu3d03a01dcc18bc5be0e67db3d8d209a6_30380_302x0_resize_q75_box.jpg" alt ="camera.jpg">
</a>
@ -312,7 +312,7 @@ Introducción
<img src="http://example.com/es/projects/design/plant_hu3d03a01dcc18bc5be0e67db3d8d209a6_34602_302x0_resize_q75_box.jpg" alt ="plant.jpg">
<img class="card-thumbnail" src="http://example.com/es/projects/design/plant_hu3d03a01dcc18bc5be0e67db3d8d209a6_34602_302x0_resize_q75_box.jpg" alt ="plant.jpg">
</a>
@ -337,7 +337,7 @@ Introducción
<img src="http://example.com/es/projects/writing/workday_hu3d03a01dcc18bc5be0e67db3d8d209a6_59645_302x0_resize_q75_box.jpg" alt ="workday.jpg">
<img class="card-thumbnail" src="http://example.com/es/projects/writing/workday_hu3d03a01dcc18bc5be0e67db3d8d209a6_59645_302x0_resize_q75_box.jpg" alt ="workday.jpg">
</a>
@ -394,6 +394,15 @@ Introducción
<div class="item owl-height">
<img src="http://example.com/es/projects/photography/lorene-farrugia-JpmC-tAHiVA-unsplash_hu5e0d05c41608c807d4e7962ffe4f3978_970605_640x0_resize_q75_box.jpg" class="img-responsive" alt="lorene-farrugia-JpmC-tAHiVA-unsplash.jpg">
</div>
<div class="item owl-height">
<img src="http://example.com/es/projects/photography/mario-ho-277298-unsplash_hu3d03a01dcc18bc5be0e67db3d8d209a6_19450_640x0_resize_q75_box.jpg" class="img-responsive" alt="mario-ho-277298-unsplash.jpg">
@ -605,23 +614,23 @@ Introducción
<div class="social-icons">
<a href="https://twitter.com/" >
<i class="fab fa-twitter"></i>
<i class="fab fab fa-twitter"></i>
</a>
<a href="https://facebook.com/" >
<i class="fab fa-facebook-f"></i>
<i class="fab fab fa-facebook-f"></i>
</a>
<a href="https://linkedin.com/" >
<i class="fab fa-linkedin-in"></i>
<i class="fab fab fa-linkedin-in"></i>
</a>
<a href="mailto:youremail@email.com" >
<i class="fas fa-paper-plane"></i>
<i class="fas fab fa-paper-plane"></i>
</a>
<a href="https://mastodon.social/" rel="me">
<i class="fab fa-mastodon"></i>
<i class="fab fab fa-mastodon"></i>
</a>
</div>
@ -646,7 +655,7 @@ Introducción
<div class="container has-text-centered">
<span class="footer-text">
Tema <a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> para <a href="http://gohugo.io/">Hugo</a>. Hecho con <a href="https://victoria.dev"><!-- raw HTML omitted --><!-- raw HTML omitted --> y <!-- raw HTML omitted --><!-- raw HTML omitted --></a> por colaboradores de código abierto.
Tema <a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> para <a href="http://gohugo.io/">Hugo</a>. Hecho con <a href="https://victoria.dev"><i class="fa fa-heart"></i> y <i class="fa fa-coffee"></i></a> por colaboradores de código abierto.
</span>
</div>

View file

@ -37,7 +37,7 @@ Diseño - Introducción
<link rel="stylesheet" href="/css/main.min.1eaffbdff5446b797511e3967e8419d2ad7851677604addf74d560bdfc5f91c7.css" integrity="sha256-Hq/73/VEa3l1EeOWfoQZ0q14UWd2BK3fdNVgvfxfkcc=" crossorigin="anonymous" media="screen">
<link rel="stylesheet" href="/css/main.min.daa833377fb1636f8cbfa65c601050bb5475623deb7aa6e6fdde94a064a6185d.css" integrity="sha256-2qgzN3&#43;xY2&#43;Mv6ZcYBBQu1R1Yj3reqbm/d6UoGSmGF0=" crossorigin="anonymous" media="screen">
@ -149,12 +149,12 @@ Diseño - Introducción
<a class="navbar-item" href="http://example.com/">English</a>
<a class="navbar-item" href="http://example.com/de/">Deutsch</a>
@ -210,7 +210,7 @@ Diseño - Introducción
<div class="container has-text-centered">
<span class="footer-text">
Tema <a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> para <a href="http://gohugo.io/">Hugo</a>. Hecho con <a href="https://victoria.dev"><!-- raw HTML omitted --><!-- raw HTML omitted --> y <!-- raw HTML omitted --><!-- raw HTML omitted --></a> por colaboradores de código abierto.
Tema <a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> para <a href="http://gohugo.io/">Hugo</a>. Hecho con <a href="https://victoria.dev"><i class="fa fa-heart"></i> y <i class="fa fa-coffee"></i></a> por colaboradores de código abierto.
</span>
</div>

View file

@ -39,7 +39,7 @@ Proyectos - Introducción
<link rel="stylesheet" href="/css/main.min.1eaffbdff5446b797511e3967e8419d2ad7851677604addf74d560bdfc5f91c7.css" integrity="sha256-Hq/73/VEa3l1EeOWfoQZ0q14UWd2BK3fdNVgvfxfkcc=" crossorigin="anonymous" media="screen">
<link rel="stylesheet" href="/css/main.min.daa833377fb1636f8cbfa65c601050bb5475623deb7aa6e6fdde94a064a6185d.css" integrity="sha256-2qgzN3&#43;xY2&#43;Mv6ZcYBBQu1R1Yj3reqbm/d6UoGSmGF0=" crossorigin="anonymous" media="screen">
@ -146,12 +146,12 @@ Proyectos - Introducción
<a class="navbar-item" href="http://example.com/">English</a>
<a class="navbar-item" href="http://example.com/de/">Deutsch</a>
@ -273,7 +273,7 @@ Proyectos - Introducción
<div class="container has-text-centered">
<span class="footer-text">
Tema <a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> para <a href="http://gohugo.io/">Hugo</a>. Hecho con <a href="https://victoria.dev"><!-- raw HTML omitted --><!-- raw HTML omitted --> y <!-- raw HTML omitted --><!-- raw HTML omitted --></a> por colaboradores de código abierto.
Tema <a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> para <a href="http://gohugo.io/">Hugo</a>. Hecho con <a href="https://victoria.dev"><i class="fa fa-heart"></i> y <i class="fa fa-coffee"></i></a> por colaboradores de código abierto.
</span>
</div>

View file

@ -27,6 +27,8 @@ Fotografía - Introducción
<meta property="og:image" content="http://example.com/es/projects/photography/erik-jan-leusink-180382-unsplash.jpg"/>
<meta property="og:image" content="http://example.com/es/projects/photography/lorene-farrugia-JpmC-tAHiVA-unsplash.jpg"/>
<meta property="og:image" content="http://example.com/es/projects/photography/mario-ho-277298-unsplash.jpg"/>
<meta property="og:image" content="http://example.com/es/projects/photography/tyler-lastovich-285380-unsplash.jpg"/>
@ -43,7 +45,7 @@ Fotografía - Introducción
<link rel="stylesheet" href="/css/main.min.1eaffbdff5446b797511e3967e8419d2ad7851677604addf74d560bdfc5f91c7.css" integrity="sha256-Hq/73/VEa3l1EeOWfoQZ0q14UWd2BK3fdNVgvfxfkcc=" crossorigin="anonymous" media="screen">
<link rel="stylesheet" href="/css/main.min.daa833377fb1636f8cbfa65c601050bb5475623deb7aa6e6fdde94a064a6185d.css" integrity="sha256-2qgzN3&#43;xY2&#43;Mv6ZcYBBQu1R1Yj3reqbm/d6UoGSmGF0=" crossorigin="anonymous" media="screen">
@ -155,12 +157,12 @@ Fotografía - Introducción
<a class="navbar-item" href="http://example.com/">English</a>
<a class="navbar-item" href="http://example.com/de/">Deutsch</a>
@ -203,6 +205,15 @@ Fotografía - Introducción
<div class="item owl-height">
<img src="/es/projects/photography/lorene-farrugia-JpmC-tAHiVA-unsplash_hu5e0d05c41608c807d4e7962ffe4f3978_970605_1000x0_resize_q75_box.jpg" class="img-responsive" alt="lorene-farrugia-JpmC-tAHiVA-unsplash.jpg">
</div>
<div class="item owl-height">
<img src="/es/projects/photography/mario-ho-277298-unsplash_hu3d03a01dcc18bc5be0e67db3d8d209a6_19450_1000x0_resize_q75_box.jpg" class="img-responsive" alt="mario-ho-277298-unsplash.jpg">
@ -251,7 +262,7 @@ Fotografía - Introducción
<div class="container has-text-centered">
<span class="footer-text">
Tema <a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> para <a href="http://gohugo.io/">Hugo</a>. Hecho con <a href="https://victoria.dev"><!-- raw HTML omitted --><!-- raw HTML omitted --> y <!-- raw HTML omitted --><!-- raw HTML omitted --></a> por colaboradores de código abierto.
Tema <a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> para <a href="http://gohugo.io/">Hugo</a>. Hecho con <a href="https://victoria.dev"><i class="fa fa-heart"></i> y <i class="fa fa-coffee"></i></a> por colaboradores de código abierto.
</span>
</div>

Binary file not shown.

After

Width:  |  Height:  |  Size: 948 KiB

View file

@ -37,7 +37,7 @@ Escribiendo - Introducción
<link rel="stylesheet" href="/css/main.min.1eaffbdff5446b797511e3967e8419d2ad7851677604addf74d560bdfc5f91c7.css" integrity="sha256-Hq/73/VEa3l1EeOWfoQZ0q14UWd2BK3fdNVgvfxfkcc=" crossorigin="anonymous" media="screen">
<link rel="stylesheet" href="/css/main.min.daa833377fb1636f8cbfa65c601050bb5475623deb7aa6e6fdde94a064a6185d.css" integrity="sha256-2qgzN3&#43;xY2&#43;Mv6ZcYBBQu1R1Yj3reqbm/d6UoGSmGF0=" crossorigin="anonymous" media="screen">
@ -149,12 +149,12 @@ Escribiendo - Introducción
<a class="navbar-item" href="http://example.com/">English</a>
<a class="navbar-item" href="http://example.com/de/">Deutsch</a>
@ -210,7 +210,7 @@ Escribiendo - Introducción
<div class="container has-text-centered">
<span class="footer-text">
Tema <a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> para <a href="http://gohugo.io/">Hugo</a>. Hecho con <a href="https://victoria.dev"><!-- raw HTML omitted --><!-- raw HTML omitted --> y <!-- raw HTML omitted --><!-- raw HTML omitted --></a> por colaboradores de código abierto.
Tema <a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> para <a href="http://gohugo.io/">Hugo</a>. Hecho con <a href="https://victoria.dev"><i class="fa fa-heart"></i> y <i class="fa fa-coffee"></i></a> por colaboradores de código abierto.
</span>
</div>

View file

@ -10,7 +10,7 @@
<meta name="referrer" content="no-referrer">
<meta name="description" content="Descripcion del sitio web">
<title>
code - Introducción
Code - Introducción
</title>
<link href="/es/tags/code/index.xml" rel="alternate" type="application/rss+xml" title="Introducción" />
@ -39,7 +39,7 @@ code - Introducción
<link rel="stylesheet" href="/css/main.min.1eaffbdff5446b797511e3967e8419d2ad7851677604addf74d560bdfc5f91c7.css" integrity="sha256-Hq/73/VEa3l1EeOWfoQZ0q14UWd2BK3fdNVgvfxfkcc=" crossorigin="anonymous" media="screen">
<link rel="stylesheet" href="/css/main.min.daa833377fb1636f8cbfa65c601050bb5475623deb7aa6e6fdde94a064a6185d.css" integrity="sha256-2qgzN3&#43;xY2&#43;Mv6ZcYBBQu1R1Yj3reqbm/d6UoGSmGF0=" crossorigin="anonymous" media="screen">
@ -146,12 +146,12 @@ code - Introducción
<a class="navbar-item" href="http://example.com/">English</a>
<a class="navbar-item" href="http://example.com/de/">Deutsch</a>
@ -197,7 +197,7 @@ code - Introducción
<div class="container has-text-centered">
<span class="footer-text">
Tema <a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> para <a href="http://gohugo.io/">Hugo</a>. Hecho con <a href="https://victoria.dev"><!-- raw HTML omitted --><!-- raw HTML omitted --> y <!-- raw HTML omitted --><!-- raw HTML omitted --></a> por colaboradores de código abierto.
Tema <a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> para <a href="http://gohugo.io/">Hugo</a>. Hecho con <a href="https://victoria.dev"><i class="fa fa-heart"></i> y <i class="fa fa-coffee"></i></a> por colaboradores de código abierto.
</span>
</div>

View file

@ -10,7 +10,7 @@
<meta name="referrer" content="no-referrer">
<meta name="description" content="Descripcion del sitio web">
<title>
coffee - Introducción
Coffee - Introducción
</title>
<link href="/es/tags/coffee/index.xml" rel="alternate" type="application/rss+xml" title="Introducción" />
@ -39,7 +39,7 @@ coffee - Introducción
<link rel="stylesheet" href="/css/main.min.1eaffbdff5446b797511e3967e8419d2ad7851677604addf74d560bdfc5f91c7.css" integrity="sha256-Hq/73/VEa3l1EeOWfoQZ0q14UWd2BK3fdNVgvfxfkcc=" crossorigin="anonymous" media="screen">
<link rel="stylesheet" href="/css/main.min.daa833377fb1636f8cbfa65c601050bb5475623deb7aa6e6fdde94a064a6185d.css" integrity="sha256-2qgzN3&#43;xY2&#43;Mv6ZcYBBQu1R1Yj3reqbm/d6UoGSmGF0=" crossorigin="anonymous" media="screen">
@ -146,12 +146,12 @@ coffee - Introducción
<a class="navbar-item" href="http://example.com/">English</a>
<a class="navbar-item" href="http://example.com/de/">Deutsch</a>
@ -197,7 +197,7 @@ coffee - Introducción
<div class="container has-text-centered">
<span class="footer-text">
Tema <a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> para <a href="http://gohugo.io/">Hugo</a>. Hecho con <a href="https://victoria.dev"><!-- raw HTML omitted --><!-- raw HTML omitted --> y <!-- raw HTML omitted --><!-- raw HTML omitted --></a> por colaboradores de código abierto.
Tema <a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> para <a href="http://gohugo.io/">Hugo</a>. Hecho con <a href="https://victoria.dev"><i class="fa fa-heart"></i> y <i class="fa fa-coffee"></i></a> por colaboradores de código abierto.
</span>
</div>

View file

@ -10,7 +10,7 @@
<meta name="referrer" content="no-referrer">
<meta name="description" content="Descripcion del sitio web">
<title>
images - Introducción
Images - Introducción
</title>
<link href="/es/tags/images/index.xml" rel="alternate" type="application/rss+xml" title="Introducción" />
@ -39,7 +39,7 @@ images - Introducción
<link rel="stylesheet" href="/css/main.min.1eaffbdff5446b797511e3967e8419d2ad7851677604addf74d560bdfc5f91c7.css" integrity="sha256-Hq/73/VEa3l1EeOWfoQZ0q14UWd2BK3fdNVgvfxfkcc=" crossorigin="anonymous" media="screen">
<link rel="stylesheet" href="/css/main.min.daa833377fb1636f8cbfa65c601050bb5475623deb7aa6e6fdde94a064a6185d.css" integrity="sha256-2qgzN3&#43;xY2&#43;Mv6ZcYBBQu1R1Yj3reqbm/d6UoGSmGF0=" crossorigin="anonymous" media="screen">
@ -146,12 +146,12 @@ images - Introducción
<a class="navbar-item" href="http://example.com/">English</a>
<a class="navbar-item" href="http://example.com/de/">Deutsch</a>
@ -197,7 +197,7 @@ images - Introducción
<div class="container has-text-centered">
<span class="footer-text">
Tema <a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> para <a href="http://gohugo.io/">Hugo</a>. Hecho con <a href="https://victoria.dev"><!-- raw HTML omitted --><!-- raw HTML omitted --> y <!-- raw HTML omitted --><!-- raw HTML omitted --></a> por colaboradores de código abierto.
Tema <a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> para <a href="http://gohugo.io/">Hugo</a>. Hecho con <a href="https://victoria.dev"><i class="fa fa-heart"></i> y <i class="fa fa-coffee"></i></a> por colaboradores de código abierto.
</span>
</div>

View file

@ -39,7 +39,7 @@ Tags - Introducción
<link rel="stylesheet" href="/css/main.min.1eaffbdff5446b797511e3967e8419d2ad7851677604addf74d560bdfc5f91c7.css" integrity="sha256-Hq/73/VEa3l1EeOWfoQZ0q14UWd2BK3fdNVgvfxfkcc=" crossorigin="anonymous" media="screen">
<link rel="stylesheet" href="/css/main.min.daa833377fb1636f8cbfa65c601050bb5475623deb7aa6e6fdde94a064a6185d.css" integrity="sha256-2qgzN3&#43;xY2&#43;Mv6ZcYBBQu1R1Yj3reqbm/d6UoGSmGF0=" crossorigin="anonymous" media="screen">
@ -146,12 +146,12 @@ Tags - Introducción
<a class="navbar-item" href="http://example.com/">English</a>
<a class="navbar-item" href="http://example.com/de/">Deutsch</a>
@ -189,7 +189,7 @@ Tags - Introducción
<div class="container has-text-centered">
<span class="footer-text">
Tema <a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> para <a href="http://gohugo.io/">Hugo</a>. Hecho con <a href="https://victoria.dev"><!-- raw HTML omitted --><!-- raw HTML omitted --> y <!-- raw HTML omitted --><!-- raw HTML omitted --></a> por colaboradores de código abierto.
Tema <a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> para <a href="http://gohugo.io/">Hugo</a>. Hecho con <a href="https://victoria.dev"><i class="fa fa-heart"></i> y <i class="fa fa-coffee"></i></a> por colaboradores de código abierto.
</span>
</div>

View file

@ -10,7 +10,7 @@
<meta name="referrer" content="no-referrer">
<meta name="description" content="Descripcion del sitio web">
<title>
ipsum - Introducción
Ipsum - Introducción
</title>
<link href="/es/tags/ipsum/index.xml" rel="alternate" type="application/rss+xml" title="Introducción" />
@ -39,7 +39,7 @@ ipsum - Introducción
<link rel="stylesheet" href="/css/main.min.1eaffbdff5446b797511e3967e8419d2ad7851677604addf74d560bdfc5f91c7.css" integrity="sha256-Hq/73/VEa3l1EeOWfoQZ0q14UWd2BK3fdNVgvfxfkcc=" crossorigin="anonymous" media="screen">
<link rel="stylesheet" href="/css/main.min.daa833377fb1636f8cbfa65c601050bb5475623deb7aa6e6fdde94a064a6185d.css" integrity="sha256-2qgzN3&#43;xY2&#43;Mv6ZcYBBQu1R1Yj3reqbm/d6UoGSmGF0=" crossorigin="anonymous" media="screen">
@ -146,12 +146,12 @@ ipsum - Introducción
<a class="navbar-item" href="http://example.com/">English</a>
<a class="navbar-item" href="http://example.com/de/">Deutsch</a>
@ -209,7 +209,7 @@ ipsum - Introducción
<div class="container has-text-centered">
<span class="footer-text">
Tema <a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> para <a href="http://gohugo.io/">Hugo</a>. Hecho con <a href="https://victoria.dev"><!-- raw HTML omitted --><!-- raw HTML omitted --> y <!-- raw HTML omitted --><!-- raw HTML omitted --></a> por colaboradores de código abierto.
Tema <a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> para <a href="http://gohugo.io/">Hugo</a>. Hecho con <a href="https://victoria.dev"><i class="fa fa-heart"></i> y <i class="fa fa-coffee"></i></a> por colaboradores de código abierto.
</span>
</div>

View file

@ -10,7 +10,7 @@
<meta name="referrer" content="no-referrer">
<meta name="description" content="Descripcion del sitio web">
<title>
words - Introducción
Words - Introducción
</title>
<link href="/es/tags/words/index.xml" rel="alternate" type="application/rss+xml" title="Introducción" />
@ -39,7 +39,7 @@ words - Introducción
<link rel="stylesheet" href="/css/main.min.1eaffbdff5446b797511e3967e8419d2ad7851677604addf74d560bdfc5f91c7.css" integrity="sha256-Hq/73/VEa3l1EeOWfoQZ0q14UWd2BK3fdNVgvfxfkcc=" crossorigin="anonymous" media="screen">
<link rel="stylesheet" href="/css/main.min.daa833377fb1636f8cbfa65c601050bb5475623deb7aa6e6fdde94a064a6185d.css" integrity="sha256-2qgzN3&#43;xY2&#43;Mv6ZcYBBQu1R1Yj3reqbm/d6UoGSmGF0=" crossorigin="anonymous" media="screen">
@ -146,12 +146,12 @@ words - Introducción
<a class="navbar-item" href="http://example.com/">English</a>
<a class="navbar-item" href="http://example.com/de/">Deutsch</a>
@ -203,7 +203,7 @@ words - Introducción
<div class="container has-text-centered">
<span class="footer-text">
Tema <a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> para <a href="http://gohugo.io/">Hugo</a>. Hecho con <a href="https://victoria.dev"><!-- raw HTML omitted --><!-- raw HTML omitted --> y <!-- raw HTML omitted --><!-- raw HTML omitted --></a> por colaboradores de código abierto.
Tema <a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> para <a href="http://gohugo.io/">Hugo</a>. Hecho con <a href="https://victoria.dev"><i class="fa fa-heart"></i> y <i class="fa fa-coffee"></i></a> por colaboradores de código abierto.
</span>
</div>

View file

@ -2,7 +2,7 @@
<html lang="en-us">
<head>
<meta name="generator" content="Hugo 0.67.0" />
<meta name="generator" content="Hugo 0.74.2" />
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta name="HandheldFriendly" content="True">
@ -40,7 +40,7 @@ Introduction
<link rel="stylesheet" href="/css/main.min.1eaffbdff5446b797511e3967e8419d2ad7851677604addf74d560bdfc5f91c7.css" integrity="sha256-Hq/73/VEa3l1EeOWfoQZ0q14UWd2BK3fdNVgvfxfkcc=" crossorigin="anonymous" media="screen">
<link rel="stylesheet" href="/css/main.min.daa833377fb1636f8cbfa65c601050bb5475623deb7aa6e6fdde94a064a6185d.css" integrity="sha256-2qgzN3&#43;xY2&#43;Mv6ZcYBBQu1R1Yj3reqbm/d6UoGSmGF0=" crossorigin="anonymous" media="screen">
@ -64,7 +64,7 @@ Introduction
<div class="container has-text-centered">
<h1 class="bold-title fade-in one">
Hi, I&#39;m Introduction
Hi, I&rsquo;m Introduction
</h1>
<div class="subtitle is-3 fade-in two">
<p>I&rsquo;m a theme for Hugo</p>
@ -76,23 +76,23 @@ Introduction
<div class="social-icons">
<a href="https://twitter.com/" >
<i class="fab fa-twitter"></i>
<i class="fab fab fa-twitter"></i>
</a>
<a href="https://facebook.com/" >
<i class="fab fa-facebook-f"></i>
<i class="fab fab fa-facebook-f"></i>
</a>
<a href="https://linkedin.com/" >
<i class="fab fa-linkedin-in"></i>
<i class="fab fab fa-linkedin-in"></i>
</a>
<a href="mailto:youremail@email.com" >
<i class="fas fa-paper-plane"></i>
<i class="fas fab fa-paper-plane"></i>
</a>
<a href="https://mastodon.social/" rel="me">
<i class="fab fa-mastodon"></i>
<i class="fab fab fa-mastodon"></i>
</a>
</div>
@ -175,12 +175,12 @@ Introduction
<a class="navbar-item" href="http://example.com/es/">Español</a>
<a class="navbar-item" href="http://example.com/de/">Deutsch</a>
@ -287,7 +287,7 @@ Introduction
<img src="http://example.com/projects/photography/camera_hu3d03a01dcc18bc5be0e67db3d8d209a6_30380_302x0_resize_q75_box.jpg" alt ="camera.jpg">
<img class="card-thumbnail" src="http://example.com/projects/photography/camera_hu3d03a01dcc18bc5be0e67db3d8d209a6_30380_302x0_resize_q75_box.jpg" alt ="camera.jpg">
</a>
@ -312,7 +312,7 @@ Introduction
<img src="http://example.com/projects/design/plant_hu3d03a01dcc18bc5be0e67db3d8d209a6_34602_302x0_resize_q75_box.jpg" alt ="plant.jpg">
<img class="card-thumbnail" src="http://example.com/projects/design/plant_hu3d03a01dcc18bc5be0e67db3d8d209a6_34602_302x0_resize_q75_box.jpg" alt ="plant.jpg">
</a>
@ -337,7 +337,7 @@ Introduction
<img src="http://example.com/projects/writing/workday_hu3d03a01dcc18bc5be0e67db3d8d209a6_59645_302x0_resize_q75_box.jpg" alt ="workday.jpg">
<img class="card-thumbnail" src="http://example.com/projects/writing/workday_hu3d03a01dcc18bc5be0e67db3d8d209a6_59645_302x0_resize_q75_box.jpg" alt ="workday.jpg">
</a>
@ -394,6 +394,15 @@ Introduction
<div class="item owl-height">
<img src="http://example.com/projects/photography/lorene-farrugia-JpmC-tAHiVA-unsplash_hu5e0d05c41608c807d4e7962ffe4f3978_970605_640x0_resize_q75_box.jpg" class="img-responsive" alt="lorene-farrugia-JpmC-tAHiVA-unsplash.jpg">
</div>
<div class="item owl-height">
<img src="http://example.com/projects/photography/mario-ho-277298-unsplash_hu3d03a01dcc18bc5be0e67db3d8d209a6_19450_640x0_resize_q75_box.jpg" class="img-responsive" alt="mario-ho-277298-unsplash.jpg">
@ -521,12 +530,15 @@ Introduction
<h2 class="title is-2 has-text-centered">Latest Post</h2>
<div class="summary">Nov 13, 2017
<h3 class="title is-3 latest-post-title"><a href="http://example.com/blog/hipster-ipsum/">Hipster Ipsum</a></h3>
<div class="summary">Jul 25, 2020
<h3 class="title is-3 latest-post-title"><a href="http://example.com/blog/configuration/">Theme Features</a></h3>
<div class="markdown">
Occupy mlkshk kale chips woke, listicle locavore next level fingerstache glossier aesthetic man braid before they sold out kitsch prism. Cred copper mug freegan, flannel YOLO single-origin coffee skateboard artisan four loko church-key man bun. Synth literally gastropub, kombucha chillwave helvetica offal truffaut church-key freegan pop-up gentrify narwhal. Kombucha viral vexillologist green juice. Slow-carb hoodie mumblecore tumeric tattooed meditation, lo-fi fap cred affogato forage whatever austin. Shabby chic direct trade migas, brunch gochujang sriracha chambray fanny pack 8-bit mustache letterpress.
Here are some helpful tips for setting up this theme.
Syntax Highlighting Introduction allows the use of Hugo&rsquo;s rich built-in syntax highlighting capabilities. See Syntax Highlighting in the Hugo docs.
Below is an example configuration for Highlight. See Highlight in the Hugo docs for more.
[markup] [markup.highlight] codeFences = true guessSyntax = false hl_Lines = &#34;&#34; lineNoStart = 1 lineNos = false lineNumbersInTable = true noClasses = true # For styles, see https://xyproto.
<a href="http://example.com/blog/hipster-ipsum/">Read more</a>
<a href="http://example.com/blog/configuration/">Read more</a>
</div>
</div>
@ -605,23 +617,23 @@ Introduction
<div class="social-icons">
<a href="https://twitter.com/" >
<i class="fab fa-twitter"></i>
<i class="fab fab fa-twitter"></i>
</a>
<a href="https://facebook.com/" >
<i class="fab fa-facebook-f"></i>
<i class="fab fab fa-facebook-f"></i>
</a>
<a href="https://linkedin.com/" >
<i class="fab fa-linkedin-in"></i>
<i class="fab fab fa-linkedin-in"></i>
</a>
<a href="mailto:youremail@email.com" >
<i class="fas fa-paper-plane"></i>
<i class="fas fab fa-paper-plane"></i>
</a>
<a href="https://mastodon.social/" rel="me">
<i class="fab fa-mastodon"></i>
<i class="fab fab fa-mastodon"></i>
</a>
</div>
@ -646,7 +658,7 @@ Introduction
<div class="container has-text-centered">
<span class="footer-text">
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> theme for <a href="http://gohugo.io/">Hugo</a>. Made with <a href="https://victoria.dev"><!-- raw HTML omitted --><!-- raw HTML omitted --> and <!-- raw HTML omitted --><!-- raw HTML omitted --></a> by open source contributors.
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> theme for <a href="http://gohugo.io/">Hugo</a>. Made with <a href="https://victoria.dev"><i class="fa fa-heart"></i> and <i class="fa fa-coffee"></i></a> by open source contributors.
</span>
</div>

View file

@ -6,7 +6,7 @@
<description>Recent content on Introduction</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<lastBuildDate>Mon, 13 Nov 2017 11:58:39 -0500</lastBuildDate>
<lastBuildDate>Sat, 25 Jul 2020 02:04:06 -0500</lastBuildDate>
<atom:link href="http://example.com/index.xml" rel="self" type="application/rss+xml" />
@ -40,6 +40,28 @@ If you want to use it for your website, check out the section at the bottom of t
To go viennese cream to go, flavour, so mocha as, carajillo iced et a siphon froth. Aged, eu, cup, brewed aroma kopi-luwak, coffee, id viennese french press brewed grounds acerbic froth. Decaffeinated acerbic, spoon beans seasonal, french press café au lait mazagran roast chicory, pumpkin spice galão as fair trade, dark irish cup ristretto half and half whipped shop.</description>
</item>
<item>
<title>Theme Features</title>
<link>http://example.com/blog/configuration/</link>
<pubDate>Sat, 25 Jul 2020 02:04:06 -0500</pubDate>
<guid>http://example.com/blog/configuration/</guid>
<description>Here are some helpful tips for setting up this theme.
Syntax Highlighting Introduction allows the use of Hugo&amp;rsquo;s rich built-in syntax highlighting capabilities. See Syntax Highlighting in the Hugo docs.
Below is an example configuration for Highlight. See Highlight in the Hugo docs for more.
[markup] [markup.highlight] codeFences = true guessSyntax = false hl_Lines = &amp;#34;&amp;#34; lineNoStart = 1 lineNos = false lineNumbersInTable = true noClasses = true # For styles, see https://xyproto.</description>
</item>
<item>
<title>**Long** Form Post!</title>
<link>http://example.com/blog/long-form-post/</link>
<pubDate>Sat, 30 May 2020 20:18:53 -0500</pubDate>
<guid>http://example.com/blog/long-form-post/</guid>
<description>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Cursus eget nunc scelerisque viverra. Quam vulputate dignissim suspendisse in est ante in nibh mauris. Pharetra magna ac placerat vestibulum lectus mauris. Eget lorem dolor sed viverra ipsum.
Elementum Nisi Quis eleifend quam adipiscing. Aliquet nec ullamcorper sit amet risus. Auctor neque vitae tempus quam pellentesque. Tincidunt lobortis feugiat vivamus at augue.</description>
</item>
<item>
<title>Hipster Ipsum</title>
<link>http://example.com/blog/hipster-ipsum/</link>

View file

@ -37,7 +37,7 @@ Design - Introduction
<link rel="stylesheet" href="/css/main.min.1eaffbdff5446b797511e3967e8419d2ad7851677604addf74d560bdfc5f91c7.css" integrity="sha256-Hq/73/VEa3l1EeOWfoQZ0q14UWd2BK3fdNVgvfxfkcc=" crossorigin="anonymous" media="screen">
<link rel="stylesheet" href="/css/main.min.daa833377fb1636f8cbfa65c601050bb5475623deb7aa6e6fdde94a064a6185d.css" integrity="sha256-2qgzN3&#43;xY2&#43;Mv6ZcYBBQu1R1Yj3reqbm/d6UoGSmGF0=" crossorigin="anonymous" media="screen">
@ -149,12 +149,12 @@ Design - Introduction
<a class="navbar-item" href="http://example.com/es/">Español</a>
<a class="navbar-item" href="http://example.com/de/">Deutsch</a>
@ -210,7 +210,7 @@ Design - Introduction
<div class="container has-text-centered">
<span class="footer-text">
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> theme for <a href="http://gohugo.io/">Hugo</a>. Made with <a href="https://victoria.dev"><!-- raw HTML omitted --><!-- raw HTML omitted --> and <!-- raw HTML omitted --><!-- raw HTML omitted --></a> by open source contributors.
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> theme for <a href="http://gohugo.io/">Hugo</a>. Made with <a href="https://victoria.dev"><i class="fa fa-heart"></i> and <i class="fa fa-coffee"></i></a> by open source contributors.
</span>
</div>

View file

@ -39,7 +39,7 @@ Projects - Introduction
<link rel="stylesheet" href="/css/main.min.1eaffbdff5446b797511e3967e8419d2ad7851677604addf74d560bdfc5f91c7.css" integrity="sha256-Hq/73/VEa3l1EeOWfoQZ0q14UWd2BK3fdNVgvfxfkcc=" crossorigin="anonymous" media="screen">
<link rel="stylesheet" href="/css/main.min.daa833377fb1636f8cbfa65c601050bb5475623deb7aa6e6fdde94a064a6185d.css" integrity="sha256-2qgzN3&#43;xY2&#43;Mv6ZcYBBQu1R1Yj3reqbm/d6UoGSmGF0=" crossorigin="anonymous" media="screen">
@ -146,12 +146,12 @@ Projects - Introduction
<a class="navbar-item" href="http://example.com/es/">Español</a>
<a class="navbar-item" href="http://example.com/de/">Deutsch</a>
@ -273,7 +273,7 @@ Projects - Introduction
<div class="container has-text-centered">
<span class="footer-text">
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> theme for <a href="http://gohugo.io/">Hugo</a>. Made with <a href="https://victoria.dev"><!-- raw HTML omitted --><!-- raw HTML omitted --> and <!-- raw HTML omitted --><!-- raw HTML omitted --></a> by open source contributors.
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> theme for <a href="http://gohugo.io/">Hugo</a>. Made with <a href="https://victoria.dev"><i class="fa fa-heart"></i> and <i class="fa fa-coffee"></i></a> by open source contributors.
</span>
</div>

View file

@ -27,6 +27,8 @@ Photography - Introduction
<meta property="og:image" content="http://example.com/projects/photography/erik-jan-leusink-180382-unsplash.jpg"/>
<meta property="og:image" content="http://example.com/projects/photography/lorene-farrugia-JpmC-tAHiVA-unsplash.jpg"/>
<meta property="og:image" content="http://example.com/projects/photography/mario-ho-277298-unsplash.jpg"/>
<meta property="og:image" content="http://example.com/projects/photography/tyler-lastovich-285380-unsplash.jpg"/>
@ -43,7 +45,7 @@ Photography - Introduction
<link rel="stylesheet" href="/css/main.min.1eaffbdff5446b797511e3967e8419d2ad7851677604addf74d560bdfc5f91c7.css" integrity="sha256-Hq/73/VEa3l1EeOWfoQZ0q14UWd2BK3fdNVgvfxfkcc=" crossorigin="anonymous" media="screen">
<link rel="stylesheet" href="/css/main.min.daa833377fb1636f8cbfa65c601050bb5475623deb7aa6e6fdde94a064a6185d.css" integrity="sha256-2qgzN3&#43;xY2&#43;Mv6ZcYBBQu1R1Yj3reqbm/d6UoGSmGF0=" crossorigin="anonymous" media="screen">
@ -155,12 +157,12 @@ Photography - Introduction
<a class="navbar-item" href="http://example.com/es/">Español</a>
<a class="navbar-item" href="http://example.com/de/">Deutsch</a>
@ -203,6 +205,15 @@ Photography - Introduction
<div class="item owl-height">
<img src="/projects/photography/lorene-farrugia-JpmC-tAHiVA-unsplash_hu5e0d05c41608c807d4e7962ffe4f3978_970605_1000x0_resize_q75_box.jpg" class="img-responsive" alt="lorene-farrugia-JpmC-tAHiVA-unsplash.jpg">
</div>
<div class="item owl-height">
<img src="/projects/photography/mario-ho-277298-unsplash_hu3d03a01dcc18bc5be0e67db3d8d209a6_19450_1000x0_resize_q75_box.jpg" class="img-responsive" alt="mario-ho-277298-unsplash.jpg">
@ -251,7 +262,7 @@ Photography - Introduction
<div class="container has-text-centered">
<span class="footer-text">
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> theme for <a href="http://gohugo.io/">Hugo</a>. Made with <a href="https://victoria.dev"><!-- raw HTML omitted --><!-- raw HTML omitted --> and <!-- raw HTML omitted --><!-- raw HTML omitted --></a> by open source contributors.
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> theme for <a href="http://gohugo.io/">Hugo</a>. Made with <a href="https://victoria.dev"><i class="fa fa-heart"></i> and <i class="fa fa-coffee"></i></a> by open source contributors.
</span>
</div>

Binary file not shown.

After

Width:  |  Height:  |  Size: 948 KiB

View file

@ -37,7 +37,7 @@ Writing - Introduction
<link rel="stylesheet" href="/css/main.min.1eaffbdff5446b797511e3967e8419d2ad7851677604addf74d560bdfc5f91c7.css" integrity="sha256-Hq/73/VEa3l1EeOWfoQZ0q14UWd2BK3fdNVgvfxfkcc=" crossorigin="anonymous" media="screen">
<link rel="stylesheet" href="/css/main.min.daa833377fb1636f8cbfa65c601050bb5475623deb7aa6e6fdde94a064a6185d.css" integrity="sha256-2qgzN3&#43;xY2&#43;Mv6ZcYBBQu1R1Yj3reqbm/d6UoGSmGF0=" crossorigin="anonymous" media="screen">
@ -149,12 +149,12 @@ Writing - Introduction
<a class="navbar-item" href="http://example.com/es/">Español</a>
<a class="navbar-item" href="http://example.com/de/">Deutsch</a>
@ -210,7 +210,7 @@ Writing - Introduction
<div class="container has-text-centered">
<span class="footer-text">
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> theme for <a href="http://gohugo.io/">Hugo</a>. Made with <a href="https://victoria.dev"><!-- raw HTML omitted --><!-- raw HTML omitted --> and <!-- raw HTML omitted --><!-- raw HTML omitted --></a> by open source contributors.
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> theme for <a href="http://gohugo.io/">Hugo</a>. Made with <a href="https://victoria.dev"><i class="fa fa-heart"></i> and <i class="fa fa-coffee"></i></a> by open source contributors.
</span>
</div>

View file

@ -18,7 +18,7 @@
<sitemap>
<loc>http://example.com/en/sitemap.xml</loc>
<lastmod>2017-11-13T11:58:39-05:00</lastmod>
<lastmod>2020-07-25T02:04:06-05:00</lastmod>
</sitemap>

View file

@ -0,0 +1,222 @@
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="referrer" content="no-referrer">
<meta name="description" content="Website Description">
<title>
Blog - Introduction
</title>
<link href="/tags/blog/index.xml" rel="alternate" type="application/rss+xml" title="Introduction" />
<meta property="og:title" content="blog - Introduction" />
<meta property="og:type" content="website" />
<meta property="og:description" content="Website Description"/>
<meta property="og:url" content="http://example.com/tags/blog/"/>
<meta property="og:site_name" content="Introduction"/>
<meta property="og:image" content="http://example.com/home/profile.jpg"/>
<link rel="shortcut icon" href="/img/fav.ico">
<link rel="stylesheet" href="/css/main.min.daa833377fb1636f8cbfa65c601050bb5475623deb7aa6e6fdde94a064a6185d.css" integrity="sha256-2qgzN3&#43;xY2&#43;Mv6ZcYBBQu1R1Yj3reqbm/d6UoGSmGF0=" crossorigin="anonymous" media="screen">
</head>
<body>
<section id="top" class="section">
<div class="container hero fade-in one ">
<h1 class="bold-title is-1">Tag: blog</h1>
</div>
<div class="section fade-in two ">
<div class="container">
<hr>
<nav class="navbar" role="navigation" aria-label="main navigation">
<a role="button" class="navbar-burger" data-target="navMenu" aria-label="menu" aria-expanded="false" >
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
<div class="navbar-menu " id="navMenu">
<a class="navbar-item" href="/">main</a>
<a class="navbar-item" href="/#about">About</a>
<a class="navbar-item" href="http://example.com/projects/">
Project
</a>
<a class="navbar-item" href="http://example.com/blog/">
Blog
</a>
<a class="navbar-item" href="/#lorem">Lorem Ipsum</a>
<a class="navbar-item" href="/#contact">Contact</a>
<a class="navbar-item" href="http://example.com/es/">Español</a>
<a class="navbar-item" href="http://example.com/de/">Deutsch</a>
</div>
</nav>
<hr>
</div>
<div class="container">
<ul>
<li>
<a href="http://example.com/blog/long-form-post/">May 30, 2020 | <strong>Long</strong> Form Post!</a>
</li>
</ul>
</div>
<div class="container">
<hr>
</div>
<div class="container has-text-centered top-pad">
<a href="#top">
<i class="fa fa-arrow-up"></i>
</a>
</div>
<div class="container">
<hr>
</div>
<div class="section" id="footer">
<div class="container has-text-centered">
<span class="footer-text">
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> theme for <a href="http://gohugo.io/">Hugo</a>. Made with <a href="https://victoria.dev"><i class="fa fa-heart"></i> and <i class="fa fa-coffee"></i></a> by open source contributors.
</span>
</div>
</div>
</div>
</section>
<script src="http://example.com/js/bundle.e6934e69d06bb8a213134f4c1468f9478bb7755e786dfb60e3c5a917c5335805.js" integrity="sha256-5pNOadBruKITE09MFGj5R4u3dV54bftg48WpF8UzWAU="></script>
</body>
</html>

View file

@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>blog on Introduction</title>
<link>http://example.com/tags/blog/</link>
<description>Recent content in blog on Introduction</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<lastBuildDate>Sat, 30 May 2020 20:18:53 -0500</lastBuildDate>
<atom:link href="http://example.com/tags/blog/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>**Long** Form Post!</title>
<link>http://example.com/blog/long-form-post/</link>
<pubDate>Sat, 30 May 2020 20:18:53 -0500</pubDate>
<guid>http://example.com/blog/long-form-post/</guid>
<description>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Cursus eget nunc scelerisque viverra. Quam vulputate dignissim suspendisse in est ante in nibh mauris. Pharetra magna ac placerat vestibulum lectus mauris. Eget lorem dolor sed viverra ipsum.
Elementum Nisi Quis eleifend quam adipiscing. Aliquet nec ullamcorper sit amet risus. Auctor neque vitae tempus quam pellentesque. Tincidunt lobortis feugiat vivamus at augue.</description>
</item>
</channel>
</rss>

View file

@ -10,7 +10,7 @@
<meta name="referrer" content="no-referrer">
<meta name="description" content="Website Description">
<title>
code - Introduction
Code - Introduction
</title>
<link href="/tags/code/index.xml" rel="alternate" type="application/rss+xml" title="Introduction" />
@ -39,7 +39,7 @@ code - Introduction
<link rel="stylesheet" href="/css/main.min.1eaffbdff5446b797511e3967e8419d2ad7851677604addf74d560bdfc5f91c7.css" integrity="sha256-Hq/73/VEa3l1EeOWfoQZ0q14UWd2BK3fdNVgvfxfkcc=" crossorigin="anonymous" media="screen">
<link rel="stylesheet" href="/css/main.min.daa833377fb1636f8cbfa65c601050bb5475623deb7aa6e6fdde94a064a6185d.css" integrity="sha256-2qgzN3&#43;xY2&#43;Mv6ZcYBBQu1R1Yj3reqbm/d6UoGSmGF0=" crossorigin="anonymous" media="screen">
@ -146,12 +146,12 @@ code - Introduction
<a class="navbar-item" href="http://example.com/es/">Español</a>
<a class="navbar-item" href="http://example.com/de/">Deutsch</a>
@ -170,6 +170,18 @@ code - Introduction
<ul>
<li>
<a href="http://example.com/blog/configuration/">Jul 25, 2020 | Theme Features</a>
</li>
<li>
<a href="http://example.com/blog/long-form-post/">May 30, 2020 | <strong>Long</strong> Form Post!</a>
</li>
<li>
<a href="http://example.com/blog/startup-ipsum/">Nov 6, 2017 | Startup Ipsum</a>
</li>
@ -197,7 +209,7 @@ code - Introduction
<div class="container has-text-centered">
<span class="footer-text">
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> theme for <a href="http://gohugo.io/">Hugo</a>. Made with <a href="https://victoria.dev"><!-- raw HTML omitted --><!-- raw HTML omitted --> and <!-- raw HTML omitted --><!-- raw HTML omitted --></a> by open source contributors.
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> theme for <a href="http://gohugo.io/">Hugo</a>. Made with <a href="https://victoria.dev"><i class="fa fa-heart"></i> and <i class="fa fa-coffee"></i></a> by open source contributors.
</span>
</div>

View file

@ -6,11 +6,33 @@
<description>Recent content in code on Introduction</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<lastBuildDate>Mon, 06 Nov 2017 12:04:06 -0500</lastBuildDate>
<lastBuildDate>Sat, 25 Jul 2020 02:04:06 -0500</lastBuildDate>
<atom:link href="http://example.com/tags/code/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Theme Features</title>
<link>http://example.com/blog/configuration/</link>
<pubDate>Sat, 25 Jul 2020 02:04:06 -0500</pubDate>
<guid>http://example.com/blog/configuration/</guid>
<description>Here are some helpful tips for setting up this theme.
Syntax Highlighting Introduction allows the use of Hugo&amp;rsquo;s rich built-in syntax highlighting capabilities. See Syntax Highlighting in the Hugo docs.
Below is an example configuration for Highlight. See Highlight in the Hugo docs for more.
[markup] [markup.highlight] codeFences = true guessSyntax = false hl_Lines = &amp;#34;&amp;#34; lineNoStart = 1 lineNos = false lineNumbersInTable = true noClasses = true # For styles, see https://xyproto.</description>
</item>
<item>
<title>**Long** Form Post!</title>
<link>http://example.com/blog/long-form-post/</link>
<pubDate>Sat, 30 May 2020 20:18:53 -0500</pubDate>
<guid>http://example.com/blog/long-form-post/</guid>
<description>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Cursus eget nunc scelerisque viverra. Quam vulputate dignissim suspendisse in est ante in nibh mauris. Pharetra magna ac placerat vestibulum lectus mauris. Eget lorem dolor sed viverra ipsum.
Elementum Nisi Quis eleifend quam adipiscing. Aliquet nec ullamcorper sit amet risus. Auctor neque vitae tempus quam pellentesque. Tincidunt lobortis feugiat vivamus at augue.</description>
</item>
<item>
<title>Startup Ipsum</title>
<link>http://example.com/blog/startup-ipsum/</link>

View file

@ -10,7 +10,7 @@
<meta name="referrer" content="no-referrer">
<meta name="description" content="Website Description">
<title>
coffee - Introduction
Coffee - Introduction
</title>
<link href="/tags/coffee/index.xml" rel="alternate" type="application/rss+xml" title="Introduction" />
@ -39,7 +39,7 @@ coffee - Introduction
<link rel="stylesheet" href="/css/main.min.1eaffbdff5446b797511e3967e8419d2ad7851677604addf74d560bdfc5f91c7.css" integrity="sha256-Hq/73/VEa3l1EeOWfoQZ0q14UWd2BK3fdNVgvfxfkcc=" crossorigin="anonymous" media="screen">
<link rel="stylesheet" href="/css/main.min.daa833377fb1636f8cbfa65c601050bb5475623deb7aa6e6fdde94a064a6185d.css" integrity="sha256-2qgzN3&#43;xY2&#43;Mv6ZcYBBQu1R1Yj3reqbm/d6UoGSmGF0=" crossorigin="anonymous" media="screen">
@ -146,12 +146,12 @@ coffee - Introduction
<a class="navbar-item" href="http://example.com/es/">Español</a>
<a class="navbar-item" href="http://example.com/de/">Deutsch</a>
@ -197,7 +197,7 @@ coffee - Introduction
<div class="container has-text-centered">
<span class="footer-text">
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> theme for <a href="http://gohugo.io/">Hugo</a>. Made with <a href="https://victoria.dev"><!-- raw HTML omitted --><!-- raw HTML omitted --> and <!-- raw HTML omitted --><!-- raw HTML omitted --></a> by open source contributors.
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> theme for <a href="http://gohugo.io/">Hugo</a>. Made with <a href="https://victoria.dev"><i class="fa fa-heart"></i> and <i class="fa fa-coffee"></i></a> by open source contributors.
</span>
</div>

View file

@ -10,7 +10,7 @@
<meta name="referrer" content="no-referrer">
<meta name="description" content="Website Description">
<title>
images - Introduction
Images - Introduction
</title>
<link href="/tags/images/index.xml" rel="alternate" type="application/rss+xml" title="Introduction" />
@ -39,7 +39,7 @@ images - Introduction
<link rel="stylesheet" href="/css/main.min.1eaffbdff5446b797511e3967e8419d2ad7851677604addf74d560bdfc5f91c7.css" integrity="sha256-Hq/73/VEa3l1EeOWfoQZ0q14UWd2BK3fdNVgvfxfkcc=" crossorigin="anonymous" media="screen">
<link rel="stylesheet" href="/css/main.min.daa833377fb1636f8cbfa65c601050bb5475623deb7aa6e6fdde94a064a6185d.css" integrity="sha256-2qgzN3&#43;xY2&#43;Mv6ZcYBBQu1R1Yj3reqbm/d6UoGSmGF0=" crossorigin="anonymous" media="screen">
@ -146,12 +146,12 @@ images - Introduction
<a class="navbar-item" href="http://example.com/es/">Español</a>
<a class="navbar-item" href="http://example.com/de/">Deutsch</a>
@ -197,7 +197,7 @@ images - Introduction
<div class="container has-text-centered">
<span class="footer-text">
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> theme for <a href="http://gohugo.io/">Hugo</a>. Made with <a href="https://victoria.dev"><!-- raw HTML omitted --><!-- raw HTML omitted --> and <!-- raw HTML omitted --><!-- raw HTML omitted --></a> by open source contributors.
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> theme for <a href="http://gohugo.io/">Hugo</a>. Made with <a href="https://victoria.dev"><i class="fa fa-heart"></i> and <i class="fa fa-coffee"></i></a> by open source contributors.
</span>
</div>

View file

@ -39,7 +39,7 @@ Tags - Introduction
<link rel="stylesheet" href="/css/main.min.1eaffbdff5446b797511e3967e8419d2ad7851677604addf74d560bdfc5f91c7.css" integrity="sha256-Hq/73/VEa3l1EeOWfoQZ0q14UWd2BK3fdNVgvfxfkcc=" crossorigin="anonymous" media="screen">
<link rel="stylesheet" href="/css/main.min.daa833377fb1636f8cbfa65c601050bb5475623deb7aa6e6fdde94a064a6185d.css" integrity="sha256-2qgzN3&#43;xY2&#43;Mv6ZcYBBQu1R1Yj3reqbm/d6UoGSmGF0=" crossorigin="anonymous" media="screen">
@ -146,12 +146,12 @@ Tags - Introduction
<a class="navbar-item" href="http://example.com/es/">Español</a>
<a class="navbar-item" href="http://example.com/de/">Deutsch</a>
@ -167,7 +167,7 @@ Tags - Introduction
<div class="container">
<div class="section tags-list"><a class="tag-cloud" href="/tags/code">code&nbsp;(1)</a><a class="tag-cloud" href="/tags/coffee">coffee&nbsp;(1)</a><a class="tag-cloud" href="/tags/images">images&nbsp;(1)</a><a class="tag-cloud" href="/tags/ipsum">ipsum&nbsp;(3)</a><a class="tag-cloud" href="/tags/words">words&nbsp;(3)</a></div>
<div class="section tags-list"><a class="tag-cloud" href="/tags/blog">blog&nbsp;(1)</a><a class="tag-cloud" href="/tags/code">code&nbsp;(3)</a><a class="tag-cloud" href="/tags/coffee">coffee&nbsp;(1)</a><a class="tag-cloud" href="/tags/images">images&nbsp;(1)</a><a class="tag-cloud" href="/tags/ipsum">ipsum&nbsp;(3)</a><a class="tag-cloud" href="/tags/words">words&nbsp;(3)</a></div>
</div>
@ -189,7 +189,7 @@ Tags - Introduction
<div class="container has-text-centered">
<span class="footer-text">
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> theme for <a href="http://gohugo.io/">Hugo</a>. Made with <a href="https://victoria.dev"><!-- raw HTML omitted --><!-- raw HTML omitted --> and <!-- raw HTML omitted --><!-- raw HTML omitted --></a> by open source contributors.
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> theme for <a href="http://gohugo.io/">Hugo</a>. Made with <a href="https://victoria.dev"><i class="fa fa-heart"></i> and <i class="fa fa-coffee"></i></a> by open source contributors.
</span>
</div>

View file

@ -6,11 +6,29 @@
<description>Recent content in Tags on Introduction</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<lastBuildDate>Mon, 13 Nov 2017 11:58:39 -0500</lastBuildDate>
<lastBuildDate>Sat, 25 Jul 2020 02:04:06 -0500</lastBuildDate>
<atom:link href="http://example.com/tags/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>code</title>
<link>http://example.com/tags/code/</link>
<pubDate>Sat, 25 Jul 2020 02:04:06 -0500</pubDate>
<guid>http://example.com/tags/code/</guid>
<description></description>
</item>
<item>
<title>blog</title>
<link>http://example.com/tags/blog/</link>
<pubDate>Sat, 30 May 2020 20:18:53 -0500</pubDate>
<guid>http://example.com/tags/blog/</guid>
<description></description>
</item>
<item>
<title>ipsum</title>
<link>http://example.com/tags/ipsum/</link>
@ -29,15 +47,6 @@
<description></description>
</item>
<item>
<title>code</title>
<link>http://example.com/tags/code/</link>
<pubDate>Mon, 06 Nov 2017 12:04:06 -0500</pubDate>
<guid>http://example.com/tags/code/</guid>
<description></description>
</item>
<item>
<title>coffee</title>
<link>http://example.com/tags/coffee/</link>

View file

@ -10,7 +10,7 @@
<meta name="referrer" content="no-referrer">
<meta name="description" content="Website Description">
<title>
ipsum - Introduction
Ipsum - Introduction
</title>
<link href="/tags/ipsum/index.xml" rel="alternate" type="application/rss+xml" title="Introduction" />
@ -39,7 +39,7 @@ ipsum - Introduction
<link rel="stylesheet" href="/css/main.min.1eaffbdff5446b797511e3967e8419d2ad7851677604addf74d560bdfc5f91c7.css" integrity="sha256-Hq/73/VEa3l1EeOWfoQZ0q14UWd2BK3fdNVgvfxfkcc=" crossorigin="anonymous" media="screen">
<link rel="stylesheet" href="/css/main.min.daa833377fb1636f8cbfa65c601050bb5475623deb7aa6e6fdde94a064a6185d.css" integrity="sha256-2qgzN3&#43;xY2&#43;Mv6ZcYBBQu1R1Yj3reqbm/d6UoGSmGF0=" crossorigin="anonymous" media="screen">
@ -146,12 +146,12 @@ ipsum - Introduction
<a class="navbar-item" href="http://example.com/es/">Español</a>
<a class="navbar-item" href="http://example.com/de/">Deutsch</a>
@ -209,7 +209,7 @@ ipsum - Introduction
<div class="container has-text-centered">
<span class="footer-text">
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> theme for <a href="http://gohugo.io/">Hugo</a>. Made with <a href="https://victoria.dev"><!-- raw HTML omitted --><!-- raw HTML omitted --> and <!-- raw HTML omitted --><!-- raw HTML omitted --></a> by open source contributors.
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> theme for <a href="http://gohugo.io/">Hugo</a>. Made with <a href="https://victoria.dev"><i class="fa fa-heart"></i> and <i class="fa fa-coffee"></i></a> by open source contributors.
</span>
</div>

View file

@ -10,7 +10,7 @@
<meta name="referrer" content="no-referrer">
<meta name="description" content="Website Description">
<title>
words - Introduction
Words - Introduction
</title>
<link href="/tags/words/index.xml" rel="alternate" type="application/rss+xml" title="Introduction" />
@ -39,7 +39,7 @@ words - Introduction
<link rel="stylesheet" href="/css/main.min.1eaffbdff5446b797511e3967e8419d2ad7851677604addf74d560bdfc5f91c7.css" integrity="sha256-Hq/73/VEa3l1EeOWfoQZ0q14UWd2BK3fdNVgvfxfkcc=" crossorigin="anonymous" media="screen">
<link rel="stylesheet" href="/css/main.min.daa833377fb1636f8cbfa65c601050bb5475623deb7aa6e6fdde94a064a6185d.css" integrity="sha256-2qgzN3&#43;xY2&#43;Mv6ZcYBBQu1R1Yj3reqbm/d6UoGSmGF0=" crossorigin="anonymous" media="screen">
@ -146,12 +146,12 @@ words - Introduction
<a class="navbar-item" href="http://example.com/es/">Español</a>
<a class="navbar-item" href="http://example.com/de/">Deutsch</a>
@ -209,7 +209,7 @@ words - Introduction
<div class="container has-text-centered">
<span class="footer-text">
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> theme for <a href="http://gohugo.io/">Hugo</a>. Made with <a href="https://victoria.dev"><!-- raw HTML omitted --><!-- raw HTML omitted --> and <!-- raw HTML omitted --><!-- raw HTML omitted --></a> by open source contributors.
<a href="https://github.com/victoriadrake/hugo-theme-introduction/"><strong>Introduction</strong></a> theme for <a href="http://gohugo.io/">Hugo</a>. Made with <a href="https://victoria.dev"><i class="fa fa-heart"></i> and <i class="fa fa-coffee"></i></a> by open source contributors.
</span>
</div>

View file

@ -0,0 +1 @@
{{.Inner}}

View file

@ -0,0 +1,8 @@
{{$file := .Get "file"}}
{{- if eq (.Get "markdown") "true" -}}
{{- $file | readFile | markdownify -}}
{{- else if (.Get "highlight") -}}
{{- highlight ($file | readFile) (.Get "highlight") "" -}}
{{- else -}}
{{ $file | readFile | safeHTML }}
{{- end -}}

View file

@ -7131,6 +7131,11 @@ pre {
.thumbnail {
border: none; }
.card-thumbnail {
width: 100%;
height: 100%;
object-fit: cover; }
.bold-title {
font-size: 6rem;
line-height: 1.2;

File diff suppressed because one or more lines are too long

View file

@ -1 +1 @@
{"Target":"css/main.min.bf91ec58b8b87093e0a0046b7fba51acecc22ba44c15120d37a02a2841fe96b3.css","MediaType":"text/css","Data":{"Integrity":"sha256-v5HsWLi4cJPgoARrf7pRrOzCK6RMFRINN6AqKEH+lrM="}}
{"Target":"css/main.min.daa833377fb1636f8cbfa65c601050bb5475623deb7aa6e6fdde94a064a6185d.css","MediaType":"text/css","Data":{"Integrity":"sha256-2qgzN3+xY2+Mv6ZcYBBQu1R1Yj3reqbm/d6UoGSmGF0="}}