forked from agsdot/mithril
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommunity.html
90 lines (89 loc) · 3.8 KB
/
community.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!doctype html>
<html>
<head>
<title>Community - Mithril</title>
<meta name="description" value="Mithril.js - a Javascript Framework for Building Brilliant Applications" />
<link href="lib/prism/prism.css" rel="stylesheet" />
<link href="style.css" rel="stylesheet" />
</head>
<body>
<header>
<nav class="container">
<a href="index.html" class="logo"><span>○</span> Mithril</a>
<a href="getting-started.html">Guide</a>
<a href="mithril.html">API</a>
<a href="community.html">Community</a>
<a href="http://lhorie.github.io/mithril-blog">Learn</a>
<a href="mithril.min.zip">Download</a>
<a href="http://github.com/lhorie/mithril.js" target="_blank">Github</a>
</nav>
</header>
<main>
<section class="content">
<div class="container">
<div class="row">
<div class="col(3,3,12)">
<h2 id="core-topics">Core Topics</h2>
<ul>
<li><a href="installation.html">Installation</a></li>
<li><a href="getting-started.html">Getting Started</a></li>
<li><a href="routing.html">Routing</a></li>
<li><a href="web-services.html">Web Services</a></li>
<li><a href="components.html">Components</a></li>
</ul>
<h2 id="advanced-topics.html">Advanced Topics</h2>
<ul>
<li><a href="auto-redrawing.html">The Auto-Redrawing System</a></li>
<li><a href="integration.html">Integrating with Other Libraries</a></li>
<li><a href="optimizing-performance.html">Compiling Templates</a></li>
</ul>
<h2 id="misc">Misc</h2>
<ul>
<li><a href="comparison.html">Differences from Other MVC Frameworks</a></li>
<li><a href="benchmarks.html">Benchmarks</a></li>
<li><a href="practices.html">Good Practices</a></li>
<li><a href="tools.html">Useful Tools</a></li>
</ul>
</div>
<div class="col(9,9,12)">
<h2 id="community">Community</h2>
<h3 id="learn-mithril">Learn Mithril</h3>
<p>Read Mithril tutorials and articles about web app development.</p>
<p>Go to the <a href="http://lhorie.github.io/mithril-blog">Learn Mithril site</a></p>
<hr>
<h3 id="gitter">Gitter</h3>
<p>There's a <a href="https://gitter.im/lhorie/mithril.js">Gitter chat room</a>. This is a great place to ask questions, discuss ideas and connect with Mithril users.</p>
<p>You can sign in with your Github credentials. </p>
<hr>
<h3 id="mailing-list">Mailing List</h3>
<p>Looking for a place to talk about Mithril? Suggestions?</p>
<p>Feel free to post on the <a href="https://groups.google.com/forum/#!forum/mithriljs">mailing list</a></p>
<hr>
<h3 id="stackoverflow">StackOverflow</h3>
<p>Looking for help on StackOverflow? Tag your questions with <code>mithril.js</code>.</p>
<p>Want to help fellow Mithril developers and gain karma while at it? <a href="http://stackoverflow.com/questions/tagged/mithril.js">Keep an eye on the tagged questions</a></p>
<hr>
<h3 id="irc">IRC</h3>
<p>Join the #mithriljs IRC channel on <a href="http://webchat.freenode.net">Freenode</a>.</p>
<hr>
<h3 id="projects-and-snippets">Projects and Snippets</h3>
<p>A collection of projects and snippets created by Mithril users. A great place to find useful tools.</p>
<p>Go to the <a href="https://github.com/lhorie/mithril.js/wiki/Community-Projects-and-Snippets">Mithril wiki</a></p>
<hr>
<h3 id="bug-tracker">Bug Tracker</h3>
<p>You can file bugs in the <a href="https://github.com/lhorie/mithril.js/issues?state=open">issues page on Github</a></p>
</div>
</div>
</div>
</section>
</main>
<footer>
<div class="container">
Released under the <a href="http://opensource.org/licenses/MIT" target="_blank">MIT license</a>
<br />© 2014 Leo Horie
</div>
</footer>
<script src="lib/prism/prism.js"></script>
</body>
</html>