-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
428 lines (345 loc) · 16.1 KB
/
index.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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>WHERE DOES MY MONEY GO? 〜税金はどこへ行った?〜</title>
<meta name="description" content="あなたの税金がどこで使われているかをお示しします">
<meta name="viewport" content="width=device-width">
<meta name="author" content="Open Knowledge Founadtion Japan">
<!-- Le styles -->
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/bootstrap-responsive.css" rel="stylesheet">
<style>
/* GLOBAL STYLES
-------------------------------------------------- */
/* Padding below the footer and lighter body text */
body {
padding-bottom: 40px;
color: #5a5a5a;
}
/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */
/* Carousel base class */
.carousel {
margin-bottom: 60px;
}
.carousel .container {
position: relative;
z-index: 9;
}
.carousel-control {
height: 80px;
margin-top: 0;
font-size: 120px;
text-shadow: 0 1px 1px rgba(0,0,0,.4);
background-color: transparent;
border: 0;
z-index: 10;
}
.carousel .item {
height: 520px;
}
.carousel img {
position: absolute;
top: 0;
left: 0;
min-width: 100%;
height: 500px;
}
.carousel-caption {
background-color: transparent;
position: static;
margin-top: 40px;
}
.carousel-caption h1,
.carousel-caption .lead {
margin: 0;
line-height: 1.25;
color: #fff;
text-shadow: 0 1px 1px rgba(0,0,0,.4);
}
.carousel-caption .btn {
margin-top: 10px;
}
/* MARKETING CONTENT
-------------------------------------------------- */
/* Center align the text within the three columns below the carousel */
.marketing .span4 {
text-align: center;
}
.marketing h2 {
font-weight: normal;
}
.marketing .span4 p {
margin-left: 10px;
margin-right: 10px;
}
/* Featurettes
------------------------- */
.featurette-divider {
margin: 30px 0; /* Space out the Bootstrap <hr> more */
}
.featurette {
padding-top: 10px; /* Vertically center images part 1: add padding above and below text. */
overflow: hidden; /* Vertically center images part 2: clear their floats. */
}
/* Give some space on the sides of the floated elements so text doesn't run right into it. */
.featurette-image.pull-left {
margin-right: 40px;
}
.featurette-image.pull-right {
margin-left: 40px;
}
/* Thin out the marketing headings */
.featurette-heading {
font-size: 35px;
font-weight: 300;
line-height: 1;
letter-spacing: -1px;
}
/* RESPONSIVE CSS
-------------------------------------------------- */
@media (max-width: 979px) {
.container.navbar-wrapper {
margin-bottom: 0;
width: auto;
}
.navbar-inner {
border-radius: 0;
margin: -20px 0;
}
.carousel .item {
height: 500px;
}
.carousel img {
width: auto;
height: 500px;
}
.featurette {
height: auto;
padding: 0;
}
.featurette-image.pull-left,
.featurette-image.pull-right {
display: block;
float: none;
max-width: 40%;
margin: 0 auto 20px;
}
}
@media (max-width: 767px) {
.navbar-inner {
margin: -20px;
}
.carousel {
margin-left: -20px;
margin-right: -20px;
}
.carousel .container {
}
.carousel .item {
height: 500px;
}
.carousel img {
height: 500px;
}
.carousel-caption {
width: 65%;
padding: 0 70px;
margin-top: 25px;
}
.carousel-caption h1 {
font-size: 30px;
}
.carousel-caption .lead,
.carousel-caption .btn {
font-size: 18px;
}
.marketing .span4 + .span4 {
margin-top: 10px;
}
.featurette-heading {
font-size: 30px;
}
.featurette .lead {
font-size: 18px;
line-height: 1.5;
}
}
</style>
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<![endif]-->
<!-- Fav and touch icons -->
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="ico/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="ico/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="ico/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="ico/apple-touch-icon-57-precomposed.png">
<link rel="shortcut icon" href="ico/favicon.png">
</head>
<body>
<!-- Carousel
================================================== -->
<div id="myCarousel" class="carousel slide">
<div class="carousel-inner">
<div class="item active">
<img src="img/wdmmg05.jpg" alt="">
<div class="container">
<div class="carousel-caption">
<div align="center">
<h1>WHERE DOES MY MONEY GO?</h1>
<p class="lead">〜税金はどこへ行った?〜</p>
<br>
<iframe width="540" height="304" src="http://www.youtube.com/embed/yU1KakYDNo0" frameborder="0" allowfullscreen></iframe>
</div>
</div>
</div>
</div>
</div>
</div><!-- /.carousel -->
<!-- Marketing messaging and featurettes
================================================== -->
<!-- Wrap the rest of the page in another container to center all the content. -->
<div class="container marketing">
<!-- Three columns of text below the carousel -->
<div class="row">
<div class="span4">
<h2>Where Does My Money Go?とは?</h2>
<p>あなたの年収のうちいくらが市税や町税で、それらが何の目的に使われているのか、1日当たりの金額で可視化するWEBサービスです。</p>
<p><a class="btn" href="#about">詳細 »</a></p>
</div><!-- /.span4 -->
<div class="span4">
<h2>各地への広がり</h2>
<p>日本では2012年に横浜から始まり、現在では千葉、仙台、福岡、北名古屋など、8都市に広がっています。</p>
<p><a class="btn" href="#clones">詳細 »</a></p>
</div><!-- /.span4 -->
<div class="span4">
<h2>開発主体&サポート</h2>
<p>このプロジェクトは市民の手で運営されているのが最大の特徴です。是非あなたが住んでいる街のWhere Does My Money Go? を立ち上げてみましょう!</p>
<p><a class="btn" href="#dev">詳細 »</a></p>
</div><!-- /.span4 -->
</div><!-- /.row -->
<!-- START THE FEATURETTES -->
<hr class="featurette-divider">
<div class="featurette">
<a name="about"></a><h2 class="featurette-heading">Where Does My Money Go?<span class="muted">とは?</span></h2>
<p class="lead">あなたの年収のうちいくらが市税や町税で、それらが何の目的に使われているのか、1日当たりの金額で可視化するWEBサービスです。<br>
このサービスを立ち上げた目的は、納税者である国民一人ひとりが、支払っている税金の使われ方を具体的に理解し、税金の使われ方を決める当事者として責任ある意見を述べることを手助けすることです。私達は、国民一人ひとりが、公共サービスにおける受益と負担の関係を数字で理解したうえで、私ならこう税金を使って欲しいという具体的で責任のある意見を述べることができるようなることが、日本の財政を健全化させ、日本を新たな成長へと導く近道に違いないと考えています。
現在のヴァージョンでは、県市町村といった、いわゆる地方自治体の財政データを扱えるようになっています。<br>
<div align="center">
<img src="img/screenshot.png" alt="" width="750px">
</div>
</p>
</div>
<hr class="featurette-divider">
<div class="featurette">
<a name="clones"></a><h2 class="featurette-heading">各地への広がり<span class="muted"></span></h2>
<p class="lead">
<ul>
<li>横浜市版 <a href="http://spending.jp/" target="_blank">http://spending.jp/</a></li>
<li>千葉市版 <a href="http://chiba.spending.jp/" target="_blank">http://chiba.spending.jp/</a></li>
<li>仙台市版 <a href="http://sendai.spending.jp/" target="_blank">http://sendai.spending.jp/</a></li>
<li>福岡市版 <a href="http://fukuoka.spending.jp/" target="_blank">http://fukuoka.spending.jp/</a></li>
<li>北名古屋市版 <a href="http://kitanagoya.spending.jp/" target="_blank">http://kitanagoya.spending.jp/</a></li>
<li>宮城県南三陸町 <a href="http://minamisanriku-cho.spending.jp/" target="_blank">http://minamisanriku-cho.spending.jp/</a></li>
<li>北海道江別市 <a href="http://ebetsu.spending.jp/" target="_blank">http://ebetsu.spending.jp/</a></li>
<li>北海道札幌市 <a href="http://sapporo.spending.jp/" target="_blank">http://sapporo.spending.jp/</a></li>
</ul>
</p>
</div>
<hr class="featurette-divider">
<div class="featurette">
<a name="dev"></a><h2 class="featurette-heading">開発主体は誰?<span class="muted"></span></h2>
<p class="lead">このプロジェクトは市民の手で運営されているのが最大の特徴であり、今後、更になるデータの収集、分析を実施したいと考えています。<br>
もし、WEBサービスの開発経験がある方なら、是非あなたが住んでいる街のWhere Does My Money Go? を立ち上げてみましょう!こちらのページに、基本的な立ち上げ手法が載っていますから、参考にしてください。<br>
<br>
</p>
<div class="featurette">
<h2 class="featurette-heading">自分の街のバージョンを立ち上げたい方へ<span class="muted"></span></h2>
<p class="lead">このサイトのソースコードは、Open Definitionの定義に沿っていれば、どなたでも利用、改変、及び再配布が可能です。以下に、このサイトをコピーして独自のサイトを作る為のドキュメントがありますので、是非ご自由にお使いください。 あなたのサイトを作成したら、是非御連絡いただければと思います。<br>
<h4>ドキュメント</h4>
<ul>
<li><a href="http://www.slideshare.net/HiroyukiSato1/guide-for-building-a-spendingjp-site-with-team-members" target="_blank">スライド:Guide for building a spending.jp site with team members from Hiroyuki Sato</a></li>
<li><a href="http://qiita.com/items/d1cfa971fbbc09777d20" target="_blank">Spending.jp クローンサイトの立ち上げ手順 (OpenSpending 対応版) - Qiita</a></li>
<li><a href="http://qiita.com/items/4adb658c627d2e6d48e4" target="_blank">OpenSpendingへの予算データの登録方法 - Qiita</a></li>
<li><a href="https://docs.google.com/document/d/19HSh1b4SgT500AIOCRwpVhCmvP5LmC6ZrTEsYYL2VoU/edit" target="_blank">Windows PC での「Spending.jp クローンサイトの立ち上げ手順 (OpenSpending 対応版)」実行マニュアル- Goodle Docs</a></li>
</ul>
</p>
</div>
<br>
<div class="featurette">
<h2 class="featurette-heading">サポート体制は?<span class="muted"></span></h2>
<p class="lead">開発者コミュニティのMLがあります。<br>
<a href="https://groups.google.com/forum/?fromgroups#!forum/spendingjp-dev" target="_blank"><button class="btn" type="button">Spending.jp サポートフォーラム</button></a>
</p>
</div>
<hr class="featurette-divider">
<div class="featurette">
<a name="dev"></a><h2 class="featurette-heading">このサイトは、どのような経緯で生まれたのですか?<span class="muted"></span></h2>
<p class="lead">Where Does My Money Go?</strong> はイギリスの <a href="http://www.wheredoesmymoneygo.org/">Where Does My Money Go?</a> を参考に、日本でも公共データのオープン化によって、地域社会を変え、日本社会を変え、世界にも影響を与え、貢献して行こうという思いを持って集まったメンバーによって構築、運営されています。イギリスの Where Does My Money Go? は <a href="http://okfn.org/">Open Knowledge Foundation</a> によって運営されています。<br>
日本では、<a href="http://okfn.jp" target="_blank">Open Knowledge Founation Japan</a>がサポートしています。
</p>
</div>
<!-- /END THE FEATURETTES -->
<!-- FOOTER -->
<hr class="featurette-divider">
<footer>
<div class="inner">
<div class="container">
<p>
Where Does My Money Go? (日本語版 ver.1.0.) は、イギリスの Open Knowledge Foundation が開発した Where Does My Money Go? (英語版) をベースに開発されています。Where Does My Money Go? プロジェクトは、公共データのオープン化を進める有志に支えられています。</p>
<ul class="footer-links span3 pull-left">
<li><a href="http://wheredoesmymoneygo.org">Where Does My Money Go?</a></li>
<li><a href="http://openspending.org">OpenSpending</a></li>
<li><a href="http://thedatahub.org">TheDataHub</a></li>
<li><a href="http://okfnlabs.org">OKFN Labs</a></li>
<!--li><a href="http://yourtopia.net">YourTopia</a></li-->
</ul>
<ul class="footer-links span3 pull-left">
<li><a href="team.html">Core team</a></li>
<li><a href="sources.html">Data sources</a> used on this site</li>
<!--li><a href="http://openspending.org/help/contact.html">Get in touch</a> and contribute</li-->
<li><a href="https://github.com/orezeni/wheredoesmymoneygo.yokohama">Code</a> and making your own</li>
<!--li><a href="http://okfn.org/privacy-policy/">Privacy Policy</a></li-->
</ul>
All <a href="http://creativecommons.org/licenses/by/3.0/">content</a>,
<a href="http://www.gnu.org/licenses/agpl.html">code</a>
and <a href="http://opendatacommons.org/licenses/odbl/">data</a> is
openly licensed in accordance with the
<a href="http://opendefinition.org/">open definition</a>.
<br/>
<a href="http://opendefinition.org"><img src="http://assets.okfn.org/images/ok_buttons/od_80x15_blue.png" alt="Open Content" /></a><br>
<br>
<strong><a href="http://okfn.jp" target="_blank">Open Knowledge Founation Japan</a>
</div>
</div>
</footer>
</div><!-- /.container -->
<!-- Le javascript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="js/jquery.js"></script>
<script src="js/bootstrap-transition.js"></script>
<script src="js/bootstrap-alert.js"></script>
<script src="js/bootstrap-modal.js"></script>
<script src="js/bootstrap-dropdown.js"></script>
<script src="js/bootstrap-scrollspy.js"></script>
<script src="js/bootstrap-tab.js"></script>
<script src="js/bootstrap-tooltip.js"></script>
<script src="js/bootstrap-popover.js"></script>
<script src="js/bootstrap-button.js"></script>
<script src="js/bootstrap-collapse.js"></script>
<script src="js/bootstrap-carousel.js"></script>
<script src="js/bootstrap-typeahead.js"></script>
<script>
!function ($) {
$(function(){
// carousel demo
$('#myCarousel').carousel()
})
}(window.jQuery)
</script>
<script src="js/holder/holder.js"></script>
</body>
</html>