This repository has been archived by the owner on Mar 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpress.html
68 lines (62 loc) · 1.95 KB
/
press.html
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
---
title: Press
layout: default
menu: footer
order: 2
logos:
- file: phpsc-200
size: 200x102
- file: phpsc-300
size: 300x153
- file: phpsc-400
size: 401x205
- file: phpsc-500
size: 500x256
press-releases:
- file: phpsc17-expansion
description: PHP South Coast 2017 to Expand Across Two Days
---
<div id="main" class="press">
<div class="container">
<header>
<h2>Press & Logo</h2>
</header>
<h3>Press Releases</h3>
<ul>
{% for pr in page.press-releases %}
<li>
<a href="/assets/{{ pr.file }}.pdf">
{{ pr.description }}
</a> (PDF download)
</li>
{% endfor %}
</ul>
<h3>Logo: Raster</h3>
<p>
If you would like to use our logo to link to the conference website for promotional reasons, please download
one of the images below.
</p>
{% for img in page.logos %}
<p>
<figure class="figure">
<a href="/assets/{{ img.file }}.png" target="_blank" title="Click to download"><!--
--><img src="/assets/{{ img.file }}.png" class="img-responsive img-thumbnail"
alt="PHP South Coast Logo"><!--
--></a>
<figcaption class="figure-caption">Size: {{ img.size }}px</figcaption>
</figure>
</p>
{% endfor %}
<h3>Logo: Vector</h3>
<p>
Alternatively the EPS file below contains a vector-based image of our logo which can be
scaled to any resolution required and can be opened by most vector graphics editors.
</p>
<p>
<a href="/assets/PHP%20South%20Coast%20-%20CMYK%20(compatible).eps" class="btn btn-primary btn-lg">
<i class="fa fa-download fa-fw" aria-hidden="true"></i>
Download logo as EPS
</a>
</p>
</div>
</div>