github.com/criteo/command-launcher@v0.0.0-20230407142452-fb616f546e98/gh-pages/layouts/index.html (about) 1 {{ define "main" }} 2 <section class="section container-fluid mt-n3 pb-3"> 3 <div class="row justify-content-center"> 4 <div class="col-lg-12 text-center"> 5 <h1 class="mt-0">{{ .Title }}</h1> 6 </div> 7 <div class="col-lg-9 col-xl-8 text-center"> 8 <p class="lead">{{ .Params.lead | safeHTML }}</p> 9 <a class="btn btn-primary btn-lg px-4 mb-2" href="docs/{{ if .Site.Params.options.docsVersioning }}{{ .Site.Params.docsVersion }}/{{ end }}overview/introduction/" role="button">{{ i18n "get-started" }}</a> 10 <p class="meta">Open-source MIT Licensed. <a href="https://github.com/criteo/command-launcher">GitHub</a></p> 11 </div> 12 </div> 13 </section> 14 {{ end }} 15 16 {{ define "sidebar-prefooter" }} 17 {{ if eq $.Site.Language.LanguageName "English" }} 18 <section class="section section-sm"> 19 <div class="container"> 20 <div class="row justify-content-center text-center"> 21 <div class="col-lg-5"> 22 <h2 class="h4">Small footprint 👣 </h2> 23 <p>Command launcher is around 10M, with no dependency to your OS. It supports MacOS, Linux, and Windows.</p> 24 </div> 25 <div class="col-lg-5"> 26 <h2 class="h4">Technology agnostic 🌐</h2> 27 <p>It can launch commands implemented in any technology, and integrate to it with a simple manifest file.</p> 28 </div> 29 <div class="col-lg-5"> 30 <h2 class="h4">Auto-completion 🌕</h2> 31 <p>It supports auto-completion for all the commands integrated to it. No need to setup auto-completion for each of your commands.</p> 32 </div> 33 </div> 34 <div class="row justify-content-center text-center"> 35 <div class="col-lg-5"> 36 <h2 class="h4">Auto-update 🔄 </h2> 37 <p> Not only keeps itself but all its commands up-to-date.</p> 38 </div> 39 <div class="col-lg-5"> 40 <h2 class="h4">Credential management 🔑</h2> 41 <p>With the built-in login command, it securely passes user credentials to your command.</p> 42 </div> 43 <div class="col-lg-5"> 44 <h2 class="h4">Progressive rollout 🚀</h2> 45 <p>Target a new version of your command to a group of beta testers, and rollout progressively to all your users.</p> 46 </div> 47 </div> 48 <div class="row justify-content-center text-center"> 49 <div class="col-lg-5"> 50 <h2 class="h4">Built-in Monitoring 🖥</h2> 51 <p>Monitor the usage of your commands with the built-in monitoring feature.</p> 52 </div> 53 <div class="col-lg-5"> 54 <h2 class="h4">Easy to share 🔗</h2> 55 <p>Easy to share and intergrate your own command line scripts/tools by dropping your manifest in the "dropins" folder.</p> 56 </div> 57 <div class="col-lg-5"> 58 <h2 class="h4">Native-like scripts 🛠</h2> 59 <p>Turn your shell scripts into a native like command line program with a simple manifest file.</p> 60 </div> 61 </div> 62 </div> 63 </section> 64 {{ end }} 65 {{ end }} 66 67 {{ define "sidebar-footer" }} 68 <section class="section section-sm container-fluid"> 69 <div class="row justify-content-center text-center"> 70 <div class="col-lg-9"> 71 {{- .Content -}} 72 </div> 73 </div> 74 </section> 75 {{ end }}