📝 Samuel's new personal website https://blog.samuel.domains/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Samuel FORESTIER ede1ab4326
Bumps jQuery to v3.6.4 (and switches to slim build !)
1 week ago
_includes Finally gets rid of that Bugdroid favicon... All credits go to @NAERNON 3 years ago
_layouts Bumps jQuery to v3.6.4 (and switches to slim build !) 1 week ago
_plugins Makes Atom feed honor specifications (see below) 3 years ago
_posts Fixes ssh-agent not being killed on script exit and path to SSH identity 2 months ago
about Adds entry for recently published AppArmor ST plugin on About page 5 months ago
blog Bumps Simple-Jekyll-Search to v1.9.1, adding new `debounceTime` option 2 years ago
css Bumps FontAwesome to v5.15.1 2 years ago
img Bumps the Archey preview image for v4.14.0.0 6 months ago
js Bumps jQuery to v3.6.4 (and switches to slim build !) 1 week ago
webfonts Bumps FontAwesome to v5.15.1 2 years ago
.gitattributes First commit ? 3 years ago
.gitignore Prefers a local install of required Ruby Gems 3 years ago
404.html Specifies SEO tags of 404 page 3 years ago
README.md Prefers `--no-document` instead of shorter `--no-doc` 5 months ago
_config.yml Precises the reason why incremental building is disabled (duplicate) 2 years ago
atom.xml Prefers `absolute_url` filter and forces XML/JSON escape in feeds 3 months ago
feed.json Prefers `absolute_url` filter and forces XML/JSON escape in feeds 3 months ago
index.html Removes executable bit from .gitignore & index.html files 3 years ago
search.json Forces re-generation of dynamic resources even during incremental build 3 years ago

README.md

blog.samuel.domains

What a personal Jekyll blog 💯

Deploy it locally

Fetch the sources

git clone git@git.forestier.app:HorlogeSkynet/blog.git
cd blog/

Install requirements

apt install -y gem ruby-dev zlib1g-dev

Provision Ruby environment

gem install \
    --no-document \
    --install-dir .gem/ \
    jekyll \
    jemoji \
    jekyll-seo-tag \
    jekyll-sitemap \
    jekyll-redirect-from \
    jekyll-mentions \
    jekyll-paginate-v2

Run the development server

export GEM_HOME=.gem; $GEM_HOME/bin/jekyll serve

Congratulations, you can now go to http://127.0.0.1:4000/ 🎉

How to contribute ?

Project architecture

  • Posts are placed under _posts/ folder, and their respective images under _img/ folder

  • Styles and scripts assets are respectively under css/ and js/ folders

Cool stuffs available here

  • Post last modified date :

    ---
    last_modified_at: 2012-12-12 12:12
    ---
    
  • Disable comments section per post with :

    ---
    comments: false
    ---
    
  • Publish a post as draft (not referenced anywhere) :

    ---
    draft: true
    sitemap: false
    ---
    
  • Set a static link to a post or a page (in addition to its default permalink) :

    ---
    redirect_from: /my-cool-link
    ---
    
  • Add a reference to a GitHub user profile within a post or a page :

    This is a pretty **cool post** written by @HorlogeSkynet !
    
  • Create an images gallery :

    {% include gallery.html URIs='your-post-name_1.png;your-post-name_2.jpg;your-post-name_3.jpeg' %}
    
  • Add a video withing an <iframe> tag :

    {% include video.html URL='https://your.video.provider/video_id' %}
    
  • Add a music from SoundCloud or Spotify :

    {% include soundcloud.html track_id='your_track_id' %}
    <!-- ... -->
    {% include spotify.html track_id='your_track_id' %}
    
  • Add a right-padding to a FontAwesome icon (automatically left-padded) :

    <i class="fas fa-forward right"></i>
    

Acknowledgments

This website is built upon :

Thanks (again !) to @NAERNON for its wonderful favicon.