github.com/zppinho/prow@v0.0.0-20240510014325-1738badeb017/cmd/deck/template/command-help.html (about)

     1  {{define "title"}}Command Help{{end}}
     2  {{define "scripts"}}
     3  <link rel="stylesheet" href="/static/dialog-polyfill.css?v={{deckVersion}}">
     4  <script type="text/javascript" src="/static/command_help_bundle.min.js?v={{deckVersion}}"></script>
     5  <script type="text/javascript" src="plugin-help.js?var=allHelp"></script>
     6  {{end}}
     7  {{define "content"}}
     8  <aside>
     9    <div class="card-box">
    10      <ul class="noBullets">
    11        <li>Command help for</li>
    12        <li><select id="repo" onchange="redraw();"><option>all commands</option></select></li>
    13      </ul>
    14    </div>
    15  </aside>
    16  <div class="table-container">
    17    <table id="command-table" class="mdl-data-table mdl-js-data-table mdl-shadow--2dp">
    18      <thead>
    19      <tr>
    20        <th></th>
    21        <th class="mdl-data-table__cell--non-numeric">Command</th>
    22        <th class="mdl-data-table__cell--non-numeric">Example</th>
    23        <th id="description-col" class="mdl-data-table__cell--non-numeric">Description</th>
    24        <th id="usage-col" class="mdl-data-table__cell--non-numeric">Who Can Use</th>
    25        <th class="mdl-data-table__cell--non-numeric">Plugin</th>
    26        <th></th>
    27      </tr>
    28      </thead>
    29      <tbody>
    30      </tbody>
    31    </table>
    32  </div>
    33  {{end}}
    34  {{define "extra content"}}
    35  <dialog id="dialog" class="mdl-dialog">
    36    <h4 class="mdl-dialog__title"></h4>
    37    <div class="mdl-dialog__content">
    38    </div>
    39    <div class="mdl-dialog__actions">
    40      <button type="button" class="mdl-button close">Close</button>
    41    </div>
    42  </dialog>
    43  {{end}}
    44  
    45  {{template "page" (settings mobileUnfriendly lightMode "command-help" .)}}