index.html 868 B

1234567891011121314151617181920212223
  1. <h1>unakt.cc</h1>
  2. <p>Mon blog tout à fait minimaliste pas encore tout à fait fonctionnel mais c'est pas grave comme y'a rien dessus... ou presque...</p>
  3. <h2>How-To</h2>
  4. <p>Follow setup on Eleventy website then
  5. See scripts in the &quot;package.json&quot; file</p>
  6. <blockquote>
  7. <p>npm run build
  8. npm run deploy</p>
  9. </blockquote>
  10. <p>&quot;build&quot; does build the whole blog in html inside _site
  11. &quot;deploy&quot; should copy it in my internet served folder</p>
  12. <p>⚠️ Don't use deploy !! Used only in my own scenario</p>
  13. <h2>File Structure</h2>
  14. <ul>
  15. <li>_drafts - ignored md files from the builder</li>
  16. <li>_site - whole blog rendered in html</li>
  17. <li>includes - binaries &amp; structure</li>
  18. <li>layout - layouts</li>
  19. <li>node_modules - lot of crap</li>
  20. <li>posts - blog posts in markdown</li>
  21. <li>templates - pages templates</li>
  22. </ul>
  23. <p>I think that's it</p>