npm init -y
Create a folder called src and add an empty index.js file. The code that webpack compiles goes in here including any Javascript modules and the main Tailwind file.
| /** | |
| * The first commented line is your dabblet’s title | |
| */ | |
| background: #f06; | |
| background: linear-gradient(45deg, #f06, yellow); | |
| min-height: 100%; |
| #deb cdrom:[Ubuntu 16.04.2 LTS _Xenial Xerus_ - Release amd64 (20170215.2)]/ xenial main restricted | |
| # See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to | |
| # newer versions of the distribution. | |
| deb http://us.archive.ubuntu.com/ubuntu/ xenial main restricted | |
| # deb-src http://us.archive.ubuntu.com/ubuntu/ xenial main restricted | |
| ## Major bug fix updates produced after the final release of the | |
| ## distribution. | |
| deb http://us.archive.ubuntu.com/ubuntu/ xenial-updates main restricted |
| <?php | |
| class dropdown_taxonomy_class { | |
| public $tax = "adresati"; | |
| public function the_tax_hierarchy( $tax, $parent = '', $args = array( 'hide_empty' => false ) ) { | |
| // taxonomy name or slug | |
| $defaults = array( | |
| 'parent' => $parent, | |
| 'hide_empty' => false | |
| ); |
| /* get header , functions and footer | |
| * with include built-in func | |
| * you should def your directories paths | |
| */ | |
| // header.php | |
| <!DOCTYPE html> | |
| <html lang="en" dir="ltr"> | |
| <head> |
| <?php | |
| /* | |
| * Author: Ragnar | |
| * Custom functions . | |
| */ | |
| /*------------------------------------*\ | |
| PROJECT_NAME External Modules/Files | |
| \*------------------------------------*/ | |
| function custom_styles() { | |
| $hold_styles_cdn = array( |
| -- Remove the history from | |
| rm -rf .git | |
| -- recreate the repos from the current content only | |
| git init | |
| git add . | |
| git commit -m "Initial commit" | |
| -- push to the github remote repos ensuring you overwrite history | |
| git remote add origin git@github.com:<YOUR ACCOUNT>/<YOUR REPOS>.git |