-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathfukuoka.html
146 lines (122 loc) · 5.13 KB
/
fukuoka.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
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
135
136
137
138
139
140
141
142
143
144
145
146
<!doctype html>
<html lang="en" xmlns="http://www.w3.org/1999/html">
<head>
<meta charset="utf-8">
<!-- Add your city name, dates and year. -->
<title>Rails Girls Fukuoka</title>
<!-- Write a metatext. This is what will show on the Facebook page and for instance search engines. -->
<meta http-equiv="refresh" content="0;URL=https://railsgirls.com/fukuoka-2024.html">
<meta
name="description"
content="Rails Girls goes Fukuoka! join the two-day crash-course to the exciting world of building web applications with Ruby on Rails."
/>
<meta name="author" content="Rails Girls" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@railsgirls" />
<meta property="og:url" content="https://railsgirls.com/fukuoka-2024" />
<meta property="og:title" content="Rails Girls Fukuoka" />
<meta
property="og:description"
content="こんにちは世界! Rails Girls Fukuoka が開催されます! Ruby on Railsのすてきな世界を私達と一緒に体験しましょう!"
/>
<meta property="og:image" content="https://railsgirls.com/images/railsgirls-sq.png" />
<link rel="shortcut icon" href="/favicon.png" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<link rel="stylesheet" href="./css/style.css" />
<style>
.coach {
border-radius: 50px;
}
</style>
<link rel="shortcut icon" href="/favicon.png">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<link rel="stylesheet" href="./css/style.css">
<style>
.coach {
border-radius: 50px;
}
#promo h1 {
font-family: "expressway", 'Helvetica Neue', Helvetica ,sans-serif;
height:80px;
font-weight:bold;
color:#d3360b;
font-size:52px;
margin-bottom:20px;
line-height:1.1;
text-indent:0;
}
</style>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
<script type="text/javascript" src="main.js"></script>
<script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script>
<!--[if lt IE 9]>
<script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<header>
<div class="container_12">
<a id="logo" href="/"><img src="images/railsgirls-logo.png" alt="Rails Girls" /></a>
<nav>
<a href="./events.html">Events</a>
<a href="./materials.html">Materials</a>
<a href="./press.html">Press</a>
<a href="https://railsgirls.tumblr.com/">Blog</a>
<a href="https://guides.railsgirls.com">Guides</a>
</nav>
</div>
</header>
<!-- How to change the picture & header for site
In the assets folder there is something called rg-header.psd. Be sure to download the fonts also. Name the file rg-yourcityname-header.png and your city picture rg-yourcityname.png. Add them to /images.
Steps to show on site
1. Go to style.css
2. Add two lines, always replacing 'yourcityname' with your actual city name.
.yourcityname#promo {
padding-left:340px;
background:url('../images/rg-yourcityname.png') no-repeat 0 10px,
url('../images/separator.png') no-repeat center bottom;
}
.yourcityname#promo h1 {
background:url('../images/rg-yourcityname-header.png') no-repeat left top;
}
It will take a while before the changes show, so don't panic!
-->
<!-- Change the header text. You can include a local hello or something else that brings context. Remember to mention the workshop is free. Remember to change to wufoo form link and dates. -->
<div id="container" class="container_12 page clearfix">
<div class="grid_12 omega alpha">
<div id="promo" class="fukuoka-3">
<h1>Rails Girls Fukuoka
<small>7th-8th June 2024</small>
</h1>
<p><strong>直近の開催情報は <a href="./fukuoka-2024.html">こちらです</a>!</strong></p>
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
</div>
<footer>
<p>2010-2020, Rails Girls. <a href="./press.html">Contact us</a> or follow us on <a href="https://twitter.com/railsgirls">Twitter</a> and <a href="https://www.facebook.com/railsgirls">Facebook</a></p>
<p class="slogan">Get excited and make things!</p>
</footer>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-19631067-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>