Skip to content

Source code

Source code

src/showcase/pages/components/terminal.html

This file is included in this documentation build. It is displayed as code and is not executed.

Download source

<!--
Demonstrate the ssh terminal component on its own lazy route.

@author Laurent Declercq l.declercq@agon-innovation.ch
@version 20260921
-->
<section x-data="componentTerminal" class="component-library">
  <include
    src="partials/components/page-header.html"
    locals='{"title":"componentTerminal"}'
  ></include>
  <div class="catalog-grid">
    <article class="card full">
      <header class="card-header"><h2 x-text="$t('galleryTerminal')"></h2></header>
      <div class="card-body">
        <p class="text-muted" x-text="$t('galleryConsoleIntro')"></p>
        <div x-data="uiTerminal(terminalOptions)">
          <include src="{{ uiRoot }}/terminal.html"></include>
        </div>
      </div>
    </article>
  </div>
</section>