main

mattermost/focalboard

Last updated at: 29/12/2023 09:42

taxonomy.html

TLDR

This file is an HTML template that generates a webpage for displaying items in a specific category. It includes partials for the head, navigation, and footer sections of the webpage.

Classes

No classes found in the code.

Methods

No methods found in the code.

<!DOCTYPE html>
<!--[if lt IE 7]>      <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]>         <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]>         <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]>      <html class="no-js"> <![endif]-->

<html>
    <head>
        {{ partial "head.html" .}}
    </head>
<body>
    {{ partial "nav.html" .}}
    <div class="container">
        <div class="row">
            <div class="col-md-9 doc-content">
                <div class="well well-sm">
                    <h2>Items in category <code>{{ .Title | lower }}</code></h2>
                    <ul class="list-unstyled" style="margin-top: 20px">
                        {{ range .Data.Pages }}
                            {{ .Render "li" }}
                        {{ end}}
                    </ul>
                </div>
            </div>
        </div>
    </div>
    {{ partial "footer.html" .}}
</body>
</html>