consolidated theme files to make moving to Fipamo actual easier

This commit is contained in:
Are0h 2020-05-12 13:44:44 -07:00
parent 63e22758db
commit da63aed9e2
19 changed files with 49 additions and 17 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -6,7 +6,7 @@
"repository": "https://code.playvicio.us/Are0h/Fipamo",
"scripts":{
"dev": "stylus -w -m -o assets/css src/styles/base.styl & parcel watch src/com/Start.mjs --out-dir assets/scripts --out-file start.min.js & parcel *.pug"
"dev": "stylus -w -m -o src/front/assets/css src/styles/base.styl & parcel watch src/com/Start.mjs --out-dir src/front/assets/scripts --out-file start.min.js & parcel src/front/*.pug"
},
"engines": {
"node": ">=10.16.0"

View file

@ -1,10 +0,0 @@
extends frame
block main-content
section#index-content
#index-display
#recent-title.index-block
#index-content
div !{content_page}
span YAAAAAAAHS KHAALEEEEESI

View file

@ -5,11 +5,32 @@ module.exports = {
'creative technoglogist, graphic design, web development, designer developer, social thought, political discussion, music producer, creative culture, black creative, black geek',
description:
'The home site of Creative Technologist, music maker, and social philoshoper, Ro. Ha, I know. Me too.',
base_path: '',
default_bg: '/assets/images/global/default-bg.jpg',
default_avi: '/assets/images/global/default-avi.png',
content_index:
"The path of the righteous man is beset on all sides by the iniquities of the selfish and the tyranny of evil men. Blessed is he who, in the name of charity and good will, shepherds the weak through the valley of darkness, for he is truly his brother's keeper and the finder of lost children. And I will strike down upon thee with great vengeance and furious anger those who would attempt to poison and destroy My brothers. And you will know My name is the Lord when I lay My vengeance upon thee.",
content_page: 'This is some page content... for your broke ass',
bucket: [{ item: 'one' }, { item: 'two' }, { item: 'three' }]
bucket: [{ item: 'one' }, { item: 'two' }, { item: 'three' }],
menu: [
{
title: 'This is the first page',
id: '3',
slug: 'page-one',
uuid: 'b60d6843-e957-43ac-8425-65145142236c'
},
{
title: 'This is the second page',
id: '4',
slug: 'page-two',
uuid: 'b60d6843-e957-43ac-8425-65145142236d'
},
{
title: 'This is the second page',
id: '5',
slug: 'page-three',
uuid: 'b60d6843-e957-43ac-8425-65145142236d'
}
]
}
};

View file

@ -6,7 +6,7 @@ export default class Base {
this.start();
}
start() {
console.log('I knoooooooow you see it... ');
console.log('Connected like F.E.');
}
//--------------------------
// methods

View file

@ -322,6 +322,9 @@ header::before {
font: 600 1.5em/2 Helvetica, Arial, sans-serif;
color: #fc6399;
}
.container section {
color: #d5cfba;
}
.container footer {
background: #7ed07e;
padding: 10px;

File diff suppressed because one or more lines are too long

View file

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 24 KiB

View file

Before

Width:  |  Height:  |  Size: 1 MiB

After

Width:  |  Height:  |  Size: 1 MiB

View file

Before

Width:  |  Height:  |  Size: 202 KiB

After

Width:  |  Height:  |  Size: 202 KiB

View file

Before

Width:  |  Height:  |  Size: 8.2 KiB

After

Width:  |  Height:  |  Size: 8.2 KiB

View file

@ -146,7 +146,7 @@ function () {
_createClass(Base, [{
key: "start",
value: function start() {
console.log('I knoooooooow you see it... ');
console.log('Connected like F.E.');
} //--------------------------
// methods
//--------------------------
@ -198,7 +198,7 @@ var parent = module.bundle.parent;
if ((!parent || !parent.isParcelRequire) && typeof WebSocket !== 'undefined') {
var hostname = "" || location.hostname;
var protocol = location.protocol === 'https:' ? 'wss' : 'ws';
var ws = new WebSocket(protocol + '://' + hostname + ':' + "63572" + '/');
var ws = new WebSocket(protocol + '://' + hostname + ':' + "52397" + '/');
ws.onmessage = function (event) {
checkedAssets = {};

View file

@ -0,0 +1 @@
{"version":3,"sources":["Base.mjs","Start.mjs"],"names":["Base","start","console","log","document","addEventListener","base"],"mappings":";;ACAA;;;;AAEAI,QAAQ,CAACC,gBAAT,CACC,kBADD,EAEC,YAAY;AACX,MAAIC,IAAI,GAAG,IAAIN,aAAJ,EAAX;AACA,CAJF,EAKC,KALD;;;;;IDFqBA;;;AACpB;AACA;AACA;AACA,kBAAc;AAAA;;AACb,SAAKC,KAAL;AACA;;;;4BACO;AACPC,MAAAA,OAAO,CAACC,GAAR,CAAY,qBAAZ;AACA,MACD;AACA;AACA;AAEA;AACA;AACA","file":"start.min.js","sourceRoot":"../../../com","sourcesContent":["export default class Base {\n\t//--------------------------\n\t// constructor\n\t//--------------------------\n\tconstructor() {\n\t\tthis.start();\n\t}\n\tstart() {\n\t\tconsole.log('Connected like F.E.');\n\t}\n\t//--------------------------\n\t// methods\n\t//--------------------------\n\n\t//--------------------------\n\t// event handlers\n\t//--------------------------\n}\n","import Base from './Base.mjs';\n\ndocument.addEventListener(\n\t'DOMContentLoaded',\n\tfunction () {\n\t\tvar base = new Base();\n\t},\n\tfalse\n);\n"]}

9
src/front/page.pug Normal file
View file

@ -0,0 +1,9 @@
extends frame
block main-content
section
| TITLE
div !{content_page}
span YAAAAAAAHS KHAALEEEEESI
footer
| © 2020 Fipamo by PV

7
src/front/theme.json Normal file
View file

@ -0,0 +1,7 @@
{
"name": "default-light",
"display-name":"Fipamo Oh Won Light",
"author": "Are0h",
"description": "The most dangerous default theme in the known universe.",
"version": "1.0.0"
}

View file

@ -94,6 +94,8 @@ header::before
color $white
span
custom-header(600, 1.5em, 2, $secondary)
section
color $white
footer