From 30afccdc5747a37d2e391d8c40379454de1df680 Mon Sep 17 00:00:00 2001 From: Eugene Pankov Date: Thu, 22 Jun 2017 00:00:33 +0200 Subject: [PATCH] . --- docs/index.html | 22 ++++++++++++ docs/index.pug | 88 +++++++++++++++++++++++++++++++++++++++++++++++ docs/package.json | 15 ++++++++ 3 files changed, 125 insertions(+) create mode 100644 docs/index.html create mode 100644 docs/index.pug create mode 100644 docs/package.json diff --git a/docs/index.html b/docs/index.html new file mode 100644 index 00000000..1d006d6b --- /dev/null +++ b/docs/index.html @@ -0,0 +1,22 @@ +

Terminus

A terminal for a more modern age

Proper Windows experience

Clink provides tab completion, readline-style editing and persistent command history on Windows.

Also supported:

  • Classic CMD
  • PowerShell
  • Bash on Windows

User experience

  • Spawn and hide with a global hotkey
  • Fully customizable hotkey schema
  • Restores tabs
  • Drag in a file to paste the path
  • Click paths and URLs to open in browser/file manager
  • Keeps the current directory in new tabs

Customizable

Multiple app themes and a myriad of community color schemes for the terminal. Color scheme editor included.

Infinitely extensible

Install plugins from the NPM repository, or create your own with Typescript and Angular framework.

\ No newline at end of file diff --git a/docs/index.pug b/docs/index.pug new file mode 100644 index 00000000..1bfb453c --- /dev/null +++ b/docs/index.pug @@ -0,0 +1,88 @@ +doctype html +html + head + link(href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css", rel="stylesheet") + link(href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css", rel="stylesheet") + link(href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400", rel="stylesheet") + style. + body { + font-family: 'Source Sans Pro', sans-serif; + background: #111; + color: #ccc; + } + + h1 { + font-size: 64px; + } + + h1, h3, h5 { + font-weight: 300; + color: white; + } + + .btn i + span { + margin-left: 10px; + } + + .btn-outline-primary { + color: #b6e7ff !important; + } + body + .container.mt-5.mb-3 + .text-center + h1 Terminus + h5 A terminal for a more modern age + + .btn-group.mt-3.mb-3 + a.btn.btn-outline-primary + i.fa.fa-windows + span Windows + + a.btn.btn-outline-primary + i.fa.fa-apple + span macOS + + a.btn.btn-outline-primary + i.fa.fa-archive + span DEB + + a.btn.btn-outline-primary + i.fa.fa-archive + span RPM + + a.btn.btn-outline-primary + i.fa.fa-archive + span TGZ + + .row.mt-5 + .col-6 + h3 Proper Windows experience + p + b Clink + | provides tab completion, readline-style editing and persistent command history on Windows. + p Also supported: + ul + li Classic CMD + li PowerShell + li Bash on Windows + + .col-6 + h3 User experience + ul + li Spawn and hide with a global hotkey + li Fully customizable hotkey schema + li Restores tabs + li Drag in a file to paste the path + li Click paths and URLs to open in browser/file manager + li Keeps the current directory in new tabs + + .row.mt-5 + .col-6 + h3 Customizable + p Multiple app themes and a myriad of community color schemes for the terminal. Color scheme editor included. + + .col-6 + h3 Infinitely extensible + p Install plugins from the NPM repository, or create your own with Typescript and Angular framework. + + diff --git a/docs/package.json b/docs/package.json new file mode 100644 index 00000000..d036c31b --- /dev/null +++ b/docs/package.json @@ -0,0 +1,15 @@ +{ + "name": "docs", + "version": "1.0.0", + "description": "", + "main": "index.js", + "scripts": { + "build": "pug index.pug", + "watch": "pug -w index.pug" + }, + "author": "", + "license": "ISC", + "devDependencies": { + "pug-cli": "^1.0.0-alpha6" + } +}