Jekyll based website for Open Planner Team
Run it yourself locally:
- Get Jekyll https://jekyllrb.com/
- Run
bundle exec jekyll s
If you want to build it for production purposes, use bundle exec jekyll b
- Create new
html
file in_includes/sections
. - Include this new section in
index.html
, exemple:{% include sections/developers.html %}
- Global css is in
_sass/global/base.scss
, and global sections css is in_sass/partials/section.scss
. - You can create your custom css section, creating a new file w/ section name in
_sass/partials
. You need to include this new file in_sass/partials/all.scss
. - Don't forget to link it in
_includes/navigation.html
.
- Create new
html
file in root. - Use the layout
default.html
. - For each section use as it folows:
<section>
<div class="row row-content">
<div class="section-title">
<span class="circle"></span>
<h3>Title</h3>
</div>
</div>
<div class="row row-content" data-aos="fade-up">
<p>content</p>
</div>
</section>
- Create new
html
file in_specs
. - Use the layout
post.html
. - For each section use as it folows:
<section>
<div class="row row-content post" data-aos="fade-up">
<h2>Title</h2>
<p>content</p>
</div>
</section>
Hint: To keep the layout clean, it's better to have links like: <a href="#">Wiki: Terms</a>
, rather than <a href="#">https://wwww.i-am-big-url-and-i-can-not-be-wrapped</a>