Skip to content

Commit fa2cdba

Browse files
committed
Add code of conduct
1 parent b219c8b commit fa2cdba

File tree

4 files changed

+116
-0
lines changed

4 files changed

+116
-0
lines changed

2018/index.html

+3
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@
4545
<li class="nav-item">
4646
<a class="nav-link" href="#link-staff">Staff</a>
4747
</li>
48+
<li class="nav-item">
49+
<a class="nav-link" href="../coc">code of conduct</a>
50+
</li>
4851
<!--
4952
<li class="nav-item">
5053
<a class="nav-link disabled" href="#">Disabled</a>

coc.html

+95
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
---
2+
---
3+
<!DOCTYPE html>
4+
<html>
5+
<head>
6+
<meta charset='utf-8'>
7+
<meta http-equiv="X-UA-Compatible" content="chrome=1">
8+
<meta name="viewport" content="width=640" />
9+
10+
<link rel="stylesheet" href="../stylesheets/core.css" media="screen"/>
11+
<link rel="stylesheet" href="../stylesheets/mobile.css" media="handheld, only screen and (max-device-width:640px)"/>
12+
<link rel="stylesheet" href="../stylesheets/pygment_trac.css"/>
13+
14+
<script type="text/javascript" src="../javascripts/modernizr.js"></script>
15+
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
16+
<script type="text/javascript" src="../javascripts/headsmart.min.js"></script>
17+
<script type="text/javascript">
18+
$(document).ready(function () {
19+
$('#main_content').headsmart()
20+
})
21+
</script>
22+
<title>VimConf code of conduct</title>
23+
</head>
24+
25+
<body>
26+
27+
<a id="forkme_banner" href="https://github.com/vim-jp/vimconf.org">View on GitHub</a>
28+
<div class="shell">
29+
30+
<header>
31+
<span class="ribbon-outer">
32+
<span class="ribbon-inner">
33+
<h1>VimConf</h1>
34+
<h2>An International Vim Conference</h2>
35+
</span>
36+
<span class="left-tail"></span>
37+
<span class="right-tail"></span>
38+
</span>
39+
</header>
40+
41+
<span class="banner-fix"></span>
42+
<section id="main_content">
43+
<div class="mdl-layout__tab-panel" id="coc">
44+
45+
<section class="section--center mdl-grid mdl-grid--no-spacing mdl-shadow--2dp">
46+
<div class="mdl-card mdl-cell mdl-cell--12-col">
47+
<div class="mdl-card__supporting-text mdl-grid mdl-grid--no-spacing">
48+
<h4 class="mdl-cell mdl-cell--12-col">Code of Conduct</h4>
49+
<div>
50+
<p>
51+
<a href="#coc_ja">日本語版はこちら / Japanese Version</a>
52+
</p>
53+
</div>
54+
<div>
55+
{% capture coc_en %}{% include coc/en.md %}{% endcapture %}
56+
{{ coc_en | markdownify }}
57+
</div>
58+
</div>
59+
</div>
60+
61+
<a name="coc_ja"></a>
62+
<section class="section--center mdl-grid mdl-grid--no-spacing mdl-shadow--2dp">
63+
<div class="mdl-card mdl-cell mdl-cell--12-col">
64+
<div class="mdl-card__supporting-text mdl-grid mdl-grid--no-spacing">
65+
<h4 class="mdl-cell mdl-cell--12-col">行動規範</h4>
66+
<div>
67+
{% capture coc_ja %}{% include coc/ja.md %}{% endcapture %}
68+
{{ coc_ja | markdownify }}
69+
</div>
70+
</div>
71+
</div>
72+
</section>
73+
</div>
74+
75+
<strong><a class="top" href='../'>top</a></strong>
76+
</section>
77+
78+
<footer>
79+
<span class="ribbon-outer">
80+
<span class="ribbon-inner">
81+
<p>this project by <a href="https://github.com/vim-jp">vim-jp</a> can be found on <a href="https://github.com/vim-jp/vimconf.org">GitHub</a></p>
82+
</span>
83+
<span class="left-tail"></span>
84+
<span class="right-tail"></span>
85+
</span>
86+
<p>Generated with <a href="http://pages.github.com">GitHub Pages</a> using Merlot</p>
87+
<span class="octocat"></span>
88+
</footer>
89+
90+
</div>
91+
92+
{% include google-analytics.html %}
93+
94+
</body>
95+
</html>

index.html

+1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ <h2>An International Vim Conference</h2>
4949
<a class="to-year" href='./2015/'>VimConf 2015</a>
5050
<a class="to-year" href='./2014/'>VimConf 2014</a>
5151
<a class="to-year" href='./2013/'>VimConf 2013</a>
52+
<a class="coc" href='./coc/'>code of conduct</a>
5253
</section>
5354

5455
<footer>

stylesheets/screen.css

+17
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,23 @@ section#main_content:before{
283283
display: block;
284284
}
285285

286+
section#main_content .top {
287+
font-family: sans-serif;
288+
font-size: 125%;
289+
display: block;
290+
text-align: center;
291+
color: #96aab4;
292+
}
293+
294+
section#main_content .coc {
295+
font-family: sans-serif;
296+
font-size: 125%;
297+
display: block;
298+
padding-top: 25px;
299+
text-align: center;
300+
color: #96aab4;
301+
}
302+
286303
section#main_content .to-year {
287304
font-size: 200%;
288305
display: block;

0 commit comments

Comments
 (0)