generated from mirzaev/pot-php
Initial commit
This commit is contained in:
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
!.gitignore
|
||||||
|
composer.phar
|
||||||
|
vendor
|
||||||
11
LICENSE
Normal file
11
LICENSE
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
|
||||||
|
Version 2, December 2004
|
||||||
|
|
||||||
|
Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
|
||||||
|
|
||||||
|
Everyone is permitted to copy and distribute verbatim or modified copies of this license document, and changing it is allowed as long as the name is changed.
|
||||||
|
|
||||||
|
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
|
||||||
|
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||||
|
|
||||||
|
0. You just DO WHAT THE FUCK YOU WANT TO.
|
||||||
83
author/project/system/controllers/core.php
Normal file
83
author/project/system/controllers/core.php
Normal file
@@ -0,0 +1,83 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace kodorvan\sunf\controllers;
|
||||||
|
|
||||||
|
// Files of the project
|
||||||
|
use kodorvan\sunf\views\templater,
|
||||||
|
kodorvan\sunf\models\core as models;
|
||||||
|
|
||||||
|
// Library for languages support
|
||||||
|
use mirzaev\languages\language;
|
||||||
|
|
||||||
|
// Framework for PHP
|
||||||
|
use mirzaev\minimal\core as minimal,
|
||||||
|
mirzaev\minimal\controller,
|
||||||
|
mirzaev\minimal\http\response,
|
||||||
|
mirzaev\minimal\http\enumerations\status;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Controllers core
|
||||||
|
*
|
||||||
|
* @package kodorvan\sunf\controllers
|
||||||
|
*
|
||||||
|
* @param language $language Language
|
||||||
|
* @param response $response Response
|
||||||
|
* @param array $errors Registry of errors
|
||||||
|
*
|
||||||
|
* @method void __construct(minimal $minimal) Constructor
|
||||||
|
*
|
||||||
|
* @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License
|
||||||
|
* @author Arsen Mirzaev Tatyano-Muradovich <arsen@mirzaev.sexy>
|
||||||
|
*/
|
||||||
|
class core extends controller
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Language
|
||||||
|
*
|
||||||
|
* @var language $language Language
|
||||||
|
*/
|
||||||
|
protected language $language = language::en;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Response
|
||||||
|
*
|
||||||
|
* @see https://wiki.php.net/rfc/property-hooks (find a table about backed and virtual hooks)
|
||||||
|
*
|
||||||
|
* @var response $response Response
|
||||||
|
*/
|
||||||
|
protected response $response {
|
||||||
|
// Read
|
||||||
|
get => $this->response ??= $this->request->response();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Errors
|
||||||
|
*
|
||||||
|
* @var array $errors Registry of errors
|
||||||
|
*/
|
||||||
|
protected array $errors = [
|
||||||
|
'system' => []
|
||||||
|
];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructor
|
||||||
|
*
|
||||||
|
* @param minimal $core Instance of the MINIMAL
|
||||||
|
* @param bool $initialize Initialize a controller?
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function __construct(minimal $core)
|
||||||
|
{
|
||||||
|
// Blocking requests from CloudFlare (better to write this blocking into nginx config file)
|
||||||
|
if (isset($_SERVER['HTTP_USER_AGENT']) && $_SERVER['HTTP_USER_AGENT'] === 'nginx-ssl early hints') return status::bruh->label;
|
||||||
|
|
||||||
|
// Initializing the view template engine instance
|
||||||
|
$this->view = new templater();
|
||||||
|
|
||||||
|
// For the extends system
|
||||||
|
parent::__construct(core: $core);
|
||||||
|
}
|
||||||
|
}
|
||||||
70
author/project/system/controllers/index.php
Normal file
70
author/project/system/controllers/index.php
Normal file
@@ -0,0 +1,70 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace kodorvan\sunf\controllers;
|
||||||
|
|
||||||
|
// Files of the project
|
||||||
|
use kodorvan\sunf\controllers\core;
|
||||||
|
|
||||||
|
// Framework for PHP
|
||||||
|
use mirzaev\minimal\http\enumerations\content,
|
||||||
|
mirzaev\minimal\http\enumerations\status;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Index
|
||||||
|
*
|
||||||
|
* @package kodorvan\sunf\controllers
|
||||||
|
*
|
||||||
|
* @param array $errors Registry of errors
|
||||||
|
*
|
||||||
|
* @method null index() Main page
|
||||||
|
*
|
||||||
|
* @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License
|
||||||
|
* @author Arsen Mirzaev Tatyano-Muradovich <arsen@mirzaev.sexy>
|
||||||
|
*/
|
||||||
|
final class index extends core
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Errors
|
||||||
|
*
|
||||||
|
* @var array $errors Registry of errors
|
||||||
|
*/
|
||||||
|
protected array $errors = [
|
||||||
|
'system' => []
|
||||||
|
];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Main page
|
||||||
|
*
|
||||||
|
* @return null
|
||||||
|
*/
|
||||||
|
public function index(): null
|
||||||
|
{
|
||||||
|
if (str_contains($this->request->headers['accept'] ?? '', content::html->value)) {
|
||||||
|
// Request for HTML response
|
||||||
|
|
||||||
|
// Render page
|
||||||
|
$page = $this->view->render('index.html');
|
||||||
|
|
||||||
|
// Sending response
|
||||||
|
$this->response
|
||||||
|
->start()
|
||||||
|
->clean()
|
||||||
|
->sse()
|
||||||
|
->write($page)
|
||||||
|
->validate($this->request)
|
||||||
|
?->body()
|
||||||
|
->end();
|
||||||
|
|
||||||
|
// Deinitializing rendered page
|
||||||
|
unset($page);
|
||||||
|
|
||||||
|
// Exit (success)
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Exit (fail)
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
3
author/project/system/databases/.gitignore
vendored
Normal file
3
author/project/system/databases/.gitignore
vendored
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
!.gitignore
|
||||||
|
*.baza
|
||||||
|
*.php
|
||||||
6
author/project/system/localizations/english.php
Normal file
6
author/project/system/localizations/english.php
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// Exit (success)
|
||||||
|
return [
|
||||||
|
'' => ''
|
||||||
|
]
|
||||||
6
author/project/system/localizations/russian.php
Normal file
6
author/project/system/localizations/russian.php
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// Exit (success)
|
||||||
|
return [
|
||||||
|
'' => ''
|
||||||
|
]
|
||||||
44
author/project/system/models/core.php
Normal file
44
author/project/system/models/core.php
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace kodorvan\sunf\models;
|
||||||
|
|
||||||
|
// Framework for PHP
|
||||||
|
use mirzaev\minimal\model,
|
||||||
|
mirzaev\minimal\http\enumerations\status;
|
||||||
|
|
||||||
|
// Built-in libraries
|
||||||
|
use exception;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Models core
|
||||||
|
*
|
||||||
|
* @package kodorvan\sunf\models
|
||||||
|
*
|
||||||
|
* @method void __construct() Constructor
|
||||||
|
*
|
||||||
|
* @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License
|
||||||
|
* @author Arsen Mirzaev Tatyano-Muradovich <arsen@mirzaev.sexy>
|
||||||
|
*/
|
||||||
|
class core extends model
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* File
|
||||||
|
*
|
||||||
|
* @var string database Path to the database file
|
||||||
|
*/
|
||||||
|
protected string $file = DATABASES . DIRECTORY_SEPARATOR . 'example.baza';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructor
|
||||||
|
*
|
||||||
|
* Initialize the database
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function __construct()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
34
author/project/system/public/css/fonts/dejavu.css
Normal file
34
author/project/system/public/css/fonts/dejavu.css
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
@font-face {
|
||||||
|
font-family: 'DejaVu';
|
||||||
|
src: url("/fonts/dejavu/DejaVuLGCSans-ExtraLight.ttf");
|
||||||
|
font-weight: 200;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'DejaVu';
|
||||||
|
src: url("/fonts/dejavu/DejaVuLGCSans.ttf");
|
||||||
|
font-weight: 400;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'DejaVu';
|
||||||
|
src: url("/fonts/dejavu/DejaVuLGCSans-Oblique.ttf");
|
||||||
|
font-weight: 400;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'DejaVu';
|
||||||
|
src: url("/fonts/dejavu/DejaVuLGCSans-Bold.ttf");
|
||||||
|
font-weight: 500;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'DejaVu';
|
||||||
|
src: url("/fonts/dejavu/DejaVuLGCSans-BoldOblique.ttf");
|
||||||
|
font-weight: 500;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
139
author/project/system/public/css/fonts/fira.css
Normal file
139
author/project/system/public/css/fonts/fira.css
Normal file
@@ -0,0 +1,139 @@
|
|||||||
|
@font-face {
|
||||||
|
font-family: 'Fira';
|
||||||
|
src: url('/fonts/fira/FiraSans-Hair.woff2') format('woff2'), url('/fonts/fira/FiraSans-Hair.woff') format('woff');
|
||||||
|
font-weight: 100;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Fira';
|
||||||
|
src: url('/fonts/fira/FiraSans-HairItalic.woff2') format('woff2'), url('/fonts/fira/FiraSans-HairItalic.woff') format('woff');
|
||||||
|
font-weight: 100;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Fira';
|
||||||
|
src: url('/fonts/fira/FiraSans-UltraLight.woff2') format('woff2'), url('/fonts/fira/FiraSans-UltraLight.woff') format('woff');
|
||||||
|
font-weight: 200;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Fira';
|
||||||
|
src: url('/fonts/fira/FiraSans-UltraLightItalic.woff2') format('woff2'), url('/fonts/fira/FiraSans-UltraLightItalic.woff') format('woff');
|
||||||
|
font-weight: 200;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Fira';
|
||||||
|
src: url('/fonts/fira/FiraSans-Light.woff2') format('woff2'), url('/fonts/fira/FiraSans-Light.woff') format('woff');
|
||||||
|
font-weight: 300;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Fira';
|
||||||
|
src: url('/fonts/fira/FiraSans-LightItalic.woff2') format('woff2'), url('/fonts/fira/FiraSans-LightItalic.woff') format('woff');
|
||||||
|
font-weight: 300;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Fira';
|
||||||
|
src: url('/fonts/fira/FiraSans-Regular.woff2') format('woff2'), url('/fonts/fira/FiraSans-Regular.woff') format('woff');
|
||||||
|
font-weight: 400;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Fira';
|
||||||
|
src: url('/fonts/fira/FiraSans-Italic.woff2') format('woff2'), url('/fonts/fira/FiraSans-Italic.woff') format('woff');
|
||||||
|
font-weight: 400;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Fira';
|
||||||
|
src: url('/fonts/fira/FiraMono-Medium.woff2') format('woff2'), url('/fonts/fira/FiraMono-Medium.woff') format('woff');
|
||||||
|
font-weight: 500;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Fira';
|
||||||
|
src: url('/fonts/fira/FiraSans-MediumItalic.woff2') format('woff2'), url('/fonts/fira/FiraSans-MediumItalic.woff') format('woff');
|
||||||
|
font-weight: 500;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Fira';
|
||||||
|
src: url('/fonts/fira/FiraSans-SemiBold.woff2') format('woff2'), url('/fonts/fira/FiraSans-SemiBold.woff') format('woff');
|
||||||
|
font-weight: 600;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Fira';
|
||||||
|
src: url('/fonts/fira/FiraSans-SemiBoldItalic.woff2') format('woff2'), url('/fonts/fira/FiraSans-SemiBoldItalic.woff') format('woff');
|
||||||
|
font-weight: 600;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Fira';
|
||||||
|
src: url('/fonts/fira/FiraSans-Bold.woff2') format('woff2'), url('/fonts/fira/FiraSans-Bold.woff') format('woff');
|
||||||
|
font-weight: 700;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Fira';
|
||||||
|
src: url('/fonts/fira/FiraSans-BoldItalic.woff2') format('woff2'), url('/fonts/fira/FiraSans-BoldItalic.woff') format('woff');
|
||||||
|
font-weight: 700;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Fira';
|
||||||
|
src: url('/fonts/fira/FiraSans-ExtraBold.woff2') format('woff2'), url('/fonts/fira/FiraSans-ExtraBold.woff') format('woff');
|
||||||
|
font-weight: 800;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Fira';
|
||||||
|
src: url('/fonts/fira/FiraSans-ExtraBoldItalic.woff2') format('woff2'), url('/fonts/fira/FiraSans-ExtraBoldItalic.woff') format('woff');
|
||||||
|
font-weight: 800;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Fira';
|
||||||
|
src: url('/fonts/fira/FiraSans-Heavy.woff2') format('woff2'), url('/fonts/fira/FiraSans-Heavy.woff') format('woff');
|
||||||
|
font-weight: 900;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Fira';
|
||||||
|
src: url('/fonts/fira/FiraSans-HeavyItalic.woff2') format('woff2'), url('/fonts/fira/FiraSans-HeavyItalic.woff') format('woff');
|
||||||
|
font-weight: 900;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Fira' Mono;
|
||||||
|
src: url('/fonts/fira/FiraMono-Regular.woff2') format('woff2'), url('/fonts/fira/FiraMono-Regular.woff') format('woff');
|
||||||
|
font-weight: 400;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Fira' Mono;
|
||||||
|
src: url('/fonts/fira/FiraMono-Bold.woff2') format('woff2'), url('/fonts/fira/FiraMono-Bold.woff') format('woff');
|
||||||
|
font-weight: 600;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
31
author/project/system/public/css/fonts/hack.css
Normal file
31
author/project/system/public/css/fonts/hack.css
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
@font-face {
|
||||||
|
font-family: 'Hack';
|
||||||
|
src: url('/fonts/hack/hack-regular.woff2?sha=3114f1256') format('woff2'), url('/fonts/hack/hack-regular.woff?sha=3114f1256') format('woff');
|
||||||
|
font-weight: 400;
|
||||||
|
font-style: normal;
|
||||||
|
font-display: swap;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Hack';
|
||||||
|
src: url('/fonts/hack/hack-bold.woff2?sha=3114f1256') format('woff2'), url('/fonts/hack/hack-bold.woff?sha=3114f1256') format('woff');
|
||||||
|
font-weight: 700;
|
||||||
|
font-style: normal;
|
||||||
|
font-display: swap;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Hack';
|
||||||
|
src: url('/fonts/hack/hack-italic.woff2?sha=3114f1256') format('woff2'), url('/fonts/hack/hack-italic.woff?sha=3114f1256') format('woff');
|
||||||
|
font-weight: 400;
|
||||||
|
font-style: italic;
|
||||||
|
font-display: swap;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Hack';
|
||||||
|
src: url('/fonts/hack/hack-bolditalic.woff2?sha=3114f1256') format('woff2'), url('/fonts/hack/hack-bolditalic.woff?sha=3114f1256') format('woff');
|
||||||
|
font-weight: 700;
|
||||||
|
font-style: italic;
|
||||||
|
font-display: swap;
|
||||||
|
}
|
||||||
BIN
author/project/system/public/fonts/commissioner.ttf
Normal file
BIN
author/project/system/public/fonts/commissioner.ttf
Normal file
Binary file not shown.
BIN
author/project/system/public/fonts/dejavu/DejaVuLGCSans-Bold.ttf
Normal file
BIN
author/project/system/public/fonts/dejavu/DejaVuLGCSans-Bold.ttf
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
author/project/system/public/fonts/dejavu/DejaVuLGCSans.ttf
Normal file
BIN
author/project/system/public/fonts/dejavu/DejaVuLGCSans.ttf
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
author/project/system/public/fonts/dejavu/DejaVuLGCSansMono.ttf
Normal file
BIN
author/project/system/public/fonts/dejavu/DejaVuLGCSansMono.ttf
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
author/project/system/public/fonts/dejavu/DejaVuLGCSerif.ttf
Normal file
BIN
author/project/system/public/fonts/dejavu/DejaVuLGCSerif.ttf
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
author/project/system/public/fonts/fira/FiraMono-Bold.woff
Normal file
BIN
author/project/system/public/fonts/fira/FiraMono-Bold.woff
Normal file
Binary file not shown.
BIN
author/project/system/public/fonts/fira/FiraMono-Bold.woff2
Normal file
BIN
author/project/system/public/fonts/fira/FiraMono-Bold.woff2
Normal file
Binary file not shown.
BIN
author/project/system/public/fonts/fira/FiraMono-Medium.woff
Normal file
BIN
author/project/system/public/fonts/fira/FiraMono-Medium.woff
Normal file
Binary file not shown.
BIN
author/project/system/public/fonts/fira/FiraMono-Medium.woff2
Normal file
BIN
author/project/system/public/fonts/fira/FiraMono-Medium.woff2
Normal file
Binary file not shown.
BIN
author/project/system/public/fonts/fira/FiraMono-Regular.woff
Normal file
BIN
author/project/system/public/fonts/fira/FiraMono-Regular.woff
Normal file
Binary file not shown.
BIN
author/project/system/public/fonts/fira/FiraMono-Regular.woff2
Normal file
BIN
author/project/system/public/fonts/fira/FiraMono-Regular.woff2
Normal file
Binary file not shown.
BIN
author/project/system/public/fonts/fira/FiraSans-Bold.woff
Normal file
BIN
author/project/system/public/fonts/fira/FiraSans-Bold.woff
Normal file
Binary file not shown.
BIN
author/project/system/public/fonts/fira/FiraSans-Bold.woff2
Normal file
BIN
author/project/system/public/fonts/fira/FiraSans-Bold.woff2
Normal file
Binary file not shown.
BIN
author/project/system/public/fonts/fira/FiraSans-BoldItalic.woff
Normal file
BIN
author/project/system/public/fonts/fira/FiraSans-BoldItalic.woff
Normal file
Binary file not shown.
Binary file not shown.
BIN
author/project/system/public/fonts/fira/FiraSans-Book.woff
Normal file
BIN
author/project/system/public/fonts/fira/FiraSans-Book.woff
Normal file
Binary file not shown.
BIN
author/project/system/public/fonts/fira/FiraSans-Book.woff2
Normal file
BIN
author/project/system/public/fonts/fira/FiraSans-Book.woff2
Normal file
Binary file not shown.
BIN
author/project/system/public/fonts/fira/FiraSans-BookItalic.woff
Normal file
BIN
author/project/system/public/fonts/fira/FiraSans-BookItalic.woff
Normal file
Binary file not shown.
Binary file not shown.
BIN
author/project/system/public/fonts/fira/FiraSans-Eight.woff
Normal file
BIN
author/project/system/public/fonts/fira/FiraSans-Eight.woff
Normal file
Binary file not shown.
BIN
author/project/system/public/fonts/fira/FiraSans-Eight.woff2
Normal file
BIN
author/project/system/public/fonts/fira/FiraSans-Eight.woff2
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
author/project/system/public/fonts/fira/FiraSans-ExtraBold.woff
Normal file
BIN
author/project/system/public/fonts/fira/FiraSans-ExtraBold.woff
Normal file
Binary file not shown.
BIN
author/project/system/public/fonts/fira/FiraSans-ExtraBold.woff2
Normal file
BIN
author/project/system/public/fonts/fira/FiraSans-ExtraBold.woff2
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
author/project/system/public/fonts/fira/FiraSans-ExtraLight.woff
Normal file
BIN
author/project/system/public/fonts/fira/FiraSans-ExtraLight.woff
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
author/project/system/public/fonts/fira/FiraSans-Four.woff
Normal file
BIN
author/project/system/public/fonts/fira/FiraSans-Four.woff
Normal file
Binary file not shown.
BIN
author/project/system/public/fonts/fira/FiraSans-Four.woff2
Normal file
BIN
author/project/system/public/fonts/fira/FiraSans-Four.woff2
Normal file
Binary file not shown.
BIN
author/project/system/public/fonts/fira/FiraSans-FourItalic.woff
Normal file
BIN
author/project/system/public/fonts/fira/FiraSans-FourItalic.woff
Normal file
Binary file not shown.
Binary file not shown.
BIN
author/project/system/public/fonts/fira/FiraSans-Hair.woff
Normal file
BIN
author/project/system/public/fonts/fira/FiraSans-Hair.woff
Normal file
Binary file not shown.
BIN
author/project/system/public/fonts/fira/FiraSans-Hair.woff2
Normal file
BIN
author/project/system/public/fonts/fira/FiraSans-Hair.woff2
Normal file
Binary file not shown.
BIN
author/project/system/public/fonts/fira/FiraSans-HairItalic.woff
Normal file
BIN
author/project/system/public/fonts/fira/FiraSans-HairItalic.woff
Normal file
Binary file not shown.
Binary file not shown.
BIN
author/project/system/public/fonts/fira/FiraSans-Heavy.woff
Normal file
BIN
author/project/system/public/fonts/fira/FiraSans-Heavy.woff
Normal file
Binary file not shown.
BIN
author/project/system/public/fonts/fira/FiraSans-Heavy.woff2
Normal file
BIN
author/project/system/public/fonts/fira/FiraSans-Heavy.woff2
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
author/project/system/public/fonts/fira/FiraSans-Italic.woff
Normal file
BIN
author/project/system/public/fonts/fira/FiraSans-Italic.woff
Normal file
Binary file not shown.
BIN
author/project/system/public/fonts/fira/FiraSans-Italic.woff2
Normal file
BIN
author/project/system/public/fonts/fira/FiraSans-Italic.woff2
Normal file
Binary file not shown.
BIN
author/project/system/public/fonts/fira/FiraSans-Light.woff
Normal file
BIN
author/project/system/public/fonts/fira/FiraSans-Light.woff
Normal file
Binary file not shown.
BIN
author/project/system/public/fonts/fira/FiraSans-Light.woff2
Normal file
BIN
author/project/system/public/fonts/fira/FiraSans-Light.woff2
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
author/project/system/public/fonts/fira/FiraSans-Medium.woff
Normal file
BIN
author/project/system/public/fonts/fira/FiraSans-Medium.woff
Normal file
Binary file not shown.
BIN
author/project/system/public/fonts/fira/FiraSans-Medium.woff2
Normal file
BIN
author/project/system/public/fonts/fira/FiraSans-Medium.woff2
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
author/project/system/public/fonts/fira/FiraSans-Regular.woff
Normal file
BIN
author/project/system/public/fonts/fira/FiraSans-Regular.woff
Normal file
Binary file not shown.
BIN
author/project/system/public/fonts/fira/FiraSans-Regular.woff2
Normal file
BIN
author/project/system/public/fonts/fira/FiraSans-Regular.woff2
Normal file
Binary file not shown.
BIN
author/project/system/public/fonts/fira/FiraSans-SemiBold.woff
Normal file
BIN
author/project/system/public/fonts/fira/FiraSans-SemiBold.woff
Normal file
Binary file not shown.
BIN
author/project/system/public/fonts/fira/FiraSans-SemiBold.woff2
Normal file
BIN
author/project/system/public/fonts/fira/FiraSans-SemiBold.woff2
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
author/project/system/public/fonts/fira/FiraSans-Thin.woff
Normal file
BIN
author/project/system/public/fonts/fira/FiraSans-Thin.woff
Normal file
Binary file not shown.
BIN
author/project/system/public/fonts/fira/FiraSans-Thin.woff2
Normal file
BIN
author/project/system/public/fonts/fira/FiraSans-Thin.woff2
Normal file
Binary file not shown.
BIN
author/project/system/public/fonts/fira/FiraSans-ThinItalic.woff
Normal file
BIN
author/project/system/public/fonts/fira/FiraSans-ThinItalic.woff
Normal file
Binary file not shown.
Binary file not shown.
BIN
author/project/system/public/fonts/fira/FiraSans-Two.woff
Normal file
BIN
author/project/system/public/fonts/fira/FiraSans-Two.woff
Normal file
Binary file not shown.
BIN
author/project/system/public/fonts/fira/FiraSans-Two.woff2
Normal file
BIN
author/project/system/public/fonts/fira/FiraSans-Two.woff2
Normal file
Binary file not shown.
BIN
author/project/system/public/fonts/fira/FiraSans-TwoItalic.woff
Normal file
BIN
author/project/system/public/fonts/fira/FiraSans-TwoItalic.woff
Normal file
Binary file not shown.
BIN
author/project/system/public/fonts/fira/FiraSans-TwoItalic.woff2
Normal file
BIN
author/project/system/public/fonts/fira/FiraSans-TwoItalic.woff2
Normal file
Binary file not shown.
BIN
author/project/system/public/fonts/fira/FiraSans-Ultra.woff
Normal file
BIN
author/project/system/public/fonts/fira/FiraSans-Ultra.woff
Normal file
Binary file not shown.
BIN
author/project/system/public/fonts/fira/FiraSans-Ultra.woff2
Normal file
BIN
author/project/system/public/fonts/fira/FiraSans-Ultra.woff2
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user