This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<head> | |
<script src="https://www.google.com/recaptcha/api.js?onload=recaptchaLoad&render=explicit" async defer></script> | |
</head> | |
<body> | |
<form action="?" method="POST" class="form form-ajax"> | |
<label for="form-1-field-message">Message</label> | |
<textarea name="form-1-field-message" id="form-1-field-message" placeholder="How can we help?" required="required" autocomplete="off" minlength="20" rows="5"></textarea> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# This set of commands to be run after fresh install Ubuntu on Windows | |
# It is not intended as an actual script to run by itself | |
# Update OS | |
sudo apt update | |
sudo apt upgrade | |
# NVM (Node Version Manager) | |
touch ~/.bashrc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def tree_iterate(tree, path) | |
directory path do | |
tree.each { |branch| | |
create_post "#{branch.slug}.md" do | |
frontmatter :yaml, { | |
title: branch.title | |
} | |
content(branch.body) | |
end | |
if (branch.children.length > 0) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function(d){d.className=d.className.replace(/(^|\s)no-js(\s|$)/, ' ') + ' js'}(document.documentElement)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
layout: null | |
--- | |
User-agent: * | |
Disallow: {% if jekyll.environment != 'production' %}/{% endif %} |