A list of the most common functionalities in Jekyll (Liquid). You can use Jekyll with GitHub Pages, just make sure you are using the proper version.
Running a local server for testing purposes:
A list of the most common functionalities in Jekyll (Liquid). You can use Jekyll with GitHub Pages, just make sure you are using the proper version.
Running a local server for testing purposes:
# ----------------------------------------------------------------- | |
# .gitignore | |
# Bare Minimum Git | |
# https://salferrarello.com/starter-gitignore-file/ | |
# ver 20221125 | |
# | |
# From the root of your project run | |
# curl -O https://gist.githubusercontent.com/salcode/10017553/raw/.gitignore | |
# to download this file | |
# |
Solarized | |
#FDF6E3,#EEE8D5,#93A1A1,#FDF6E3,#EEE8D5,#657B83,#2AA198,#DC322F | |
Solarized Dark | |
#073642,#002B36,#B58900,#FDF6E3,#CB4B16,#FDF6E3,#2AA198,#DC322F | |
<?xml version="1.0" encoding="utf-8"?> | |
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
<PropertyGroup> | |
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | |
<SchemaVersion>2.0</SchemaVersion> | |
<ProjectGuid>6CAFC0C6-A428-4d30-A9F9-700E829FEA51</ProjectGuid> | |
<OutputType>Exe</OutputType> | |
<RootNamespace>MyApplication</RootNamespace> | |
<AssemblyName>MyApplication</AssemblyName> | |
<Name>POSHProfile</Name> |
<# | |
.SYNOPSIS | |
Keybase experiment. | |
.DESCRIPTION | |
Beginnings of a PowerShell script to post a Keybase signature announcement. Still not finished but the following commands do work, which is nice. | |
.PARAMETER SignedJsonPath | |
A file containing the signed JSON Object, e.g. created using the following command, | |
gpg2 -u "..." -a --sign keybase-json.txt | |
.PARAMETER Session | |
.PARAMETER CsrfToken |
// This is the canonical layout file for the Quantum project. If you want to add another keyboard, | |
// this is the style you want to emulate. | |
#include "planck.h" | |
#ifdef BACKLIGHT_ENABLE | |
#include "backlight.h" | |
#endif | |
// Each layer gets a name for readability, which is then used in the keymap matrix below. | |
// The underscores don't mean anything - you can have a layer called STUFF or any other name. |
class SearchFlatsForm(Form): | |
"""search flat pages""" | |
searchterm = StringField('searchterm', | |
validators=[DataRequired(), | |
Length(min=3, max=30), | |
]) |