-
Notifications
You must be signed in to change notification settings - Fork 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
Create base template for sub-sections of knode.io #4
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
|
||
<head> | ||
<meta charset='utf-8' /> | ||
<meta http-equiv="X-UA-Compatible" content="chrome=1" /> | ||
<meta name="description" content="Meetups: A place to put info about your local meetup. Anything node-flavored JS welcome!" /> | ||
|
||
<link rel="stylesheet" type="text/css" media="screen" href="stylesheets/stylesheet.css"> | ||
<link rel="stylesheet" href="http://knode.io/style/assets/css/bootstrap.min.css" /> | ||
<link rel="stylesheet" href="http://knode.io/style/assets/css/ostrich-sans/stylesheet.css" /> | ||
<link rel="stylesheet" href="http://knode.io/style/assets/css/main.css" /> | ||
<link rel="stylesheet" media="screen" href="stylesheets/site-specific.css"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. not absolutely necessary, but for consistency we should either |
||
|
||
<title>Meetups</title> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. (or |
||
</head> | ||
|
||
<body> | ||
<h1>Meetups</h1> | ||
<!--<div>MAP PLACEHOLDER</div>--> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
<section> | ||
<article> | ||
<!-- This is where the listings go. They will be sorted in alphabetical order by city.--> | ||
<h3>Portland, OR</h3> | ||
<!-- within each city directory, list the meetups in alphabetical order by group name--> | ||
<ul> | ||
<!--Please map these to the markdown we require for input--> | ||
<h5><a href="http://pdxnode.org">PDXNode</a></h5> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Elements that are children of |
||
<a href="https://github.com/PDXNode/pdxnode">Contribute</a> | ||
<li>Organizers: Ben, Tracy, Chris, Wraithan, Mean Dave, Dave, Adam, Nick, Adron, Justin</li> | ||
<li>Bi-monthly presentation and hack nights. We also hold workshops & nodebots events</li> | ||
<li>Talks are submitted via PR and reviewed by organizers. Organizers seek out and encourage talks from community members.</li> | ||
<li>#pdxnode on freenode.irc.net</li> | ||
<li><a href="https://github.com/PDXNode/pdxnode/blob/master/code-of-conduct.md">Code of Conduct</a></li> | ||
</ul> | ||
<h3>AnotherCity, USA</h3> | ||
<!-- within each city directory, list the meetups in alphabetical order by group name--> | ||
<ul> | ||
<!--Please map these to the markdown we require for input--> | ||
<h5><a href="http://google.com">AwesomeGroup</a></h5> | ||
<a href="https://github.com/PDXNode/">Contribute</a> | ||
<li>Organizers: The Carebears</li> | ||
<li>Bi-monthly presentation and hack nights. We also hold workshops & nodebots events</li> | ||
<li>Talks are submitted via PR and reviewed by organizers. Organizers seek out and encourage talks from community members.</li> | ||
<li>#winning on freenode.irc.net</li> | ||
<li><a href="https://github.com/PDXNode/pdxnode/blob/master/code-of-conduct.md">Code of Conduct</a></li> | ||
</ul> | ||
</article> | ||
</section> | ||
</body> | ||
|
||
</html> | ||
|
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.
why single quotes here?