aboutsummaryrefslogtreecommitdiffstats
path: root/_includes/new_user_guide.html
diff options
context:
space:
mode:
Diffstat (limited to '_includes/new_user_guide.html')
-rw-r--r--_includes/new_user_guide.html68
1 files changed, 68 insertions, 0 deletions
diff --git a/_includes/new_user_guide.html b/_includes/new_user_guide.html
new file mode 100644
index 0000000..4c3a88e
--- /dev/null
+++ b/_includes/new_user_guide.html
@@ -0,0 +1,68 @@
+<div id="nug" class="container-fluid">
+ <div class="row justify-content">
+ <div id="nug-opening" class="feature-section">
+ <div class="container offsetanchor">
+ <div class="section-header" id="features-section">
+ <center>
+ <span class="fa fa-user"aria-hidden="true"></span>
+ <h2>New User Guide</h2>
+ </center>
+ </div>
+ <div id="feature-heading-content">
+ <hr class="my-4">
+ <blockquote class="blockquote">
+ <p class="mb-0"></p>
+ </blockquote>
+ </div>
+ </div>
+ </div>
+
+ <!-- Starting the content section of the page -->
+ <div id="nug-content" class="col-sm-10">
+ <!-- Site Features -->
+ {% for section in site.data.nug-sections %}
+ <div id="{{ section.slug }}" class="index-section nug-feature-section" style="background-color:#{{ section.color }};">
+ <div class="container offsetanchor">
+ <div id="nug-{{ section.slug }}" class="section-header">
+ <center>
+ <span class="{{ section.glyph }}" style="font-size:100px;" aria-hidden="true"></span>
+ <h2>{{ section.name }}</h2>
+ </center>
+ </div>
+ <div class="feature-{{ section.slug }}">
+ <div class="row">
+ <p>{{ section.text }}</p>
+ {% for feature in site.data.features %}
+ {% if feature.section == section.slug %}
+ <div class="{% if section.col == 3 %}col-md-4{% else %}col-sm-6{% endif %}" style="min-height:280px;">
+ <h3>{{ feature.name }}</h3>
+ <p>{{ feature.text }}</p>
+ </div>
+ {% endif %}
+ {% endfor %}
+ </div>
+ </div>
+ </div>
+ </div>
+ {% endfor %}
+ </div>
+ <!-- Ending the content section of the page -->
+
+ <!-- Starting the page index nav menu -->
+ <div id="nug-index" class="col-2 hidden-sm-down">
+ <nav id="navbar-main" class="sticky-top navbar navbar-light" style="padding-top:50px;margin-top:-50px;">
+ <nav id="nug-nav-body" class="nav nav-pills flex-column">
+ <a id="features-index" href="#nug-opening" style="color:#000;line-height:50px;text-align:center;font-size:1.3rem;"><b>User Guide</b></a>
+ {% for section in site.data.nug-sections %}
+ <nav class="nav nav-pills flex-column nav-item align-middle">
+ <a class="nav-link ml-3 my-1" href="#{{ section.slug }}"><span id="nug-index-span">{{ section.name }}</span></a>
+ </nav>
+ {% endfor %}
+ </nav>
+ </nav>
+ </div>
+ <!-- Ending the page index nav menu -->
+
+
+ </div> <!-- Closing the row justify-content clases -->
+</div> <!-- Closing the ID creating-account and the main container class -->