-
Notifications
You must be signed in to change notification settings - Fork 1
A better looking index page. #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,112 @@ | ||
<title>Friendly JS Discussion channel</title> | ||
<link rel="icon" type="image/png" href="./js.png"> | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>##js - Friendly JS discussion channel</title> | ||
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon"> | ||
<link rel="icon" href="favicon.ico" type="image/x-icon"> | ||
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,400italic' rel='stylesheet' type='text/css'> | ||
<style> | ||
* { | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
-moz-box-sizing: border-box; | ||
} | ||
|
||
<h1>##JS</h1> | ||
<img src="./js.png"> | ||
body { | ||
font-family: Source Sans, sans-serif; | ||
color: #424242; | ||
background: #fafafa; | ||
line-height: 1.4em; | ||
margin-bottom: 3em; | ||
} | ||
|
||
<h2>Mission Statement</h2> | ||
<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. | ||
<cite><a href="http://aredridel.dinhe.net/2014/06/15/an-unofficial-mission-statement-for-the-node-js-irc-channel/">source</a></cite> | ||
a { | ||
color: #2980b9; | ||
text-decoration: none; | ||
} | ||
a:hover { | ||
color: #3498db; | ||
text-decoration: underline; | ||
} | ||
a:visited { | ||
color: #8e44ad; | ||
} | ||
|
||
<h2>CoC</h2> | ||
#header, #content { | ||
width: 720px; | ||
margin: 0 auto; | ||
} | ||
|
||
<h2>Trolling Policy</h2> | ||
#header { | ||
margin-bottom: 1em; | ||
margin-top: 1em; | ||
text-align: center; | ||
} | ||
.highlight { | ||
margin: 1em 0 2em 1em; | ||
border-left: 5px solid #ecf0f1; | ||
padding-left: 1em; | ||
font-size: 1.5em; | ||
line-height: 1.3em; | ||
color: #7f8c8d; | ||
} | ||
.highlight cite { | ||
margin-top: 1em; | ||
display: block; | ||
text-align: right; | ||
font-size: 0.8em; | ||
font-style: normal; | ||
color: #95a5a6; | ||
} | ||
|
||
h2 { | ||
font-weight: 200; | ||
font-size: 2em; | ||
color: #2c3e50; | ||
margin: 1.5em 0 0.5em 0; | ||
line-height: 1.2em; | ||
} | ||
|
||
dt { | ||
margin-top: 1.5em; | ||
font-weight: 600; | ||
text-transform: uppercase; | ||
} | ||
dd { | ||
color: #7f8c8d; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div id="header"> | ||
<img id="logo" src="js.png"> | ||
</div> | ||
<div id="content"> | ||
<blockquote class="highlight"> | ||
<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. | ||
</p> | ||
<cite> | ||
Adapted from | ||
<a href="http://aredridel.dinhe.net/2014/06/15/an-unofficial-mission-statement-for-the-node-js-irc-channel/"> | ||
Aria's #node.js unofficial mission statement | ||
</a> | ||
</cite> | ||
</blockquote> | ||
|
||
<h2>Important links</h2> | ||
<dl> | ||
<dt><a href="">Code of Conduct</a></dt> | ||
<dd>##js aims to be welcoming for everyone. Behaviour that make people | ||
feel unwelcome/uncomfortable should be kept out of the channel.</dd> | ||
|
||
<dt><a href="">Policy on Trolling</a></dt> | ||
<dd>Read it. Don't break it.</dd> | ||
</dl> | ||
</div> | ||
</body> | ||
</html> |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we're losing the actual icon here.