Go [[grav|back]]\\

To change the color in the striped them, I added this in the assets/custom.css file
<code css>
h1#logo a { background-color: #2F52DA;}
</code>

Plugins installed:
  * [[https://github.com/sommerregen/grav-plugin-archive-plus|Archive Plus]]
  * [[https://github.com/getgrav/grav-plugin-custom-css|Custom CSS]]
  * [[https://github.com/sommerregen/grav-plugin-external-links|External Links]]
  * [[https://github.com/escopecz/grav-ganalytics|Google Analytics]]
  * [[https://github.com/getgrav/grav-plugin-markdown-notices|Markdown Notices]]
  * [[https://github.com/getgrav/grav-plugin-sitemap|Site Map]]
  * [[https://github.com/getgrav/grav-plugin-youtube|Youtube]]

I also made a **04.scratchpad** directory under pages to keep my data bookmarks. With a ''blog.md'' markdown file. All child folders with ''item.md''.\\

For the Archive Plus plugin, I followed the instructions to copy the archive_plus.html.twig to the /templates/partials folder and the archive_plus.yaml file into the users/config/plugins/\\
I then modified the partials/sidebar.html.twig to remove the normal archives and put in the archives_plus
<code twig>
{# if config.plugins.archives.enabled %}
    <section class="box recent-posts">
        <header>
            <h2>Archives</h2>
        </header>
        {% include 'partials/archives.html.twig' %}
    </section>
{% endif #}

{% if config.plugins.archive_plus.enabled %}
    <section class="box recent-posts">
        <header>
            <h2>Archive Plus</h2>
        </header>
        {% include 'partials/archive_plus.html.twig' %}
    </section>
{% endif %}
</code>

and the assets/css/custom.css to include
<code css>
.archive-plus .label ~ ul.last { font-size: 0.7rem; margin-left: 0em;}
.archive-plus a { text-decoration:none;}
</code>

**Note**: To make the Custom CSS plugin put the custom code after the main.css, I had to change the priority of the Custom CSS to **2** in the settings.\\

For the sitemap plugin, I had to modify ''/user/themes/striped/templates/partial/sidebar.html.twig'' to include
<code twig>
{% if config.plugins.sitemap.enabled %}
<section class="box text-style1">
    <a class="button" style="text-align:center;" href="{{ base_url_absolute }}/sitemap"><i class="fa fa-sitemap"></i>Sitemap</a>
</section>
{% endif %}
</code>