forked from ko1/tokyo11
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsponsors.html
executable file
·52 lines (47 loc) · 1.31 KB
/
sponsors.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
---
layout: page
title: Sponsors
permalink: /sponsors/
---
<h2 id='ruby3'>Ruby3スポンサー</h2>
{% for sponsor in site.data.sponsors.ruby3 %}
<table cellspacing='10'>
<tr>
<td width='230'>
<a href='{{sponsor.link}}'><img width='220' src='{{site.baseurl}}/image/{{sponsor.image}}' /></a>
</td>
<td>
<div class='sponsor_name'><a href='{{sponsor.link}}'>{{sponsor.name}}</a></div>
<div>{{sponsor.desc}}</div>
</td>
</tr>
</table>
{% endfor %}
<h2 id='ruby'>Rubyスポンサー</h2>
{% for sponsor in site.data.sponsors.ruby %}
<table cellspacing='10'>
<tr>
<td width='230'>
<a href='{{sponsor.link}}'><img width='220' src='{{site.baseurl}}/image/{{sponsor.image}}' /></a>
</td>
<td>
<div class='sponsor_name'><a href='{{sponsor.link}}'>{{sponsor.name}}</a></div>
<div>{{sponsor.desc}}</div>
</td>
</tr>
</table>
{% endfor %}
<h2 id='gold'>Goldスポンサー</h2>
{% for sponsor in site.data.sponsors.gold %}
<table cellspacing='10'>
<tr>
<td width='140'>
<a href='{{sponsor.link}}'><img width='130' src='{{site.baseurl}}/image/{{sponsor.image}}' /></a>
</td>
<td>
<div class='sponsor_name'><a href='{{sponsor.link}}'>{{sponsor.name}}</a></div>
<div>{{sponsor.desc}}</div>
</td>
</tr>
</table>
{% endfor %}