~xdavidwu/xdavidwu.link

a0005c215773c6fc13571229dac8e37343c97563 — xdavidwu 2 years ago 847a9a3
add yet another div for css hack selection
1 files changed, 20 insertions(+), 18 deletions(-)

M _layouts/default.html
M _layouts/default.html => _layouts/default.html +20 -18
@@ 19,31 19,33 @@
    {% include_cached browser-upgrade.html %}

    <input type="checkbox" id="darkmode">
    <label for="darkmode">
      <i class="fa fa-moon"></i>
    </label>

    <div class="top-flex">
    <div>
      <div class="top-flex">
        <label for="darkmode">
          <i class="fa fa-moon"></i>
        </label>

      {% include_cached masthead.html %}
        {% include_cached masthead.html %}

      <div class="initial-content">
        {{ content }}
      </div>
        <div class="initial-content">
          {{ content }}
        </div>

      {% if site.search == true %}
        <div class="search-content">
          {% include_cached search/search_form.html %}
        {% if site.search == true %}
          <div class="search-content">
            {% include_cached search/search_form.html %}
          </div>
        {% endif %}

        <div id="footer" class="page__footer">
          <footer>
            {% include footer/custom.html %}
            {% include_cached footer.html %}
          </footer>
        </div>
      {% endif %}

      <div id="footer" class="page__footer">
        <footer>
          {% include footer/custom.html %}
          {% include_cached footer.html %}
        </footer>
      </div>

    </div>

    {% include scripts.html %}