generated from mirzaev/pot
moved from codepen
This commit is contained in:
9
.gitmodules
vendored
Normal file
9
.gitmodules
vendored
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
[submodule "gsap"]
|
||||||
|
path = gsap
|
||||||
|
url = https://github.com/greensock/GSAP
|
||||||
|
[submodule "hotline.mjs"]
|
||||||
|
path = hotline.mjs
|
||||||
|
url = https://git.svoboda.works/mirzaev/hotline.mjs
|
||||||
|
[submodule "three.js"]
|
||||||
|
path = three.js
|
||||||
|
url = https://github.com/mrdoob/three.js
|
@@ -1,14 +0,0 @@
|
|||||||
@charset "UTF-8";
|
|
||||||
|
|
||||||
body {
|
|
||||||
margin: unset;
|
|
||||||
}
|
|
||||||
|
|
||||||
main {
|
|
||||||
flex-grow: 1;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
align-items: center;
|
|
||||||
gap: var(--gap);
|
|
||||||
transition: 0s;
|
|
||||||
}
|
|
@@ -1,5 +0,0 @@
|
|||||||
{% block js %}
|
|
||||||
{% for element in js %}
|
|
||||||
<script {% if element.src %}src="{{ element.src }}"{% endif %} {% if element.type %}type="{{ element.type }}"{% endif %}>{{ element.innerText }}</script>
|
|
||||||
{% endfor %}
|
|
||||||
{% endblock %}
|
|
@@ -1,29 +1,30 @@
|
|||||||
{
|
{
|
||||||
"name": "kodorvan/kodorvan.tech",
|
"name": "kodorvan/dermo",
|
||||||
"description": "The kodorvan main site",
|
"description": "The kodorvan main site",
|
||||||
"homepage": "https://git.svoboda.works/kodorvan/kodorvan.tech",
|
"homepage": "https://git.svoboda.works/kodorvan/dermo",
|
||||||
"type": "site",
|
"type": "site",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"minimal",
|
"minimal",
|
||||||
"baza"
|
"site",
|
||||||
|
"landing"
|
||||||
],
|
],
|
||||||
"readme": "README.md",
|
"readme": "README.md",
|
||||||
"license": "WTFPL",
|
"license": "WTFPL",
|
||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "kodorvan",
|
"name": "Arsen Mirzaev Tatyano-Muradovich",
|
||||||
"email": "kodorvan@gmail.com",
|
"email": "arsen@mirzaev.sexy",
|
||||||
"homepage": "https://kodorvan.page",
|
"homepage": "https://mirzaev.sexy",
|
||||||
"role": "Programmer"
|
"role": "Programmer"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"wiki": "https://git.svoboda.works/kodorvan/kodorvan.tech/wiki",
|
"wiki": "https://git.svoboda.works/kodorvan/dermoh/wiki",
|
||||||
"issues": "https://git.svoboda.works/kodorvan/kodorvan.tech/issues"
|
"issues": "https://git.svoboda.works/kodorvan/dermo/issues"
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
"php": "^8.4",
|
"php": "^8.4",
|
||||||
"mirzaev/minimal": "^3.6",
|
"mirzaev/minimal": "^3.7",
|
||||||
"mirzaev/baza": "^3.3",
|
"mirzaev/baza": "^3.3",
|
||||||
"twig/twig": "^3.2",
|
"twig/twig": "^3.2",
|
||||||
"twig/extra-bundle": "^3.7",
|
"twig/extra-bundle": "^3.7",
|
||||||
@@ -31,12 +32,12 @@
|
|||||||
},
|
},
|
||||||
"autoload": {
|
"autoload": {
|
||||||
"psr-4": {
|
"psr-4": {
|
||||||
"kodorvan\\kodorvan.tech\\": "kodorvan/kodorvan.tech/system"
|
"kodorvan\\dermo\\": "kodorvan/dermo/system"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"autoload-dev": {
|
"autoload-dev": {
|
||||||
"psr-4": {
|
"psr-4": {
|
||||||
"kodorvan\\kodorvan.tech\\tests\\": "kodorvan/kodorvan.tech/tests"
|
"kodorvan\\dermo\\tests\\": "kodorvan/dermo/tests"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
1
gsap
Submodule
1
gsap
Submodule
Submodule gsap added at 9f8eca1cc2
1
hotline.mjs
Submodule
1
hotline.mjs
Submodule
Submodule hotline.mjs added at 5e627e14ae
@@ -2,12 +2,12 @@
|
|||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
namespace kodorvan\kodorvan.tech\controllers;
|
namespace kodorvan\dermo\controllers;
|
||||||
|
|
||||||
// Files of the project
|
// Files of the project
|
||||||
use kodorvan\kodorvan.tech\views\templater,
|
use kodorvan\dermo\views\templater,
|
||||||
kodorvan\kodorvan.tech\models\core as models,
|
kodorvan\dermo\models\core as models,
|
||||||
kodorvan\kodorvan.tech\models\enumerations\language;
|
kodorvan\dermo\models\enumerations\language;
|
||||||
|
|
||||||
// Framework for PHP
|
// Framework for PHP
|
||||||
use mirzaev\minimal\core as minimal,
|
use mirzaev\minimal\core as minimal,
|
||||||
@@ -18,7 +18,7 @@ use mirzaev\minimal\core as minimal,
|
|||||||
/**
|
/**
|
||||||
* Controllers core
|
* Controllers core
|
||||||
*
|
*
|
||||||
* @package kodorvan\kodorvan.tech\controllers
|
* @package kodorvan\dermo\controllers
|
||||||
*
|
*
|
||||||
* @param language $language Language
|
* @param language $language Language
|
||||||
* @param response $response Response
|
* @param response $response Response
|
||||||
@@ -28,7 +28,6 @@ use mirzaev\minimal\core as minimal,
|
|||||||
*
|
*
|
||||||
* @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License
|
* @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License
|
||||||
* @author Arsen Mirzaev Tatyano-Muradovich <arsen@mirzaev.sexy>
|
* @author Arsen Mirzaev Tatyano-Muradovich <arsen@mirzaev.sexy>
|
||||||
* @author kodorvan <mail@domain.zone>
|
|
||||||
*/
|
*/
|
||||||
class core extends controller
|
class core extends controller
|
||||||
{
|
{
|
@@ -2,10 +2,10 @@
|
|||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
namespace kodorvan\kodorvan.tech\controllers;
|
namespace kodorvan\dermo\controllers;
|
||||||
|
|
||||||
// Files of the project
|
// Files of the project
|
||||||
use kodorvan\kodorvan.tech\controllers\core;
|
use kodorvan\dermo\controllers\core;
|
||||||
|
|
||||||
// Framework for PHP
|
// Framework for PHP
|
||||||
use mirzaev\minimal\http\enumerations\content,
|
use mirzaev\minimal\http\enumerations\content,
|
||||||
@@ -14,7 +14,7 @@ use mirzaev\minimal\http\enumerations\content,
|
|||||||
/**
|
/**
|
||||||
* Index
|
* Index
|
||||||
*
|
*
|
||||||
* @package kodorvan\kodorvan.tech\controllers
|
* @package kodorvan\dermo\controllers
|
||||||
*
|
*
|
||||||
* @param array $errors Registry of errors
|
* @param array $errors Registry of errors
|
||||||
*
|
*
|
||||||
@@ -22,7 +22,6 @@ use mirzaev\minimal\http\enumerations\content,
|
|||||||
*
|
*
|
||||||
* @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License
|
* @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License
|
||||||
* @author Arsen Mirzaev Tatyano-Muradovich <arsen@mirzaev.sexy>
|
* @author Arsen Mirzaev Tatyano-Muradovich <arsen@mirzaev.sexy>
|
||||||
* @author kodorvan <mail@domain.zone>
|
|
||||||
*/
|
*/
|
||||||
final class index extends core
|
final class index extends core
|
||||||
{
|
{
|
||||||
@@ -46,7 +45,7 @@ final class index extends core
|
|||||||
// Request for any response
|
// Request for any response
|
||||||
|
|
||||||
// Render page
|
// Render page
|
||||||
$page = $this->view->render('index.html');
|
$page = $this->view->render('pages/index.html');
|
||||||
|
|
||||||
// Sending response
|
// Sending response
|
||||||
$this->response
|
$this->response
|
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
namespace kodorvan\kodorvan.tech\models;
|
namespace kodorvan\dermo\models;
|
||||||
|
|
||||||
// Framework for PHP
|
// Framework for PHP
|
||||||
use mirzaev\minimal\model,
|
use mirzaev\minimal\model,
|
||||||
@@ -14,13 +14,12 @@ use exception;
|
|||||||
/**
|
/**
|
||||||
* Models core
|
* Models core
|
||||||
*
|
*
|
||||||
* @package kodorvan\kodorvan.tech\models
|
* @package kodorvan\dermo\models
|
||||||
*
|
*
|
||||||
* @method void __construct() Constructor
|
* @method void __construct() Constructor
|
||||||
*
|
*
|
||||||
* @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License
|
* @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License
|
||||||
* @author Arsen Mirzaev Tatyano-Muradovich <arsen@mirzaev.sexy>
|
* @author Arsen Mirzaev Tatyano-Muradovich <arsen@mirzaev.sexy>
|
||||||
* @author kodorvan <mail@domain.zone>
|
|
||||||
*/
|
*/
|
||||||
class core extends model
|
class core extends model
|
||||||
{
|
{
|
@@ -2,18 +2,17 @@
|
|||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
namespace kodorvan\kodorvan.tech\models\enumerations;
|
namespace kodorvan\dermo\models\enumerations;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Language
|
* Language
|
||||||
*
|
*
|
||||||
* Types of languages by ISO 639-1 standart
|
* Types of languages by ISO 639-1 standart
|
||||||
*
|
*
|
||||||
* @package kodorvan\kodorvan.tech\models\enumerations
|
* @package kodorvan\dermo\models\enumerations
|
||||||
*
|
*
|
||||||
* @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License
|
* @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License
|
||||||
* @author Arsen Mirzaev Tatyano-Muradovich <arsen@mirzaev.sexy>
|
* @author Arsen Mirzaev Tatyano-Muradovich <arsen@mirzaev.sexy>
|
||||||
* @author kodorvan <mail@domain.zone>
|
|
||||||
*/
|
*/
|
||||||
enum language
|
enum language
|
||||||
{
|
{
|
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
namespace kodorvan\kodorvan.tech\models\traits;
|
namespace kodorvan\dermo\models\traits;
|
||||||
|
|
||||||
// Built-in libraries
|
// Built-in libraries
|
||||||
use exception;
|
use exception;
|
||||||
@@ -14,11 +14,10 @@ use exception;
|
|||||||
*
|
*
|
||||||
* @method static void delete(string $directory, array &$errors)
|
* @method static void delete(string $directory, array &$errors)
|
||||||
*
|
*
|
||||||
* @package kodorvan\kodorvan.tech\models\traits
|
* @package kodorvan\dermo\models\traits
|
||||||
*
|
*
|
||||||
* @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License
|
* @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License
|
||||||
* @author Arsen Mirzaev Tatyano-Muradovich <arsen@mirzaev.sexy>
|
* @author Arsen Mirzaev Tatyano-Muradovich <arsen@mirzaev.sexy>
|
||||||
* @author kodorvan <mail@domain.zone>
|
|
||||||
*/
|
*/
|
||||||
trait files
|
trait files
|
||||||
{
|
{
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user