✨ Glad to see you here! ✨
- Talk to us directly in the Moloch-FPC Slack
First, checkout this repo!
This site is created using Jekyll. Get started with Jekyll here.
Once you have jekyll and the bundler installed, run
bundle install
Then run
bundle exec jekyll serve
Once you have built the site and made it available on a local server, browse to the localhost site in your browser.
http://127.0.0.1:4000/
Then, edit the HTML/JS/CSS/MD in your favorite editor!
The FAQs, docs, and page styles are important. Please help improve and add to them.
Before submitting a bug report:
- Ensure the bug was not already reported by searching for existing issues in Moloch
- If an issues is already open, make a comment that you are experiencing the same thing and provide any additional details
Bugs are tracked as GitHub Issues. Please follow these guidelines when submitting a bug:
- Provide a clear and descriptive title
- Describe the exact steps to reproduce the problem
- Explain the expected behavior
- Fill out the issue template completely
Feature requests include new features and minor improvements to existing functionality.
Feature requests are tracked as GitHub Issues. Please follow these guidelines when submitting a feature request:
- Provide a clear and descriptive title
- Describe the suggested feature in as much detail as possible
- Use examples to help us understand the use case of the feature
- If you are requesting a minor improvement, describe the current behavior and why it is not sufficient
- If possible, provide examples of where this feature exists elsewhere in other tools
- Follow the directions in the issue template
We welcome all collaboration! If you can fix it or implement it, please do! 🔨
To better help us review your pull request, please follow these guidelines:
- Provide a clear and descriptive title
- Clearly describe the problem and solution
- Include the relevant issue number(s) if applicable
- Make sure the HTML and rendered page conform the style guide (below)
This site uses the Bootstrap toolkit for all its style and layout. It's a good idea to get familiar with this toolkit before contributing.
The Docs pages are created using Jekyll and kramdown. Get started with Jekyll here. Check out kramdown syntax here.
There are some things to consider when adding a new doc page:
- Start every new doc page with this content:
---
title: New Awesome Page Title
layout: wiki
permalink: "/awesomepage"
---
Note: Make sure the permalink is unique.
- Want a table of contents? Use this scaffolding around your content:
- TOC
{:toc}
{: .left-nav .d-none .d-sm-block .pt-3 .with-footer .wiki-toc }
<div class="collapse-btn d-none d-sm-block"
onclick="toggleToc()">
<span class="fa fa-angle-double-left">
</span>
</div>
<div class="full-height-container with-footer pt-3 pr-2 pl-2 pb-3" markdown="1">
content goes here
</div>
Info: Want to exclude a section from your table of contents? Just add {: .no_toc}
under the heading you want to exclude. There must be a newline after it!
- Just want a full page of information? Use this scaffolding around your content:
<div class="full-height-and-width-container with-footer p-3" markdown="1">
content goes here
</div>
- Lastly, you must add it to the docs home page (
_wiki/home.md
)! Like so:
- [New Awesome Page Title](awesomepage)
All of the site's styles are included in the index.css
file. If you add styles to this file, make them as specific as possible and include a comment to describe their intended purpose. For example do this:
/* make the background purple for the super awesome content */
body.faq-body div.super-awesome-style {
background-color: purple;
}
Not this:
.super-awesome-style {
background-color: purple;
}
The FAQ page is made up of two main parts, the table of contents on the left and the main content. For every answered question, there should be a corresponding table of contents link that navigates to the question in the main content. Make sure to put the link in the correct subsection; when in doubt, put it in the General section. Here's what a link should look like:
<a class="nav-link nested"
href="#case-sensitive-id"
title="Example TOC Link">
Example TOC Link
</a>
And the corresponding section in the main content should look like this:
<h3 id="case-sensitive-id">
Example TOC Link
<span class="fa fa-link small copy-link cursor-copy"
onclick="copyLink(this)">
</span>
</h3>
<p>
Answer goes here...
</p>
Note: the
href="#id"
link in the table of contents MUST match theid
of the section within the main content (case sensitive).
Note: make sure to include the copy link span.
If a question has multiple sections, wrap the additonal sections in another div that has additional margins:
<h3 id="main-question">
Main Question
<span class="fa fa-link small copy-link cursor-copy"
onclick="copyLink(this)">
</span>
</h3>
<p>
Main question text that tells the reader to read the other sections:
</p>
<div class="ml-5 mr-5">
<h4>
First section
</h4>
<p>
First section answer...
</p>
<h4>
Second section
</h4>
<p>
Second section answer...
</p>
</div>
Note: the main section is an
h3
header, the subsections areh4
.
Note: there is no need to add links in the table of contents to the subsections, just link to the main question.
Andy & Elyse