Skip to content
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

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
53 changes: 53 additions & 0 deletions templates/base.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
<!DOCTYPE html>
<html>

<head>
<meta charset='utf-8' />
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why single quotes here?

<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">
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

not absolutely necessary, but for consistency we should either /> this link tag or remove the /> from the others.


<title>Meetups</title>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

s/Meetups/KNODE/g

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

(or KNODE | Meetups or Meetups | KNODE)

</head>

<body>
<h1>Meetups</h1>
<!--<div>MAP PLACEHOLDER</div>-->
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

<div id="stage"></div> would be useful here.

<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>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Elements that are children of ul or ol should be li's.

<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>