53 lines · plain
1{{! 2 Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3 See https://llvm.org/LICENSE.txt for license information.4 SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5 6 This file defines the template for generating Namespaces7}}8<!DOCTYPE html>9<html lang="en-US">10 <head>11 <meta charset="utf-8"/>12 <title>{{NamespaceTitle}}</title>13 </head>14 <h1>{{NamespaceTitle}}</h1>15 {{#NamespaceComments}}16 <p>Namespace Comment</p>17 {{/NamespaceComments}}18 {{#Namespace}}19 <h2 id="Namespace">Namespace</h2>20 <ul>21 {{#Links}}22 <li>23 <a href="{{Link}}">{{Name}}</a>24 </li>25 {{/Links}}26 </ul>27 {{/Namespace}}28 {{#Record}}29 <h2 id="Class">Class</h2>30 <ul>31 {{#Links}}32 <li>33 <a href="{{Link}}">{{Name}}</a>34 </li>35 {{/Links}}36 </ul>37 {{/Record}}38 {{#Function}}39 <h2 id="Function">Function</h2>40 <div>41 {{#Obj}}42 {{/Obj}}43 </div>44 {{/Function}}45 {{#Enums}}46 <h2 id="Enums">Enums</h2>47 <div>48 {{#Obj}}49 {{/Obj}}50 </div>51 {{/Enums}}52</html>53