sovanna
0df8ab1fdb
/about-us/ is a section not a page. Thus, according to Zola, a section has a _index.md .. but an _index.md file is attach with an file.html. That's why we cannot take advantage of a markdown content..for a section content. It's the same thing with the homepage. So basically, homepage and all section content (e.g URL like this ROOT/section/ ) will have its HTML file.
23 lines
440 B
HTML
23 lines
440 B
HTML
<div class="container-fluid hero3 d-flex flex-column justify-content-center">
|
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-12 text-center mt-0 mt-lg-5">
|
|
|
|
{% if separator_title %}
|
|
|
|
<h2>{{ separator_title }}</h2>
|
|
|
|
<img src="{{ get_url(path='images/ion@2x.png', cachebust=true) }}" width="100" align="ion">
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div> |