Anton Travleev

Links to my projects

View My GitHub Profile

About

This repo is the source for https://travleev.github.io.

Notes

When two files, index.html and index.md are present the html is used and no theme is applied (even when the front matter is added).

Check locally

Look to this article. In short:

  1. Create Gemfile with the following content:
    source 'https://rubygems.org'
    gem 'github-pages', group: :jekyll_plugins
    
  2. Run the command
    >sudo apt-get install libghc-zlib-dev
    >bundle install
    
  3. Start serving with jekyll:
    >bundle exec jekyll serve
    

Local links can be used, for example [home]({% link index.md %}) , which renders to home. In order to make this link in webbrowser to link to an html and not to the original md file (which than will be downloaded), add to the target md file the front matter – even empty.