
This commit adds a script that will convert RST files to basic HTML templates. The about page is also adjusted to assume that this tool will be run and that documentation templates will be available. Addresses-Spec: https://review.openstack.org/#/c/437175/ Change-Id: I0d3fa68be351177af39228d34c682f48f75ac10d
14 lines
410 B
HTML
14 lines
410 B
HTML
<hr>
|
|
<div class="about-sidebar">
|
|
<div ng-repeat="(key, data) in ctrl.options | arrayConverter | orderBy: 'order'">
|
|
<a><div class="about-option"
|
|
ng-click="ctrl.selectOption(data.id)"
|
|
ng-class="{ 'about-active': ctrl.selected === data.id }">
|
|
{{data.title}}
|
|
</div></a>
|
|
</div>
|
|
</div>
|
|
<div class="about-content">
|
|
<div ng-include src="ctrl.template"></div>
|
|
</div>
|