-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage-about.hbs
134 lines (122 loc) · 5.18 KB
/
page-about.hbs
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{{!< default}}
{{#post}}
<article class="gh-article {{post_class}}">
{{#match @page.show_title_and_feature_image}}
<header class="gh-header gh-canvas">
<div class="lg:grid lg:grid-cols-2 lg:gap-24 text-left max-w-7xl mx-auto">
<div>
<h1 class="gh-title text-size-lg/display">{{title}}</h1>
<img class="w-24 h-2 mb-12" src="{{asset "images/author-line.png"}}" />
<p class="gh-excerpt">Combinations is a publication of RadicalxChange Foundation, exploring new ideas about economics, democracy, and the relationship between technology and power. Our aim is to illuminate new possible paths for present institutions, spotlighting the connections between ideas, technologies, and social and political organization.</p>
</div>
{{#if feature_image}}
<figure class="gh-feature-image col-start-2 row-start-1 mt-0">
<picture>
<source
srcset="
{{img_url feature_image size="xxs" format="avif"}} 30w,
{{img_url feature_image size="xs" format="avif"}} 100w,
{{img_url feature_image size="s" format="avif"}} 300w,
{{img_url feature_image size="m" format="avif"}} 600w,
{{img_url feature_image size="l" format="avif"}} 1200w,
{{img_url feature_image size="xl" format="avif"}} 2000w"
sizes="(min-width: 1200px) 1200px, 90vw"
type="image/avif"
>
<source
srcset="
{{img_url feature_image size="xxs" format="webp"}} 30w,
{{img_url feature_image size="xs" format="webp"}} 100w,
{{img_url feature_image size="s" format="webp"}} 300w,
{{img_url feature_image size="m" format="webp"}} 600w,
{{img_url feature_image size="l" format="webp"}} 1200w,
{{img_url feature_image size="xl" format="webp"}} 2000w"
sizes="(min-width: 1200px) 1200px, 90vw"
type="image/webp"
>
<img
srcset="
{{img_url feature_image size="xxs"}} 30w,
{{img_url feature_image size="xs"}} 100w,
{{img_url feature_image size="s"}} 300w,
{{img_url feature_image size="m"}} 600w,
{{img_url feature_image size="l"}} 1200w,
{{img_url feature_image size="xl"}} 2000w"
sizes="(min-width: 1200px) 1200px, 90vw"
src="{{img_url feature_image size="l"}}"
alt="{{#if feature_image_alt}}{{feature_image_alt}}{{else}}{{title}}{{/if}}"
>
</picture>
{{#if feature_image_caption}}
<figcaption>{{feature_image_caption}}</figcaption>
{{/if}}
</figure>
{{/if}}
</div>
</header>
{{/match}}
<div class="gh-content gh-canvas mt-24">
{{content}}
</div>
<div class="mt-48 max-w-7xl mx-auto text-center">
<div class="team-header">
<h2>Masthead</h2>
<img class="w-24 h-2 mb-12 mx-auto" src="{{asset "images/author-line.png"}}" />
</div>
<div class="team">
<div>
<p>Paula Berman</p>
<p>Editor</p>
</div>
<div>
<p>Guy Mackinnon-Little</p>
<p>Editor</p>
</div>
<div>
<p>Jack Henderson</p>
<p>Contributing Editor</p>
</div>
<div>
<p>Matt Prewitt</p>
<p>Contributing Editor</p>
</div>
<div>
<p>Alex Randaccio</p>
<p>Contributing Editor</p>
</div>
<div>
<p>Isabel Bortagaray</p>
<p>Design</p>
</div>
<div>
<p>Catarina Horn</p>
<p>Design</p>
</div>
<div>
<p>Angela Corpus</p>
<p>Communications</p>
</div>
</div>
</div>
<div class="mt-48 max-w-7xl mx-auto text-center">
<div class="team-header">
<h2>Editorial Board</h2>
<img class="w-24 h-2 mb-12 mx-auto" src="{{asset "images/author-line.png"}}" />
</div>
<div class="team">
<div>
<p>Nils Gilman</p>
</div>
<div>
<p>Margaret Levi</p>
</div>
</div>
</div>
<div class="mt-48 max-w-7xl mx-auto text-center">
<p><i>Combinations</i> is a publication by the RadicalxChange Foundation, with generous support from Project Liberty.</p>
<p>RadicalxChange retains complete editorial independence and control over its content and strategy.</p>
<p class="mt-8">All rights reserved ©, but not for long:</p>
<p>We are retaining the rights while we develop a license that fits our mission. Stay tuned.</p>
</div>
</article>
{{/post}}