Skip to content

Commit

Permalink
Add example content
Browse files Browse the repository at this point in the history
  • Loading branch information
quincylvania committed Jan 18, 2024
1 parent 7685b18 commit 00aac9a
Show file tree
Hide file tree
Showing 16 changed files with 156 additions and 1 deletion.
45 changes: 44 additions & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ facebook: openstreetmap.us
instagram: openstreetmapus
linkedin: company/openstreetmap-us
links:
- link: /plants/
- link: /people/
- link: /blog/
- link: https://github.com/osmus/dogwood
label: Use Me!
class: no-cond
Expand All @@ -34,4 +37,44 @@ jekyll-archives:
tag: '/tags/:name/'
month: '/:year/:month/'
year: '/:year/'
date_format: "%b %e, %Y"
date_format: "%b %e, %Y"
collections:
feeds:
output: true
pages:
output: true
people:
output: true
posts:
output: true
redirects:
output: true
defaults:
-
scope:
path: "_pages"
type: "pages"
values:
permalink: /:path/
layout: "page"
-
scope:
path: "_redirects"
type: "redirects"
values:
permalink: /:path/
layout: "redirect"
-
scope:
path: "_people"
type: "people"
values:
layout: "person"
-
scope:
path: "_posts/blog"
type: "posts"
values:
permalink: /blog/:year/:month/:title/
category: "Blog"
layout: "post"
13 changes: 13 additions & 0 deletions _pages/blog.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
title: Blog
links:
- link: /blog/archive/
dropdown_links:
- link: /blog/
label: Latest
- link: /blog/archive/
---
{% assign items=site.posts | where: "category", "Blog" | slice: 0, 20 %}
<div class="section">
{% include item_list.html items=items %}
</div>
9 changes: 9 additions & 0 deletions _pages/blog/archive.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
title: Blog Archive
short_title: Archive
---
<div class='section'>
{% assign items=site.posts | where: "category", "Blog" %}
{% include item_list.html items=items type="simple" %}
</div>

7 changes: 7 additions & 0 deletions _pages/people.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
title: People
---
{% assign items=site.people %}
<div class="section">
{% include people_list.html people=items gallery=true %}
</div>
18 changes: 18 additions & 0 deletions _pages/plants.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
title: Plants
links:
- link: /plants/dogwoods/
- link: /plants/azaleas/
---
Here are the plants we care most about.

{::nomarkdown}
{% assign subitems="" | split: ',' -%}
{% for link in page.links %}
{% assign item=site.pages | find: "url", link.link %}
{%- if item -%}
{%- assign subitems=subitems | push: item -%}
{%- endif %}
{% endfor %}
{% include item_list.html items=subitems %}
{:/nomarkdown}
8 changes: 8 additions & 0 deletions _pages/plants/azaleas.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
title: Azaleas
image: /img/azalea.jpg
blurb: Azaleas are flowering shrubs.
---
{::nomarkdown}
{% include page_people_list.html %}
{:/nomarkdown}
8 changes: 8 additions & 0 deletions _pages/plants/dogwoods.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
title: Dogwoods
image: /img/dogwood.jpg
blurb: Dogwoods flowers are usually pink or white.
---
{::nomarkdown}
{% include page_people_list.html %}
{:/nomarkdown}
7 changes: 7 additions & 0 deletions _people/darla-dogson.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
title: Darla Dogson
image: /img/Morisot.jpg
roles:
- title: Team Lead
at: Dogwoods
---
8 changes: 8 additions & 0 deletions _people/walter-woodman.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
title: Walter Woodman
image: /img/Renoir.jpg
roles:
- title: Team Lead
at: Azaleas
- at: Dogwoods
---
31 changes: 31 additions & 0 deletions _posts/blog/2023-12-09-dogwood-blossoms.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
title: Dogwood Blossoms
author: Walter Woodman
image: /img/white-dogwoods.jpg
tags:
- Dogwoods
- Azaleas
---
Inspired today by *Dogwood Blossoms* by George Marion McClellan from *The Book of American Negro Poetry* (1922). This poem is in the public domain.

To dreamy languors and the violet mist<br/>
Of early Spring, the deep sequestered vale<br/>
Gives first her paling-blue Miamimist,<br/>
Where blithely pours the cuckoo’s annual tale<br/>
Of Summer promises and tender green,<br/>
Of a new life and beauty yet unseen.<br/>
The forest trees have yet a sighing mouth,<br/>
Where dying winds of March their branches swing,<br/>
While upward from the dreamy, sunny South,<br/>
A hand invisible leads on the Spring.<br/>

His rounds from bloom to bloom the bee begins<br/>
With flying song, and cowslip wine he sups,<br/>
Where to the warm and passing southern winds,<br/>
Azaleas gently swing their yellow cups.<br/>
Soon everywhere, with glory through and through,<br/>
The fields will spread with every brilliant hue.<br/>
But high o’er all the early floral train,<br/>
Where softness all the arching sky resumes,<br/>
The dogwood dancing to the winds’ refrain,<br/>
In stainless glory spreads its snowy blooms.
3 changes: 3 additions & 0 deletions _redirects/trees.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
redirect: /plants/
---
Binary file added img/Morisot.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/Renoir.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/azalea.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/dogwood.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/white-dogwoods.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 00aac9a

Please sign in to comment.