More portage
This commit is contained in:
@@ -1,11 +0,0 @@
|
|||||||
---
|
|
||||||
layout: post
|
|
||||||
title: "*snkt*, *snkt*, *snkt*"
|
|
||||||
date: 2018-06-12
|
|
||||||
---
|
|
||||||
|
|
||||||
#### Like metronomic and distorted cackling laughter
|
|
||||||
|
|
||||||
The idea-spiders skitter. Piercing clatter of a thousand million worming thoughts. Each one keens in its own way, hungry for freedom. Each one glibly promising sprawling webs of crystalline creativity. Each one truthful to a volatile degree.
|
|
||||||
|
|
||||||
|
|
||||||
39
assets/css/custom.css
Normal file
39
assets/css/custom.css
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
/*!
|
||||||
|
* Copyright (C) 2019 Josh Habdas <jhabdas@protonmail.com>
|
||||||
|
*
|
||||||
|
* This file is part of After Dark.
|
||||||
|
*
|
||||||
|
* After Dark is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Affero General Public License as published
|
||||||
|
* by the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* After Dark is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU Affero General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
a[rel*="external"]::after {
|
||||||
|
content: " " url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20class='i-external'%20viewBox='0%200%2032%2032'%20width='14'%20height='14'%20fill='none'%20stroke='%23ff9800'%20stroke-linecap='round'%20stroke-linejoin='round'%20stroke-width='9.38%'%3E%3Cpath%20d='M14%209%20L3%209%203%2029%2023%2029%2023%2018%20M18%204%20L28%204%2028%2014%20M28%204%20L14%2018'/%3E%3C/svg%3E");
|
||||||
|
}
|
||||||
|
nav a.active {
|
||||||
|
background-color: inherit;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
a[itemprop="url"] {
|
||||||
|
color: #ff9800;
|
||||||
|
}
|
||||||
|
a[itemprop="url"]:hover {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.muted, .help-block {
|
||||||
|
opacity: 0.70;
|
||||||
|
}
|
||||||
|
.hack .muted,
|
||||||
|
.hack .help-block {
|
||||||
|
color: #e0e0e0;
|
||||||
|
}
|
||||||
@@ -40,3 +40,6 @@ sectionPagesMenu = "main" # Enable menu system for lazy bloggers
|
|||||||
[params.modules.fractal_forest]
|
[params.modules.fractal_forest]
|
||||||
enabled = true # Optional, set false to disable module
|
enabled = true # Optional, set false to disable module
|
||||||
decoders = ["bpgdec8a"] # Optional, 8-bit javascript decoder with animation
|
decoders = ["bpgdec8a"] # Optional, 8-bit javascript decoder with animation
|
||||||
|
|
||||||
|
[params.hackcss]
|
||||||
|
mode = "standard"
|
||||||
|
|||||||
15
content/post/2018-06-12--snkt----snkt----snkt.md
Normal file
15
content/post/2018-06-12--snkt----snkt----snkt.md
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
+++
|
||||||
|
title = "*snkt*, *snkt*, *snkt*"
|
||||||
|
date = 2018-06-12
|
||||||
|
description = ""
|
||||||
|
draft = true
|
||||||
|
toc = false
|
||||||
|
categories = ["fiction"]
|
||||||
|
images = [
|
||||||
|
"https://source.unsplash.com/collection/983219/1600x900",
|
||||||
|
"/img/1*aPhII8tpOj9XsXXQNngPzw.jpeg"
|
||||||
|
] # overrides site-wide open graph image
|
||||||
|
+++
|
||||||
|
#### Like metronomic and distorted cackling laughter
|
||||||
|

|
||||||
|
The idea-spiders skitter. Piercing clatter of a thousand million worming thoughts. Each one keens in its own way, hungry for freedom. Each one glibly promising sprawling webs of crystalline creativity. Each one truthful to a volatile degree.
|
||||||
44
gulpfile.js
44
gulpfile.js
@@ -1,44 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
|
|
||||||
var gulp = require('gulp');
|
|
||||||
|
|
||||||
var autoprefixer = require('autoprefixer')
|
|
||||||
var terser = require('gulp-terser');
|
|
||||||
var sass = require('gulp-sass');
|
|
||||||
var postcss = require('gulp-postcss')
|
|
||||||
var flatten = require('gulp-flatten');
|
|
||||||
var csso = require('gulp-csso');
|
|
||||||
var spawn = require('child_process').spawn;
|
|
||||||
|
|
||||||
sass.compiler = require('node-sass');
|
|
||||||
|
|
||||||
function styles(done) {
|
|
||||||
return gulp.src(['src/sass/screen.scss'])
|
|
||||||
.pipe(sass().on('error', sass.logError))
|
|
||||||
.pipe(flatten())
|
|
||||||
.pipe(postcss([ autoprefixer() ]))
|
|
||||||
.pipe(csso())
|
|
||||||
.pipe(gulp.dest('static/css/'))
|
|
||||||
.on('end', done);
|
|
||||||
}
|
|
||||||
|
|
||||||
function scripts(done) {
|
|
||||||
return gulp.src(['node_modules/@fortawesome/fontawesome-free/js/all.min.js'])
|
|
||||||
.pipe(flatten())
|
|
||||||
.pipe(terser())
|
|
||||||
.pipe(gulp.dest('static/js/'))
|
|
||||||
.on('end', done);
|
|
||||||
}
|
|
||||||
|
|
||||||
function up(done) {
|
|
||||||
spawn('hugo', ['serve', '-w', '-D'], {stdio: 'inherit'});
|
|
||||||
done();
|
|
||||||
}
|
|
||||||
|
|
||||||
function watchFiles(done) {
|
|
||||||
gulp.watch("src/sass/*.scss", styles);
|
|
||||||
done();
|
|
||||||
}
|
|
||||||
|
|
||||||
exports.build = gulp.parallel(styles, scripts);
|
|
||||||
exports.watch = gulp.parallel(watchFiles, up);
|
|
||||||
4075
package-lock.json
generated
4075
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
29
package.json
29
package.json
@@ -1,29 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "website",
|
|
||||||
"version": "1.0.0",
|
|
||||||
"description": "Arona Jones's Website",
|
|
||||||
"main": "index.js",
|
|
||||||
"scripts": {
|
|
||||||
"test": "echo \"Error: no test specified\" && exit 1"
|
|
||||||
},
|
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://git.aronajones.com/arona/website"
|
|
||||||
},
|
|
||||||
"keywords": [
|
|
||||||
"website"
|
|
||||||
],
|
|
||||||
"author": "FreneticScribbler",
|
|
||||||
"license": "ISC",
|
|
||||||
"dependencies": {
|
|
||||||
"@fortawesome/fontawesome-free": "^5.14.0",
|
|
||||||
"autoprefixer": "^9.8.5",
|
|
||||||
"gulp": "^4.0.2",
|
|
||||||
"gulp-csso": "^4.0.1",
|
|
||||||
"gulp-flatten": "^0.4.0",
|
|
||||||
"gulp-postcss": "^8.0.0",
|
|
||||||
"gulp-sass": "^4.1.0",
|
|
||||||
"gulp-terser": "^1.2.0",
|
|
||||||
"node-sass": "^4.14.1"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user