Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
162 changes: 162 additions & 0 deletions about.hbs
Original file line number Diff line number Diff line change
@@ -0,0 +1,162 @@
{{!< default}}
<header class='page-about__hero'>
<div class='page-about__hero__inner'>
{{#get 'pages' filter="title:'About::Hero - Body'" limit='1'}}
{{#foreach pages}}
{{content}}
{{/foreach}}
{{/get}}
<section class='kg-button-card__group'>
{{#get 'pages' filter='tag:hash-about-hero-cta' limit='2'}}
{{#foreach pages}}
{{content}}
{{/foreach}}
{{/get}}
</section>
</div>
</header>
<section class='page-about__position'>
<div class='page-about__position__inner'>
<img
alt="Female software engineer sitting at a laptop and holding a coffee cup"
class='page-about__position--image'
src={{asset 'images/about__position.jpg'}}
/>
<div class='page-about__position--content'>
{{#get 'pages' filter="title:'About::Position - Body'" limit='1'}}
{{#foreach pages}}
{{content}}
{{/foreach}}
{{/get}}
</div>
</div>
</section>
<section class='page-about__history'>
<div class='page-about__history__inner'>
<h2 class='page-about__history__title'>History</h2>
<hr />
<section class='page-about__history__section-one'>
<img
alt='Group of developers hugging and smiling together'
class='page-about__history__section-one--image'
src={{asset 'images/home__community__details--image.jpg'}}
/>
<div class='page-about__history__section-one--content'>
{{#get 'pages' filter="title:'About::History::SectionOne - Body'" limit='1'}}
{{#foreach pages}}
{{content}}
{{/foreach}}
{{/get}}
{{#get 'pages' filter="title:'About::History::SectionOne - Button'" limit='1'}}
{{#foreach pages}}
{{content}}
{{/foreach}}
{{/get}}
</div>
</section>
<section class='page-about__history__section-two'>
<img
alt='Seated conference participants talking with one another'
class='page-about__history__section-two--image'
src={{asset 'images/about__history__section-two--image.jpg'}}
/>
<div class='page-about__history__section-two--content'>
{{#get 'pages' filter="title:'About::History::SectionTwo - Body'" limit='1'}}
{{#foreach pages}}
{{content}}
{{/foreach}}
{{/get}}
</div>
</section>
<section class='page-about__history__section-three'>
<img
alt='Crowded lobby with conference participants entering workshop rooms'
class='page-about__history__section-three--image'
src={{asset 'images/about__history__section-three--image.jpg'}}
/>
<div class='page-about__history__section-three--content'>
{{#get 'pages' filter="title:'About::History::SectionThree - Body'" limit='1'}}
{{#foreach pages}}
{{content}}
{{/foreach}}
{{/get}}
</div>
</section>
</div>
</section>
<section class='page-about__team'>
<header class='page-about__team__header'>
{{#get 'pages' filter="title:'About::Team - Header'" limit='1'}}
{{#foreach pages}}
{{content}}
{{/foreach}}
{{/get}}
</header>
<section class='page-about__team__staff'>
<header class='page-about__team__staff__header'>
{{#get 'pages' filter="title:'About::Team::Staff - Header'" limit='1'}}
{{#foreach pages}}
{{content}}
{{/foreach}}
{{/get}}
</header>
<section class='page-about__team__staff__inner'>
{{#get "pages" order="featured desc, title asc" filter="tags:hash-staff" limit="all"}}
{{#foreach pages}}
<figure class='page-about__team__member'>
{{#if feature_image}}
<img
alt="{{title}}"
class='page-about__team__member__image'
src="{{feature_image}}"
/>
{{else}}
<img
alt='White Ruby Central logo on red background'
class='page-about__team__member__image'
src={{asset 'images/global__placeholder.svg'}}
/>
{{/if}}
<div class='page-about__team__member--details'>
<h4>{{title}}</h4>
{{content}}
</div>
</figure>
{{/foreach}}
{{/get}}
</section>
</section>
<section class='page-about__team__directors'>
<header class='page-about__team__directors__header'>
{{#get 'pages' filter="title:'About::Team::Directors - Header'" limit='1'}}
{{#foreach pages}}
{{content}}
{{/foreach}}
{{/get}}
</header>
<section class='page-about__team__directors__inner'>
{{#get "pages" order="featured desc, title asc" filter="tags:hash-director" limit="all"}}
{{#foreach pages}}
<figure class='page-about__team__member'>
{{#if feature_image}}
<img
alt="{{title}}"
class='page-about__team__member__image'
src="{{feature_image}}"
/>
{{else}}
<img
alt='White Ruby Central logo on red background'
class='page-about__team__member__image'
src={{asset 'images/global__placeholder.svg'}}
/>
{{/if}}
<h4>{{title}}</h4>
{{content}}
</figure>
{{/foreach}}
{{/get}}
</section>
</section>
</section>
{{> 'get-involved' }}
Binary file added assets/images/about__hero--background.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 assets/images/about__position.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
32 changes: 32 additions & 0 deletions assets/images/global__placeholder.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions import/routes.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
routes:
/: home
/about/:
data: page.about
template: about

collections:
/news/:
Expand Down
1 change: 1 addition & 0 deletions src/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
@import './pages/home.css';
@import './pages/conferences.css';
@import './pages/open-source.css';
@import './pages/about.css';

@import './modern.css';

Expand Down
1 change: 1 addition & 0 deletions src/css/base/variables.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
--color-lightblue: #eff4f8;
--color-mutednavy: #444d5c;
--color-navy: #292e37;
--color-offwhite: #f0f4fd;
--color-purple: #755384;
--color-red: #e14943;
--color-text: #3b3e44;
Expand Down
Loading