Skip to content

Skillbill/company-site

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Skillbill WebSite

buddy pipeline

Development

we use Jekyll .

start dev server

Your terminal must have set ON the "Run command as login shell" as described here

gem install jekyll-sass-converter -v 2.1.0
gem install jekyll -v 4.3.2 
gem install bundler -v 2.4.17
bundle install
bundle exec jekyll serve --trace --watch --livereload

Public Google Maps

Here https://www.google.com/maps/d/home

PROD

NGINX GOOGLE TAG

/etc/nginx/conf.d/www.skillbill.it.conf

sub_filter XXXGTAGXXX "XXXXXXXXX";
sub_filter_once off;

Markdown formatting tips

Full Image:

{% include image.html url="/uploads/java-16.png" alt="image description" caption="image caption"  %}

Inline image:

{% include image.html url="/uploads/java-16.png" width="300" alt="image description" caption="image caption"  %}{: .inline .right }

Code:

{% highlight javascript %}
let x = 1;

// loop
/* yes */
while(true) {
    x++:
}

const buttonNavBar = document.querySelector("button.navbar-toggler")
{% endhighlight %}