mirror of
https://github.com/torproject/styleguide.git
synced 2024-11-26 19:00:22 +00:00
12 lines
308 B
HTML
12 lines
308 B
HTML
{% extends "layout.html" %}
|
|
{% block title %}{{ this.title }}{% endblock %}
|
|
{% block body %}
|
|
|
|
<main role="main" class="col-12 col-md-9 col-xl-8 py-md-3 pl-md-5 bd-content" data-spy="scroll" data-target="#components-nav" data-offset="0">
|
|
<h1>{{ this.title }}</h1>
|
|
|
|
{{ this.body }}
|
|
|
|
</main>
|
|
{% endblock %}
|