Skip to content

Commit

Permalink
Add code of conduct
Browse files Browse the repository at this point in the history
  • Loading branch information
guyon committed Aug 28, 2018
1 parent b219c8b commit fa2cdba
Show file tree
Hide file tree
Showing 4 changed files with 116 additions and 0 deletions.
3 changes: 3 additions & 0 deletions 2018/index.html
Expand Up @@ -45,6 +45,9 @@
<li class="nav-item">
<a class="nav-link" href="#link-staff">Staff</a>
</li>
<li class="nav-item">
<a class="nav-link" href="../coc">code of conduct</a>
</li>
<!--
<li class="nav-item">
<a class="nav-link disabled" href="#">Disabled</a>
Expand Down
95 changes: 95 additions & 0 deletions coc.html
@@ -0,0 +1,95 @@
---
---
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta name="viewport" content="width=640" />

<link rel="stylesheet" href="../stylesheets/core.css" media="screen"/>
<link rel="stylesheet" href="../stylesheets/mobile.css" media="handheld, only screen and (max-device-width:640px)"/>
<link rel="stylesheet" href="../stylesheets/pygment_trac.css"/>

<script type="text/javascript" src="../javascripts/modernizr.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript" src="../javascripts/headsmart.min.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$('#main_content').headsmart()
})
</script>
<title>VimConf code of conduct</title>
</head>

<body>

<a id="forkme_banner" href="https://github.com/vim-jp/vimconf.org">View on GitHub</a>
<div class="shell">

<header>
<span class="ribbon-outer">
<span class="ribbon-inner">
<h1>VimConf</h1>
<h2>An International Vim Conference</h2>
</span>
<span class="left-tail"></span>
<span class="right-tail"></span>
</span>
</header>

<span class="banner-fix"></span>
<section id="main_content">
<div class="mdl-layout__tab-panel" id="coc">

<section class="section--center mdl-grid mdl-grid--no-spacing mdl-shadow--2dp">
<div class="mdl-card mdl-cell mdl-cell--12-col">
<div class="mdl-card__supporting-text mdl-grid mdl-grid--no-spacing">
<h4 class="mdl-cell mdl-cell--12-col">Code of Conduct</h4>
<div>
<p>
<a href="#coc_ja">日本語版はこちら / Japanese Version</a>
</p>
</div>
<div>
{% capture coc_en %}{% include coc/en.md %}{% endcapture %}
{{ coc_en | markdownify }}
</div>
</div>
</div>

<a name="coc_ja"></a>
<section class="section--center mdl-grid mdl-grid--no-spacing mdl-shadow--2dp">
<div class="mdl-card mdl-cell mdl-cell--12-col">
<div class="mdl-card__supporting-text mdl-grid mdl-grid--no-spacing">
<h4 class="mdl-cell mdl-cell--12-col">行動規範</h4>
<div>
{% capture coc_ja %}{% include coc/ja.md %}{% endcapture %}
{{ coc_ja | markdownify }}
</div>
</div>
</div>
</section>
</div>

<strong><a class="top" href='../'>top</a></strong>
</section>

<footer>
<span class="ribbon-outer">
<span class="ribbon-inner">
<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>
</span>
<span class="left-tail"></span>
<span class="right-tail"></span>
</span>
<p>Generated with <a href="http://pages.github.com">GitHub Pages</a> using Merlot</p>
<span class="octocat"></span>
</footer>

</div>

{% include google-analytics.html %}

</body>
</html>
1 change: 1 addition & 0 deletions index.html
Expand Up @@ -49,6 +49,7 @@ <h2>An International Vim Conference</h2>
<a class="to-year" href='./2015/'>VimConf 2015</a>
<a class="to-year" href='./2014/'>VimConf 2014</a>
<a class="to-year" href='./2013/'>VimConf 2013</a>
<a class="coc" href='./coc/'>code of conduct</a>
</section>

<footer>
Expand Down
17 changes: 17 additions & 0 deletions stylesheets/screen.css
Expand Up @@ -283,6 +283,23 @@ section#main_content:before{
display: block;
}

section#main_content .top {
font-family: sans-serif;
font-size: 125%;
display: block;
text-align: center;
color: #96aab4;
}

section#main_content .coc {
font-family: sans-serif;
font-size: 125%;
display: block;
padding-top: 25px;
text-align: center;
color: #96aab4;
}

section#main_content .to-year {
font-size: 200%;
display: block;
Expand Down

0 comments on commit fa2cdba

Please sign in to comment.