Update example site to work with new theme changes
This commit is contained in:
@@ -3,11 +3,13 @@ title: "Aether Features"
|
||||
date: 2018-12-19T10:35:35-05:00
|
||||
description: "Hugo combined with the Aether theme turns easy to write markdown into powerful web pages. KaTeX, Highlight.js, and Hugo provides the ability to create mathmatical symobols, equations, highlighted code, tables, lists, and much more."
|
||||
categories: ["Features"]
|
||||
featuredImage: "img/mdd-iphone.jpg"
|
||||
dropCap: true
|
||||
displayInMenu: false
|
||||
displayInList: true
|
||||
draft: false
|
||||
resources:
|
||||
- name: featuredImage
|
||||
src: "mdd-iphone.jpg"
|
||||
---
|
||||
|
||||
Hugo combined with the Aether theme turns easy to write markdown into powerful web pages. KaTeX, Highlight.js, and Hugo provides the ability to create mathmatical symobols, equations, highlighted code, tables, lists, and much more.
|
||||
@@ -109,18 +111,18 @@ Here is `var s = "Hello World"` inline code
|
||||
## Images
|
||||
|
||||
```md
|
||||

|
||||

|
||||
```
|
||||
|
||||

|
||||

|
||||
|
||||
## Small Images
|
||||
|
||||
```md
|
||||
{{</* smallimg src="/img/nyc.jpg" alt="NYC Skyline" smartfloat="left" width="250px" */>}}
|
||||
{{</* smallimg src="featuredImage" alt="NYC Skyline" smartfloat="left" width="250px" */>}}
|
||||
```
|
||||
|
||||
{{<smallimg src="/img/nyc.jpg" alt="NYC Skyline" smartfloat="left" width="250px">}}
|
||||
{{<smallimg src="featuredImage" alt="aether theme displayed on an iPhone" smartfloat="left" width="250px">}}
|
||||
|
||||
This image floats to the left of this paragraph and is 250px wide. Its aspect ratio is maintained so it will not stretch. The picture shows the New York skyline. You can see how the design is responsive and how the cards intelligently fit to the display. With flexbox and css grid, heavy frameworks such as bootstrap aren't necessary to create beautiful responsive designs. The cards in aether use flexbox to change the image from the right side on desktops to the top on mobile.
|
||||
|
||||
BIN
exampleSite/content/post/aether-features/mdd-iphone.jpg
Normal file
BIN
exampleSite/content/post/aether-features/mdd-iphone.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 778 KiB |
@@ -3,11 +3,15 @@ title: "Aether: A Clean Theme for Hugo"
|
||||
date: 2018-05-02T14:33:42-04:00
|
||||
description: " Aether is new theme for Hugo that emphasizes motion, material, and depth as design elements. Distracting styling and page elements are forgone to focus on the content."
|
||||
categories: ["Web"]
|
||||
featuredImage: "img/mdd-macbook.jpg"
|
||||
dropCap: true
|
||||
displayInMenu: false
|
||||
displayInList: true
|
||||
draft: false
|
||||
resources:
|
||||
- name: featuredImage
|
||||
src: "mdd-macbook.jpg"
|
||||
params:
|
||||
description: "A MacBook showing a website using the aether theme"
|
||||
---
|
||||
|
||||
Today's web is a frustrating mess of pop-ups, intrusive banners, and ads obstructing the content. I designed aether to be free of all these distractions and simply highlight the content. The result feels more like a native application than a website. Interactions are intuitive, content is the focus, and distractions are omitted.
|
||||
BIN
exampleSite/content/post/aether-theme/mdd-macbook.jpg
Normal file
BIN
exampleSite/content/post/aether-theme/mdd-macbook.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 551 KiB |
@@ -2,11 +2,13 @@
|
||||
author: "Michael Henderson"
|
||||
date: 2014-09-28
|
||||
title: Creating a New Theme
|
||||
featuredImage: "img/nyc.jpg"
|
||||
dropCap: true
|
||||
displayInMenu: false
|
||||
displayInList: true
|
||||
draft: false
|
||||
resources:
|
||||
- name: featuredImage
|
||||
src: "nyc.jpg"
|
||||
---
|
||||
|
||||
|
||||
BIN
exampleSite/content/post/creating-a-new-theme/nyc.jpg
Normal file
BIN
exampleSite/content/post/creating-a-new-theme/nyc.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 261 KiB |
@@ -1,6 +1,5 @@
|
||||
+++
|
||||
title = "(Hu)go Template Primer"
|
||||
featuredImage = "img/lucas-benjamin-565254-unsplash.jpg"
|
||||
displayInMenu = false
|
||||
displayInList = true
|
||||
draft = false
|
||||
@@ -16,6 +15,11 @@ categories = [
|
||||
"Development",
|
||||
"golang",
|
||||
]
|
||||
[[resources]]
|
||||
name = "featuredImage"
|
||||
src = "lucas-benjamin-565254-unsplash.jpg"
|
||||
[resources.params]
|
||||
description = "Alt description for the featured image"
|
||||
+++
|
||||
|
||||
Hugo uses the excellent [Go][] [html/template][gohtmltemplate] library for
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 132 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 95 KiB |
@@ -15,6 +15,9 @@ categories = [
|
||||
"Development",
|
||||
"golang",
|
||||
]
|
||||
[[resources]]
|
||||
name = "featuredImage"
|
||||
src = "andrew-neel-609846-unsplash.jpg"
|
||||
+++
|
||||
|
||||
## Step 1. Install Hugo
|
||||
@@ -1,10 +1,12 @@
|
||||
---
|
||||
date: 2014-03-10
|
||||
featuredImage: "img/yan-ots-257617-unsplash.jpg"
|
||||
displayInMenu: false
|
||||
displayInList: true
|
||||
draft: false
|
||||
title: Migrate to Hugo from Jekyll
|
||||
resources:
|
||||
- name: featuredImage
|
||||
src: "yan-ots-257617-unsplash.jpg"
|
||||
---
|
||||
|
||||
## Move static content to `static`
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 126 KiB |
Reference in New Issue
Block a user