README.html 2.6 KB

1234567891011121314151617
  1. <h1 align="center"><a href="https://github.com/HubSpot/pace" target="_blank" rel="noopener">Progress bar</a> for <a href="https://github.com/theme-next" target="_blank" rel="noopener">NexT</a></h1><h1 align="center">Installation</h1><h2>If you want to use the CDN instead of clone this repo, please jump to the Step 3.</h2><h2 align="center">Step 1 &rarr; Go to NexT dir</h2><p>Change dir to <strong>NexT</strong> directory. There must be <code>layout</code>, <code>source</code>, <code>languages</code> and other directories:</p><pre class="highlight"><code class="sh">$ <span class="hljs-built_in">cd</span> themes/next
  2. $ ls
  3. _config.yml crowdin.yml docs gulpfile.js languages layout LICENSE.md package.json README.md scripts <span class="hljs-built_in">source</span>
  4. </code></pre><h2 align="center">Step 2 &rarr; Get module</h2><p>Install module to <code>source/lib</code> directory:</p><pre class="highlight"><code class="sh">$ git <span class="hljs-built_in">clone</span> https://github.com/theme-next/theme-next-pace <span class="hljs-built_in">source</span>/lib/pace
  5. </code></pre><h2 align="center">Step 3 &rarr; Set it up</h2><p>Enable module in <strong>NexT</strong> <code>_config.yml</code> file and select your theme:</p><pre class="highlight"><code class="yml"><span class="hljs-attr">pace:</span>
  6. <span class="hljs-attr">enable:</span> <span class="hljs-literal">true</span>
  7. <span class="hljs-comment"># Themes list:</span>
  8. <span class="hljs-comment"># big-counter | bounce | barber-shop | center-atom | center-circle | center-radar | center-simple</span>
  9. <span class="hljs-comment"># corner-indicator | fill-left | flat-top | flash | loading-bar | mac-osx | material | minimal</span>
  10. <span class="hljs-attr">theme:</span> <span class="hljs-string">minimal</span>
  11. </code></pre><p><strong>And, if you wants to use the CDN, then need to set:</strong> (you also need to find your corresponding theme css link in <a href="https://www.jsdelivr.com/package/npm/pace-js?path=themes" target="_blank" rel="noopener">jsdelivr</a>)</p><pre class="highlight"><code class="yml"><span class="hljs-attr">vendors:</span>
  12. <span class="hljs-string">...</span>
  13. <span class="hljs-attr">pace:</span> <span class="hljs-string">//cdn.jsdelivr.net/npm/pace-js@1/pace.min.js</span>
  14. <span class="hljs-attr">pace_css:</span> <span class="hljs-string">//cdn.jsdelivr.net/npm/pace-js@1/themes/blue/pace-theme-minimal.css</span>
  15. </code></pre><h1 align="center">Update</h1><pre class="highlight"><code class="sh">$ <span class="hljs-built_in">cd</span> themes/next/<span class="hljs-built_in">source</span>/lib/pace
  16. $ git pull
  17. </code></pre>