|
1 |
| -<title>Friendly JS Discussion channel</title> |
2 |
| -<link rel="icon" type="image/png" href="./js.png"> |
| 1 | +<!DOCTYPE html> |
| 2 | +<html> |
| 3 | + <head> |
| 4 | + <meta charset="utf-8"> |
| 5 | + <title>##js - Friendly JS discussion channel</title> |
| 6 | + <link rel="shortcut icon" href="favicon.ico" type="image/x-icon"> |
| 7 | + <link rel="icon" href="favicon.ico" type="image/x-icon"> |
| 8 | + <link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,400italic' rel='stylesheet' type='text/css'> |
| 9 | + <style> |
| 10 | +* { |
| 11 | + margin: 0; |
| 12 | + padding: 0; |
| 13 | + box-sizing: border-box; |
| 14 | + -moz-box-sizing: border-box; |
| 15 | +} |
3 | 16 |
|
4 |
| -<h1>##JS</h1> |
5 |
| -<img src="./js.png"> |
| 17 | +body { |
| 18 | + font-family: Source Sans, sans-serif; |
| 19 | + color: #424242; |
| 20 | + background: #fafafa; |
| 21 | + line-height: 1.4em; |
| 22 | + margin-bottom: 3em; |
| 23 | +} |
6 | 24 |
|
7 |
| -<h2>Mission Statement</h2> |
8 |
| -<p>To support users of javascript to create a collaborative, creative, diverse, interested, and inter-generational sustainable culture of programmers of all skill levels, with room and encougragement to grow. |
9 |
| -<cite><a href="http://aredridel.dinhe.net/2014/06/15/an-unofficial-mission-statement-for-the-node-js-irc-channel/">source</a></cite> |
| 25 | +a { |
| 26 | + color: #2980b9; |
| 27 | + text-decoration: none; |
| 28 | +} |
| 29 | +a:hover { |
| 30 | + color: #3498db; |
| 31 | + text-decoration: underline; |
| 32 | +} |
| 33 | +a:visited { |
| 34 | + color: #8e44ad; |
| 35 | +} |
10 | 36 |
|
11 |
| -<h2>CoC</h2> |
| 37 | +#header, #content { |
| 38 | + width: 720px; |
| 39 | + margin: 0 auto; |
| 40 | +} |
12 | 41 |
|
13 |
| -<h2>Trolling Policy</h2> |
| 42 | +#header { |
| 43 | + margin-bottom: 1em; |
| 44 | + margin-top: 1em; |
| 45 | + text-align: center; |
| 46 | +} |
| 47 | +.highlight { |
| 48 | + margin: 1em 0 2em 1em; |
| 49 | + border-left: 5px solid #ecf0f1; |
| 50 | + padding-left: 1em; |
| 51 | + font-size: 1.5em; |
| 52 | + line-height: 1.3em; |
| 53 | + color: #7f8c8d; |
| 54 | +} |
| 55 | +.highlight cite { |
| 56 | + margin-top: 1em; |
| 57 | + display: block; |
| 58 | + text-align: right; |
| 59 | + font-size: 0.8em; |
| 60 | + font-style: normal; |
| 61 | + color: #95a5a6; |
| 62 | +} |
| 63 | + |
| 64 | +h2 { |
| 65 | + font-weight: 200; |
| 66 | + font-size: 2em; |
| 67 | + color: #2c3e50; |
| 68 | + margin: 1.5em 0 0.5em 0; |
| 69 | + line-height: 1.2em; |
| 70 | +} |
| 71 | + |
| 72 | +dt { |
| 73 | + margin-top: 1.5em; |
| 74 | + font-weight: 600; |
| 75 | + text-transform: uppercase; |
| 76 | +} |
| 77 | +dd { |
| 78 | + color: #7f8c8d; |
| 79 | +} |
| 80 | + </style> |
| 81 | + </head> |
| 82 | + <body> |
| 83 | + <div id="header"> |
| 84 | + <img id="logo" src="js.png"> |
| 85 | + </div> |
| 86 | + <div id="content"> |
| 87 | + <blockquote class="highlight"> |
| 88 | + <p>To support users of javascript to create a collaborative, creative, |
| 89 | + diverse, interested, and inter-generational sustainable culture of |
| 90 | + programmers of all skill levels, with room and encougragement to |
| 91 | + grow. |
| 92 | + </p> |
| 93 | + <cite> |
| 94 | + Adapted from |
| 95 | + <a href="http://aredridel.dinhe.net/2014/06/15/an-unofficial-mission-statement-for-the-node-js-irc-channel/"> |
| 96 | + Aria's #node.js unofficial mission statement |
| 97 | + </a> |
| 98 | + </cite> |
| 99 | + </blockquote> |
| 100 | + |
| 101 | + <h2>Important links</h2> |
| 102 | + <dl> |
| 103 | + <dt><a href="http://confcodeofconduct.com/">Code of Conduct</a></dt> |
| 104 | + <dd>##js aims to be welcoming for everyone. Behaviour that make people |
| 105 | + feel unwelcome/uncomfortable should be kept out of the channel.</dd> |
| 106 | + |
| 107 | + <dt><a href="http://blog.izs.me/post/30036893703/policy-on-trolling">Policy on Trolling</a></dt> |
| 108 | + <dd>Read it. Don't break it.</dd> |
| 109 | + </dl> |
| 110 | + </div> |
| 111 | + </body> |
| 112 | +</html> |
0 commit comments