Contributing to the NeverLocal blog – NeverLocal – The blog

The space at the beginning of each post is optionally used for acknowledgements.

The NeverLocal blog is based on the Reverie Jekyll theme by Amit Merchant. The blog is open to external contributors, and this post details the workflow and available features for all contributions.


This is a companion discussion topic for the original entry at https://blog.neverlocal.com/contributing

This is an example comment. To comment, you have to go over our forum at forum.neverlocal.com and register an account there. Comments will be automatically shown under the blog post.

This is an example of a long reply:

This post demonstrate the use of code snippets in the theme. The code snippets are powered by Pygments and the code theme that is been used in Reverie is called Draula.

This is a raw snippet:

hello world
123
This is a text snippet

This is a PHP snippet:

<?php
    echo 'Hello, World!';
?>

This is a JavaScript snippet:

const add = (a, b) => a + b
const minus = (a, b) => a - b

console.log(add(100,200))  // 300
console.log(minus(100,200))  // -100

This is a Python snippet:

def say_hello():
    print("hello world!")

say_hello()   // "hello world!"