-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
create a landing page for teacher advisers
- Loading branch information
Showing
3 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
title: "Sign up for a free adviser" | ||
description: If you're thinking about teaching in England, an adviser can offer free one-to-one support as little or as often as you need it. | ||
content: | ||
- content/landing/advisers/header | ||
- content/landing/advisers/adviser | ||
image: "static/images/content/campus-advisers/adviser.jpeg" | ||
layout: "layouts/minimal" | ||
colour: green-yellow | ||
noindex: true | ||
breadcrumbs: false | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<div class="row"> | ||
<div class="grey col-space-l"> | ||
<section class="col col-720 col-space-0"> | ||
<%= render Content::AdviserComponent.new( | ||
title: "Get expert one-to-one support ", | ||
intro: "A teacher training adviser can help guide you wherever you are in your journey.", | ||
color: "transparent", | ||
margin: false, | ||
heading: :l | ||
) %> | ||
</section> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<%= render Content::LandingHeroComponent.new( | ||
title: "Sign up for a free adviser", | ||
colour: @front_matter["colour"], | ||
image: @front_matter["image"], | ||
) %> |