aboutsummaryrefslogtreecommitdiffstats
path: root/_includes/new_user_guide.html
blob: 4c3a88edaf6e50fadda5bb1fa4beaca74fb1fdb3 (plain)
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
<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 -->