-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #336 from madetech/update-tech-calendar
Make tech calendar and clean code pages data driven
- Loading branch information
Showing
5 changed files
with
127 additions
and
96 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,68 @@ | ||
- type: clean-code | ||
title: Clean Code | ||
booking-page: cleancode.html | ||
bookable: true | ||
summary: |- | ||
A bootcamp covering programming concepts, lots of discussion and practical exercises. | ||
Suitable for all Engineering levels. | ||
dates: | ||
- title: Clean Code | ||
location: Bristol | ||
available: false | ||
subtitle: Days 1 to 3 | ||
date: Upcoming | ||
description: |- | ||
Days 1 to 3. Covers programming concepts, pairing and TDD. | ||
Suitable for all Engineering levels. This course is *in-person* only. | ||
button-url: '#' | ||
|
||
- title: Clean Code | ||
location: London | ||
available: false | ||
subtitle: Days 1 to 3 | ||
date: Upcoming | ||
description: |- | ||
Days 1 to 3. Covers programming concepts, pairing and TDD. | ||
Suitable for all Engineering levels. This course is *in-person* only. | ||
button-url: '#' | ||
|
||
- title: Clean Code | ||
location: Manchester | ||
available: false | ||
subtitle: Days 1 to 3 | ||
date: Upcoming | ||
description: |- | ||
Days 1 to 3. Covers programming concepts, pairing and TDD. | ||
Suitable for all Engineering levels. This course is *in-person* only. | ||
button-url: '#' | ||
|
||
- title: Clean Code - Remote | ||
location: Remote | ||
available: true | ||
subtitle: Days 1 to 3 | ||
date: Wednesday 17th July - Friday 19th July | ||
description: |- | ||
Days 1 to 3. Covers programming concepts, pairing and TDD. | ||
Suitable for all Engineering levels. | ||
This course is being offered as a *remote* option and we will attempt to prioritise those who are unable to attend in-person sessions at an office. | ||
button-url: 'https://forms.gle/inX5HHgWYkPjTsUS7' | ||
|
||
- type: consulting101 | ||
title: What is Consulting and how should I do it at Made Tech? | ||
booking-page: '' | ||
bookable: false | ||
summary: |- | ||
A one day bootcamp covering the consulting market, how Made Tech fits into that market, how to approach account strategy & influence your client, as well as dealing with difficult scenarios. | ||
Suitable for all billable roles. This course is *in-person* only. | ||
dates: [] | ||
|
||
- type: tdd | ||
title: Recapping TDD and Testing Along the Spectrum | ||
booking-page: 'testing.html' | ||
bookable: false | ||
summary: |- | ||
A 1.5 day bootcamp aimed to build confidence in TDD, use different tools across different areas of testing, and how to bug fix through testing. | ||
Suitable for all levels. | ||
*Please note: Part 1 will be online, Parts 2 and 3 will be in person. You need to be able to attend all three parts.* | ||
dates: [] |
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,14 @@ | ||
<div class="row"> | ||
<div class="col-sm"> | ||
<div class="card-body card-border"> | ||
<h3 class="card-title mt-0">{{ include.course.location }}</h3> | ||
<h4 class="card-title mt-0">{{ include.course.date }}</h4> | ||
<div class="card-text"> | ||
{{ include.course.description | markdownify }} | ||
</div> | ||
{% if include.course.available %} | ||
<a href="{{ include.course.url }}" class="btn btn-success">Register</a> | ||
{% endif %} | ||
</div> | ||
</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,17 @@ | ||
<div class="col-sm"> | ||
<div class="card-body card-border"> | ||
<h3 class="card-title mt-0">{{ include.course.title }}</h3> | ||
<p class="card-text"> | ||
{{ include.course.summary }} | ||
<p> | ||
{% for date in include.course.dates %} | ||
<strong>{{ date.location }} - {{ date.subtitle }} - {{ date.date }}</strong><br /> | ||
{% endfor %} | ||
</p> | ||
</p> | ||
<a | ||
href="{{ include.course.booking-page }}" | ||
class="btn btn-success" | ||
>More information & Register</a> | ||
</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
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