| <footer class="site-footer"> |
| <div class="wrapper"> |
| <div class="footer-content"> |
| <div class="footer-section"> |
| <h3>{{ site.title | escape }}</h3> |
| <p>{{ site.data.content.description | escape }}</p> |
| </div> |
| |
| {% for section in site.data.content.footersections %} |
| <div class="footer-section"> |
| <h3>{{ section.name }}</h3> |
| <ul> |
| {% for link in section.links %} |
| <li><a href="{{ link.url }}">{{ link.text }}</a></li> |
| {% endfor %} |
| </ul> |
| </div> |
| {% endfor %} |
| </div> |
| |
| <div class="footer-bottom"> |
| <p>© 2026 Gerrit Code Review. Apache 2.0 Licensed.</p> |
| </div> |
| </div> |
| </footer> |