Skip to content

Commit

Permalink
start working out structure of website
Browse files Browse the repository at this point in the history
- create About Us menu with contact, slack, etc.
- create a Projects menu
- create first project page
- create first person page
- fix copyright notice at bottom of site
- a variety of other tweaks
  • Loading branch information
jacobwhall committed Jan 26, 2024
1 parent 58bb8e9 commit 9fc6931
Show file tree
Hide file tree
Showing 11 changed files with 142 additions and 18 deletions.
54 changes: 54 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
title: MapRVA
copyright: MapRVA
email: [email protected]
description: >- # this means to ignore newlines until "baseurl:"
We are a group of mapping enthusiasts in Richmond, Virginia who work
Expand All @@ -12,8 +13,61 @@ instagram: false
twitter: false
facebook: false
linkedin: false
links:
- link: /about/
- link: /projects/
# - link: /blog/

# Build settings
theme: osmus-dogwood
plugins:
- jekyll-feed

collections:
feeds:
output: true
pages:
output: true
projects:
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: "_projects"
type: "projects"
values:
layout: project
-
scope:
path: "_posts/blog"
type: "posts"
values:
permalink: /blog/:year/:month/:title/
category: "Blog"
layout: "post"
10 changes: 10 additions & 0 deletions _pages/about.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
title: About Us
dropdown_links:
- link: /people/
- link: /contact/
label: Contact
- link: /slack/
label: Slack
---
We are...
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>

4 changes: 4 additions & 0 deletions _pages/contact.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Contact Us
---
We are active on [Slack](/slack), and announce upcoming meetings on [Mastodon](https://en.osm.town/@maprva) as well.
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/projects.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
title: Projects
dropdown_links:
- link: /projects/sidewalks/
label: Sidewalks
---
Here are the projects we're currently working on.

{::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}
12 changes: 12 additions & 0 deletions _pages/projects/sidewalks.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
layout: project
title: Mapping Pedestrian Infrastructure
# image:
blurb: We are mapping every sidewalk and pedestrian crossing in Richmond
buttons:
- link: https://tasks.openstreetmap.us/projects/438/
label: Contribute!
---
{::nomarkdown}
{% include page_people_list.html %}
{:/nomarkdown}
7 changes: 7 additions & 0 deletions _pages/slack.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
title: Join us on Slack
---
Most of our communication happens in the `local-rva` channel of the [OpenStreetMap US Slack](https://openstreetmap.us/get-involved/slack/).
You are welcome to join us, we'd love to chat!

For other ways to contact us, see our [Contact page](/contact).
8 changes: 8 additions & 0 deletions _people/jacob-hall.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
title: Jacob Hall
image: https://jacobhall.net/profile.jpg
website: https://jacobhall.net
github: jacobwhall
linkedin: jacobwhall
---
Jacob Hall is a mapper in Richmond, Virginia
18 changes: 0 additions & 18 deletions about.markdown

This file was deleted.

0 comments on commit 9fc6931

Please sign in to comment.