├── .gitignore ├── 404.html ├── Gemfile ├── _config.yml ├── _posts └── 2018-02-28-coming-soon.markdown ├── about.md ├── assets └── main.scss ├── img └── logo.png └── index.md /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | .sass-cache 3 | .jekyll-metadata 4 | -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 | 18 | 19 |
20 |

404

21 | 22 |

Page not found :(

23 |

The requested page could not be found.

24 |
25 | -------------------------------------------------------------------------------- /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.6.2" 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 | -------------------------------------------------------------------------------- /_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: Project OpenWatch 17 | email: openwatch@chooseblocks.com 18 | description: >- # this means to ignore newlines until "baseurl:" 19 | Project OpenWatch is a new initiative founded by Blocks Wearables, to be announced on the 15th of March 2018. 20 | baseurl: "" # the subpath of your site, e.g. /blog 21 | url: "http://openwatchproject.com" # the base hostname & protocol for your site, e.g. http://example.com 22 | # twitter_username: openwatchproj 23 | github_username: openwatchproject 24 | 25 | # Build settings 26 | markdown: kramdown 27 | theme: minima 28 | plugins: 29 | - jekyll-feed 30 | 31 | # Exclude from processing. 32 | # The following items will not be processed, by default. Create a custom list 33 | # to override the default setting. 34 | # exclude: 35 | # - Gemfile 36 | # - Gemfile.lock 37 | # - node_modules 38 | # - vendor/bundle/ 39 | # - vendor/cache/ 40 | # - vendor/gems/ 41 | # - vendor/ruby/ 42 | -------------------------------------------------------------------------------- /_posts/2018-02-28-coming-soon.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | layout: post 3 | title: "Coming Soon!" 4 | date: 2018-02-28 23:18:04 +0800 5 | categories: jekyll update 6 | --- 7 | 8 | Wondering what this project is all about? Watch this space, we'll be announcing soon. 9 | -------------------------------------------------------------------------------- /about.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: About 4 | permalink: /about/ 5 | --- 6 | 7 | Project OpenWatch is a new initiative founded by Blocks Wearables, to be announced on the 15th of March 2018. 8 | -------------------------------------------------------------------------------- /assets/main.scss: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | @import "minima"; 4 | 5 | .site-title { 6 | padding-left: 40px; 7 | position: relative; 8 | } 9 | .site-title::before { 10 | background-image: url(/img/logo.png); 11 | background-size: 30px; 12 | background-position: center; 13 | background-repeat: no-repeat; 14 | 15 | content: ''; 16 | display: block; 17 | position: absolute; 18 | 19 | height: 50px; 20 | width: 30px; 21 | 22 | left: 0px; 23 | top: 0px; 24 | } 25 | 26 | footer .footer-col-2 { 27 | width: calc(25% - (30px / 2)); 28 | } 29 | 30 | footer .footer-col-3 { 31 | width: calc(40% - (30px / 2)); 32 | } 33 | -------------------------------------------------------------------------------- /img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWatchProject/openwatchproject.github.io/b69db5d36f1f161e32c6b5e3097e3a081bc2f50b/img/logo.png -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- 1 | --- 2 | # You don't need to edit this file, it's empty on purpose. 3 | # Edit theme's home layout instead if you wanna make some changes 4 | # See: https://jekyllrb.com/docs/themes/#overriding-theme-defaults 5 | layout: home 6 | --- 7 | --------------------------------------------------------------------------------