├── assets ├── css │ └── style.css └── scss │ └── main.scss ├── .gitignore ├── _layouts └── main.html ├── index.md ├── _includes └── donald.html ├── 404.html ├── package.json ├── about.md ├── README.org ├── Gemfile ├── Gemfile.lock └── _config.yml /assets/css/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | font-family: sans-serif; 3 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | .sass-cache 3 | .jekyll-metadata 4 | .DS_Store 5 | node_modules/ -------------------------------------------------------------------------------- /_layouts/main.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Tele 5 | 6 | 7 | 8 |

Tele

9 | {{ content }} 10 | 11 | 12 | -------------------------------------------------------------------------------- /assets/scss/main.scss: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | 4 | @import "bootstrap.scss" 5 | 6 | /* $font-stack: Helvetica, sans-serif; */ 7 | /* $primary-color: #333; */ 8 | 9 | /* body { */ 10 | /* font: 100% $font-stack; */ 11 | /* color: $primary-color; */ 12 | /* } */ -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | # You don't need to edit this file, it's empty on purpose. 4 | # Edit theme's home layout instead if you wanna make some changes 5 | # See: https://jekyllrb.com/docs/themes/#overriding-theme-defaults 6 | layout: main 7 | --- 8 | 9 | Hello World! 10 | 11 | {% include donald.html %} 12 | {% include donald.html %} 13 | {% include donald.html %} 14 | -------------------------------------------------------------------------------- /_includes/donald.html: -------------------------------------------------------------------------------- 1 | --- 2 |
3 | Card image cap 4 |
5 |
Card title
6 |

Some quick example text to build on the card title and make up the bulk of the card's content.

7 | Go somewhere 8 |
9 |
10 | -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: main 3 | --- 4 | 5 | 18 | 19 |
20 |

404

21 | 22 |

Page not found :(

23 |

The requested page could not be found.

24 |
25 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "tele", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "git+https://github.com/marsmining/tele.git" 12 | }, 13 | "author": "", 14 | "license": "ISC", 15 | "bugs": { 16 | "url": "https://github.com/marsmining/tele/issues" 17 | }, 18 | "homepage": "https://github.com/marsmining/tele#readme", 19 | "devDependencies": { 20 | "bootstrap": "^4.1.3" 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /about.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: main 3 | title: About 4 | permalink: /about/ 5 | --- 6 | 7 | This is the base Jekyll theme. You can find out more info about customizing your Jekyll theme, as well as basic Jekyll usage documentation at [jekyllrb.com](https://jekyllrb.com/) 8 | 9 | You can find the source code for Minima at GitHub: 10 | [jekyll][jekyll-organization] / 11 | [minima](https://github.com/jekyll/minima) 12 | 13 | You can find the source code for Jekyll at GitHub: 14 | [jekyll][jekyll-organization] / 15 | [jekyll](https://github.com/jekyll/jekyll) 16 | 17 | 18 | [jekyll-organization]: https://github.com/jekyll 19 | -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- 1 | * Summary 2 | 3 | todo 4 | 5 | * Jekyll 6 | 7 | #+BEGIN_EXAMPLE 8 | $ gem install bundler jekyll 9 | $ jekyll new my-awesome-site 10 | $ cd my-awesome-site 11 | $ bundle exec jekyll serve 12 | #+END_EXAMPLE 13 | 14 | - Gem: Package manager for Ruby 15 | 16 | #+BEGIN_EXAMPLE 17 | $ jekyll new tele 18 | $ cd tele 19 | $ git init 20 | #+END_EXAMPLE 21 | 22 | * Bootstrap 23 | 24 | Create the =package.json= file: 25 | 26 | #+BEGIN_EXAMPLE 27 | $ npm init 28 | #+END_EXAMPLE 29 | 30 | - NPM: Package manager for Javascript 31 | 32 | #+BEGIN_EXAMPLE 33 | $ npm install bootstrap --save-dev 34 | #+END_EXAMPLE 35 | 36 | * Questions 37 | 38 | - Upgrading Jekyll? 39 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | # Hello! This is where you manage which Jekyll version is used to run. 4 | # When you want to use a different version, change it below, save the 5 | # file and run `bundle install`. Run Jekyll with `bundle exec`, like so: 6 | # 7 | # bundle exec jekyll serve 8 | # 9 | # This will help ensure the proper Jekyll version is running. 10 | # Happy Jekylling! 11 | gem "jekyll", "3.5.1" 12 | 13 | # This is the default theme for new Jekyll sites. You may change this to anything you like. 14 | gem "minima", "~> 2.0" 15 | 16 | # If you want to use GitHub Pages, remove the "gem "jekyll"" above and 17 | # uncomment the line below. To upgrade, run `bundle update github-pages`. 18 | # gem "github-pages", group: :jekyll_plugins 19 | 20 | # If you have any plugins, put them here! 21 | group :jekyll_plugins do 22 | gem "jekyll-feed", "~> 0.6" 23 | end 24 | 25 | # Windows does not include zoneinfo files, so bundle the tzinfo-data gem 26 | gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] 27 | 28 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- 1 | GEM 2 | remote: https://rubygems.org/ 3 | specs: 4 | addressable (2.5.2) 5 | public_suffix (>= 2.0.2, < 4.0) 6 | colorator (1.1.0) 7 | ffi (1.9.25) 8 | forwardable-extended (2.6.0) 9 | jekyll (3.5.1) 10 | addressable (~> 2.4) 11 | colorator (~> 1.0) 12 | jekyll-sass-converter (~> 1.0) 13 | jekyll-watch (~> 1.1) 14 | kramdown (~> 1.3) 15 | liquid (~> 4.0) 16 | mercenary (~> 0.3.3) 17 | pathutil (~> 0.9) 18 | rouge (~> 1.7) 19 | safe_yaml (~> 1.0) 20 | jekyll-feed (0.10.0) 21 | jekyll (~> 3.3) 22 | jekyll-sass-converter (1.5.2) 23 | sass (~> 3.4) 24 | jekyll-seo-tag (2.5.0) 25 | jekyll (~> 3.3) 26 | jekyll-watch (1.5.1) 27 | listen (~> 3.0) 28 | kramdown (1.17.0) 29 | liquid (4.0.0) 30 | listen (3.1.5) 31 | rb-fsevent (~> 0.9, >= 0.9.4) 32 | rb-inotify (~> 0.9, >= 0.9.7) 33 | ruby_dep (~> 1.2) 34 | mercenary (0.3.6) 35 | minima (2.5.0) 36 | jekyll (~> 3.5) 37 | jekyll-feed (~> 0.9) 38 | jekyll-seo-tag (~> 2.1) 39 | pathutil (0.16.1) 40 | forwardable-extended (~> 2.6) 41 | public_suffix (3.0.3) 42 | rb-fsevent (0.10.3) 43 | rb-inotify (0.9.10) 44 | ffi (>= 0.5.0, < 2) 45 | rouge (1.11.1) 46 | ruby_dep (1.5.0) 47 | safe_yaml (1.0.4) 48 | sass (3.5.7) 49 | sass-listen (~> 4.0.0) 50 | sass-listen (4.0.0) 51 | rb-fsevent (~> 0.9, >= 0.9.4) 52 | rb-inotify (~> 0.9, >= 0.9.7) 53 | 54 | PLATFORMS 55 | ruby 56 | 57 | DEPENDENCIES 58 | jekyll (= 3.5.1) 59 | jekyll-feed (~> 0.6) 60 | minima (~> 2.0) 61 | tzinfo-data 62 | 63 | BUNDLED WITH 64 | 1.13.7 65 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | # Welcome to Jekyll! 2 | # 3 | # This config file is meant for settings that affect your whole blog, values 4 | # which you are expected to set up once and rarely edit after that. If you find 5 | # yourself editing this file very often, consider using Jekyll's data files 6 | # feature for the data you need to update frequently. 7 | # 8 | # For technical reasons, this file is *NOT* reloaded automatically when you use 9 | # 'bundle exec jekyll serve'. If you change this file, please restart the server process. 10 | 11 | # Site settings 12 | # These are used to personalize your new site. If you look in the HTML files, 13 | # you will see them accessed via {{ site.title }}, {{ site.email }}, and so on. 14 | # You can create any custom variable you would like, and they will be accessible 15 | # in the templates via {{ site.myvariable }}. 16 | title: Your awesome title 17 | email: your-email@example.com 18 | description: > # this means to ignore newlines until "baseurl:" 19 | Write an awesome description for your new site here. You can edit this 20 | line in _config.yml. It will appear in your document head meta (for 21 | Google search results) and in your feed.xml site description. 22 | baseurl: "" # the subpath of your site, e.g. /blog 23 | url: "" # the base hostname & protocol for your site, e.g. http://example.com 24 | twitter_username: jekyllrb 25 | github_username: jekyll 26 | 27 | # Build settings 28 | markdown: kramdown 29 | # theme: minima 30 | plugins: 31 | - jekyll-feed 32 | sass: 33 | sass_dir: node_modules/bootstrap/scss 34 | # Exclude from processing. 35 | # The following items will not be processed, by default. Create a custom list 36 | # to override the default setting. 37 | # exclude: 38 | # - Gemfile 39 | # - Gemfile.lock 40 | # - node_modules 41 | # - vendor/bundle/ 42 | # - vendor/cache/ 43 | # - vendor/gems/ 44 | # - vendor/ruby/ 45 | --------------------------------------------------------------------------------