{{ page.heading }}
9 | {% elsif page.title and page.layout != 'archive' %} 10 |{{ page.title }}
11 | {% endif %} 12 | {% if page.description %} 13 |{{ page.description }}
14 | {% endif %} 15 | {{ content }} 16 |├── CNAME ├── README.md ├── .gitignore ├── robots.txt ├── favicon.png ├── siteicon.png ├── images ├── bgnoise.png ├── mirabai.png ├── stenoarcade.jpg ├── stenotoppers.png ├── qwerty_to_steno.png ├── plover_screenshot.png ├── steno_key.svg ├── steno_key_white.svg ├── stenoboard.svg └── dolores.svg ├── _posts └── _defaults.md ├── 404.html ├── _sass ├── mixins │ ├── columns.scss │ └── flexbox.scss ├── variables.scss ├── landing-page.scss ├── navigation.scss ├── forms.scss ├── footer.scss ├── layout.scss └── elements.scss ├── Gemfile ├── css ├── font-awesome-4.7.0 │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ ├── less │ │ ├── fixed-width.less │ │ ├── screen-reader.less │ │ ├── larger.less │ │ ├── list.less │ │ ├── core.less │ │ ├── stacked.less │ │ ├── font-awesome.less │ │ ├── bordered-pulled.less │ │ ├── rotated-flipped.less │ │ ├── path.less │ │ ├── animated.less │ │ ├── mixins.less │ │ └── variables.less │ ├── scss │ │ ├── _fixed-width.scss │ │ ├── _screen-reader.scss │ │ ├── _larger.scss │ │ ├── _list.scss │ │ ├── _core.scss │ │ ├── font-awesome.scss │ │ ├── _stacked.scss │ │ ├── _bordered-pulled.scss │ │ ├── _rotated-flipped.scss │ │ ├── _path.scss │ │ ├── _animated.scss │ │ ├── _mixins.scss │ │ └── _variables.scss │ ├── HELP-US-OUT.txt │ └── css │ │ └── font-awesome.min.css └── screen.scss ├── _includes ├── items.html ├── relative-src.html ├── post-title.html ├── youtubePlayer.html ├── analytics.html ├── navigation.html ├── steno-layout.html ├── donate_button.html └── social-icon.html ├── _layouts ├── post.html ├── page.html └── default.html ├── ploverpad ├── assets │ ├── stenoKeyNumbers.json │ ├── binaryToSteno.json │ ├── keyCodeToQwerty.json │ └── keyCodeToSteno.json ├── output.css ├── verticalNotes.css ├── ploverdemo.css ├── uiElements.js ├── qwertyKeyboard.css ├── stenoKeyboard.css └── ploverpad.html ├── events.md ├── _data ├── footer.yml ├── open_steno.yml ├── stenography.yml ├── software.yml ├── navigation.yml ├── learn.yml └── hardware.yml ├── _events └── 2022-01-22-Plover-Meetup.md ├── demo.md ├── _config.yml ├── community.md ├── donate.md ├── LICENSE ├── Gemfile.lock ├── about.md ├── index.html └── scripts └── stenoer.js /CNAME: -------------------------------------------------------------------------------- 1 | opensteno.org -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # OSP Website 2 | 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | _site 4 | -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | --- 2 | layout: null 3 | --- 4 | User-agent: * 5 | -------------------------------------------------------------------------------- /favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensteno/opensteno.github.io/HEAD/favicon.png -------------------------------------------------------------------------------- /siteicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensteno/opensteno.github.io/HEAD/siteicon.png -------------------------------------------------------------------------------- /images/bgnoise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensteno/opensteno.github.io/HEAD/images/bgnoise.png -------------------------------------------------------------------------------- /images/mirabai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensteno/opensteno.github.io/HEAD/images/mirabai.png -------------------------------------------------------------------------------- /images/stenoarcade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensteno/opensteno.github.io/HEAD/images/stenoarcade.jpg -------------------------------------------------------------------------------- /images/stenotoppers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensteno/opensteno.github.io/HEAD/images/stenotoppers.png -------------------------------------------------------------------------------- /images/qwerty_to_steno.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensteno/opensteno.github.io/HEAD/images/qwerty_to_steno.png -------------------------------------------------------------------------------- /_posts/_defaults.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 3 | categories: 4 | author_staff_member: 5 | date: 6 | comments: true 7 | --- 8 | -------------------------------------------------------------------------------- /images/plover_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensteno/opensteno.github.io/HEAD/images/plover_screenshot.png -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- 1 | --- 2 | title: Not Found 3 | description: This page does not exist 4 | permalink: /404.html 5 | sitemap: false 6 | --- 7 | -------------------------------------------------------------------------------- /_sass/mixins/columns.scss: -------------------------------------------------------------------------------- 1 | @mixin columns($value) { 2 | columns: $value; 3 | -webkit-columns: $value; 4 | -moz-columns: $value; 5 | } 6 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'jekyll', '3.6.3' 4 | 5 | group :jekyll_plugins do 6 | gem 'jekyll-seo-tag', '2.1.0' 7 | end 8 | -------------------------------------------------------------------------------- /css/font-awesome-4.7.0/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensteno/opensteno.github.io/HEAD/css/font-awesome-4.7.0/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /_includes/items.html: -------------------------------------------------------------------------------- 1 | 2 | {% for item in include.section %} 3 | 4 |
2 | {% for category in include.post.categories %} 3 | 4 | {{ category | capitalize }} 5 | 6 | {% endfor %} 7 | {{ include.post.date | date: "%B %d, %Y" }} 8 |
9 | -------------------------------------------------------------------------------- /_sass/variables.scss: -------------------------------------------------------------------------------- 1 | $brand-color: #538078; 2 | $secondary-brand-color: #3D6961; 3 | $middle-gradient-color: mix($brand-color, $secondary-brand-color, 95%); 4 | 5 | // Breakpoints 6 | $tablet: "(min-width: 450px)"; 7 | $mid-point: "(min-width: 800px)"; 8 | $desktop: "(min-width: 768px)"; 9 | 10 | // Font Variables 11 | $patua: 'Patua One', sans-serif; 12 | -------------------------------------------------------------------------------- /ploverpad/verticalNotes.css: -------------------------------------------------------------------------------- 1 | #verticalNotesContainer { 2 | /* Positioning */ 3 | position:absolute; 4 | left: 601px; 5 | top: 0px; 6 | 7 | /* Box */ 8 | width: 310px; 9 | height: 227px; 10 | padding: 0; 11 | border: 0; 12 | margin: 0; 13 | } 14 | 15 | #verticalNotes { 16 | /* Box */ 17 | width: 100%; 18 | padding: 0; 19 | margin: 0 auto; 20 | } -------------------------------------------------------------------------------- /css/font-awesome-4.7.0/HELP-US-OUT.txt: -------------------------------------------------------------------------------- 1 | I hope you love Font Awesome. If you've found it useful, please do me a favor and check out my latest project, 2 | Fort Awesome (https://fortawesome.com). It makes it easy to put the perfect icons on your website. Choose from our awesome, 3 | comprehensive icon sets or copy and paste your own. 4 | 5 | Please. Check it out. 6 | 7 | -Dave Gandy 8 | -------------------------------------------------------------------------------- /css/screen.scss: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | $bgnoise: url('{{ site.baseurl }}/images/bgnoise.png') white; 4 | @import "mixins/flexbox"; 5 | @import "mixins/columns"; 6 | @import "variables"; 7 | @import "elements"; 8 | @import "landing-page"; 9 | @import "layout"; 10 | @import "forms"; 11 | @import "navigation"; 12 | @import "footer"; 13 | @import url(https://fonts.googleapis.com/css?family=Patua+One); 14 | -------------------------------------------------------------------------------- /events.md: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | title: Events 4 | description: Open Steno Events 5 | layout: post 6 | --- 7 | 8 | {% for event in site.events reversed %} 9 | 10 |{{ page.description }}
14 | {% endif %} 15 | {{ content }} 16 |
73 |
89 |