This file contains hidden or 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 | |
# ============================================================================ | |
# Simple Debian Server Setup Script for Static Hugo Site | |
# Run this script as root on a fresh Debian installation | |
# ============================================================================ | |
set -e # Exit on any error | |
# Colors for output |
This file contains hidden or 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
<?php | |
/** | |
* Define the base table model class. | |
* | |
* @package WR_Model | |
* @author Sérgio 'wherd' Leal <hello@wherd.name> | |
*/ | |
/** | |
* Base model class. |
This file contains hidden or 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
<?php | |
/** | |
* Virtual page is a page that is rendered by the WordPress engine but it's not found on the database. | |
* | |
* @package Virtual_Pages | |
* @author Sérgio 'wherd' Leal <hello@wherd.name> | |
* @license https://opensource.org/licenses/MIT MIT | |
*/ | |
/** |