Adds Forestry
Torey Heinz
committed Apr 11, 2020
commit 8022fdab024cb878fe1508d8dd7ba27dcec4d607
Showing 7
changed files with
14 additions
and 18 deletions
.forestry/front_matter/templates/page.yml
+1
-1
| @@ | @@ -14,7 +14,7 @@ fields: |
| required: false | |
| label: Heading | |
| - type: text | |
| - | name: subtitle |
| + | name: subheading |
| label: SubHeading | |
| - name: published | |
| type: boolean | |
content/pages/COVID-19.md
+3
-4
| @@ | @@ -1,9 +1,8 @@ |
| --- | |
| title: COVID-19 | |
| - | subtitle: What Are We Doing Now And Why? |
| - | published: true |
| heading: COVID-19 | |
| - | |
| + | subheading: What Are We Doing Now And Why? |
| + | published: true |
| --- | |
| __We believe that the bottom line is to help heal our communities__ and to make them healthier, safer, stronger and more | |
| responsive over all—one person at a time or on a more massive scale. In the current healthcare climate, one way we can | |
| @@ | @@ -57,4 +56,4 @@ Willingness to work wearing masks and gloves before you even enter the site door |
| social distancing at all times. | |
| > Fighting this pandemic takes all of us. Together, we can be far more effective at fighting infection than we can as | |
| - | individuals |
| \ No newline at end of file | |
| + | individuals |
content/pages/contact.md
+1
-3
| @@ | @@ -2,7 +2,5 @@ |
| title: Contact | |
| published: true | |
| heading: '' | |
| - | subtitle: '' |
| - | |
| --- | |
| - | Placeholder for the about contact |
| \ No newline at end of file | |
| + | Placeholder for the about contact |
content/pages/index.md
+3
-4
| @@ | @@ -1,9 +1,8 @@ |
| --- | |
| title: Home Page | |
| - | published: true |
| heading: Anchor Rock Foundation Inc. | |
| - | subtitle: '' |
| - | |
| + | subheading: '' |
| + | published: true |
| --- | |
| We are a small, faith-based 501.c.3 charitable foundation located on the shores of Southwest Michigan and established in | |
| December of 2019. The vision for the foundation is to change the world in the best ways we can, starting with filling | |
| @@ | @@ -12,4 +11,4 @@ groups. The big plan is to address housing, employment and job skills training a |
| communities. Our primary focus is on serving disabled veterans, seniors who are caught between their own private | |
| residences and retirement communities/facilities, adults with special needs and adults returning to mainstream society | |
| and the workforce for various reasons. It’s a huge vision, and as a new agency, we realize that we have to build our | |
| - | programs carefully over time, following the direction we receive in faith. |
| \ No newline at end of file | |
| + | programs carefully over time, following the direction we receive in faith. |
gridsome.server.js
+2
-1
| @@ | @@ -24,7 +24,8 @@ module.exports = function (api) { |
| }, | |
| fields: { | |
| title: 'String', | |
| - | subtitle: 'String', |
| + | heading: 'String', |
| + | subheading: 'String', |
| published: 'Boolean' | |
| } | |
| }) | |
src/scss/_theme-default.scss
+0
-2
| @@ | @@ -19,7 +19,6 @@ $fullhd-enabled: false; |
| $primary: #C01B28; | |
| $default-shadow: 0 2px 3px rgba(black, 0.1), 0 0 0 1px rgba(black, 0.1) !default; | |
| - | |
| /* Status/State colors (based on Bulma's) */ | |
| $state-colors: | |
| ('primary', $primary, $white), | |
| @@ | @@ -30,7 +29,6 @@ $state-colors: |
| ('dark', $grey-darker, $white), | |
| ('white', $white, $black-ter); | |
| - | |
| // $footer-padding: ; | |
| // Content Overrides | |
src/templates/ContentPage.vue
+4
-3
| @@ | @@ -1,7 +1,7 @@ |
| <template lang="pug"> | |
| Layout | |
| - | h1.title.has-text-centered {{ $page.contentPage.title }} |
| - | h2.subtitle.has-text-centered(v-if="$page.contentPage.subtitle") {{ $page.contentPage.subtitle }} |
| + | h1.title.has-text-centered {{ $page.contentPage.heading }} |
| + | h2.subtitle.has-text-centered(v-if="$page.contentPage.subheading") {{ $page.contentPage.subheading }} |
| VueRemarkContent.content | |
| slot | |
| </template> | |
| @@ | @@ -11,7 +11,8 @@ query ($id: ID!) { |
| contentPage(id: $id) { | |
| published | |
| title | |
| - | subtitle |
| + | heading |
| + | subheading |
| } | |
| } | |
| </page-query> | |