mirror of https://github.com/freeCodeCamp/devdocs
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
85 lines
5.2 KiB
85 lines
5.2 KiB
app.templates.splash = """<div class="_splash-title">DevDocs</div>"""
|
|
|
|
<% if App.development? %>
|
|
app.templates.intro = """
|
|
<div class="_intro"><div class="_intro-message">
|
|
<a href="#" class="_intro-hide" data-hide-intro>Stop showing this message</a>
|
|
<h2 class="_intro-title">Hi there!</h2>
|
|
<p>Thanks for downloading DevDocs. Here are a few things you should know:
|
|
<ol class="_intro-list">
|
|
<li>Your local version of DevDocs won't self-update. Unless you're modifying the code,
|
|
I recommend using the hosted version at <a href="http://devdocs.io">devdocs.io</a>.
|
|
<li>Run <code>thor docs:list</code> to see all available documentations.
|
|
<li>Run <code>thor docs:download <name></code> to download documentations.
|
|
<li>Run <code>thor docs:download --installed</code> to update all downloaded documentations.
|
|
<li>To be notified about new versions, don't forget to <a href="https://github.com/Thibaut/devdocs/subscription">watch the repository</a> on GitHub.
|
|
<li>The <a href="https://github.com/Thibaut/devdocs/issues">issue tracker</a> is the preferred channel for bug reports and
|
|
feature requests. For everything else, use the <a href="https://groups.google.com/d/forum/devdocs">mailing list</a>.
|
|
<li>Contributions are welcome. See the <a href="https://github.com/Thibaut/devdocs/blob/master/CONTRIBUTING.md">guidelines</a>.
|
|
<li>DevDocs is licensed under the terms of the Mozilla Public License v2.0. For more information,
|
|
see the <a href="https://github.com/Thibaut/devdocs/blob/master/COPYRIGHT">COPYRIGHT</a> and
|
|
<a href="https://github.com/Thibaut/devdocs/blob/master/LICENSE">LICENSE</a> files.
|
|
<li>If you like the app, please consider supporting the project on <a href="https://gratipay.com/devdocs/">Gratipay</a>. Thanks!
|
|
</ol>
|
|
<p>Happy coding!
|
|
</div></div>
|
|
"""
|
|
<% else %>
|
|
app.templates.intro = """
|
|
<div class="_intro"><div class="_intro-message">
|
|
<a href="#" class="_intro-hide" data-hide-intro>Stop showing this message</a>
|
|
<h2 class="_intro-title">Welcome!</h2>
|
|
<p>DevDocs combines multiple API documentations in a fast, organized, and searchable interface.
|
|
Here's what you should know before you start:
|
|
<ol class="_intro-list">
|
|
<li>To enable more docs, click <a class="_intro-link" data-pick-docs>Select documentation</a> in the bottom left corner
|
|
<li>You don't have to use your mouse — see the list of <a href="/help#shortcuts">keyboard shortcuts</a>
|
|
<li>The search supports fuzzy matching (e.g. "bgcp" brings up "background-clip")
|
|
<li>To search a specific documentation, type its name (or an abbreviation), then Tab
|
|
<li>You can search using your browser's address bar — <a href="/help#browser_search">learn how</a>
|
|
<li>DevDocs works <a href="/offline">offline</a>, on mobile, and can be installed on <a href="https://chrome.google.com/webstore/detail/devdocs/mnfehgbmkapmjnhcnbodoamcioleeooe">Chrome</a>.
|
|
<li>For the latest news, follow <a href="https://twitter.com/DevDocs">@DevDocs</a>
|
|
<li>DevDocs is free and <a href="https://github.com/Thibaut/devdocs">open source</a>
|
|
<iframe class="_github-btn" src="//ghbtns.com/github-btn.html?user=Thibaut&repo=devdocs&type=watch&count=true" allowtransparency="true" frameborder="0" scrolling="0" width="100" height="20"></iframe>
|
|
<li>If you like the app, please consider supporting the project on <a href="https://gratipay.com/devdocs/">Gratipay</a>. Thanks!
|
|
</ol>
|
|
<p>Happy coding!
|
|
</div></div>
|
|
"""
|
|
<% end %>
|
|
|
|
app.templates.mobileNav = """
|
|
<nav class="_mobile-nav">
|
|
<a href="/offline" class="_mobile-nav-link">Offline</a>
|
|
<a href="/about" class="_mobile-nav-link">About</a>
|
|
<a href="/news" class="_mobile-nav-link">News</a>
|
|
<a href="/help" class="_mobile-nav-link">Help</a>
|
|
</nav>
|
|
"""
|
|
|
|
app.templates.mobileIntro = """
|
|
<div class="_mobile-intro">
|
|
<h2 class="_intro-title">Welcome!</h2>
|
|
<p>DevDocs combines multiple API documentations in a fast, organized, and searchable interface.
|
|
Here's what you should know before you start:
|
|
<ol class="_intro-list">
|
|
<li>To pick your docs, click <a data-pick-docs>Select documentation</a> at the bottom of the menu
|
|
<li>The search supports fuzzy matching (e.g. "bgcp" matches "background-clip")
|
|
<li>To search a specific documentation, type its name (or an abbreviation), then Space
|
|
<li>For the latest news, follow <a href="https://twitter.com/DevDocs">@DevDocs</a>
|
|
<li>DevDocs is <a href="https://github.com/Thibaut/devdocs">open source</a>
|
|
</ol>
|
|
<p>Happy coding!
|
|
<a class="_intro-hide" data-hide-intro>Stop showing this message</a>
|
|
</div>
|
|
"""
|
|
|
|
app.templates.androidWarning = """
|
|
<div class="_mobile-intro">
|
|
<h2 class="_intro-title">Hi there</h2>
|
|
<p>DevDocs is running inside an Android WebView. Some features may not work properly.
|
|
<p>If you downloaded an app called DevDocs on the Play Store, please uninstall it — it's made by someone who is using (and profiting from) the name DevDocs without permission.
|
|
<p>To install DevDocs on your phone, visit <a href="http://devdocs.io" target="_blank" rel="noopener">devdocs.io</a> in Chrome and select "Add to home screen" in the menu.
|
|
</div>
|
|
"""
|