This repository was archived by the owner on Dec 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpage-community-committee.php
More file actions
57 lines (39 loc) · 2.4 KB
/
page-community-committee.php
File metadata and controls
57 lines (39 loc) · 2.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?php
$context = Timber::get_context();
$post = new TimberPost();
$context['post'] = $post;
$context['broken_content'] = explode("<!--more-->", $post->content);
$context['community'] = [ ['name'=>'Michael Madden', 'dojo'=>'Galway and Athenry',
'region'=>'Ireland','joined'=>'27/02/14'],
['name'=>'Francis Reed', 'dojo'=>'Dun Laoighre',
'region'=>'Ireland','joined'=>'27/02/14'],
['name'=>'Shara Karasic', 'dojo'=>'LA',
'region'=>'USA West Coast','joined'=>'27/02/14'],
['name'=>'Greg Bulmash', 'dojo'=>'Seattle',
'region'=>'USA Pacific Northwest','joined'=>'27/02/14'],
['name'=>'David Welch', 'dojo'=>'Iowa City',
'region'=>'USA Central','joined'=>'27/02/14'],
['name'=>'Craig Steele', 'dojo'=>'Glasgow',
'region'=>'Scotland','joined'=>'27/02/14'],
['name'=>'Rob curran', 'dojo'=>'Wilmslow',
'region'=>'UK','joined'=>'27/02/14'],
['name'=>'Paul Browne', 'dojo'=>'Leiden',
'region'=>'The Netherlands','joined'=>'27/02/14'],
['name'=>'Patrick Bosteels', 'dojo'=>'Istanbul',
'region'=>'Turkey','joined'=>'27/02/14'],
['name'=>'Radu Ticio', 'dojo'=>'Timisoara',
'region'=>'Romania','joined'=>'27/02/14'],
['name'=>'Carmelo Presicce', 'dojo'=>'Bologna',
'region'=>'Italy','joined'=>'27/02/14'],
['name'=>'John Harrington', 'dojo'=>'CMX',
'region'=>'Ireland','joined'=>'29/04/14'],
['name'=>'Yohei Yasukawa', 'dojo'=>'Tokyo',
'region'=>'Japan','joined'=>'22/09/14'],
['name'=>'David Campy', 'dojo'=>'South Africa',
'region'=>'South Africa','joined'=>'22/09/15'],
['name'=>'Frank and Joe Westgard', 'dojo'=>'Washington DC',
'region'=>'USA','joined'=>'22/09/14'],
['name'=>'Martine Temples and/or Bettina Stylerts', 'dojo'=>'CoderDojo Belgium',
'region'=>'Belgium','joined'=>'22/09/14']
];
Timber::render('page-community-committee.twig', $context);