-1) {
continue;
}
let catalogPath = path.join(mediaPath, catalog);
let files = fs.readdirSync(catalogPath);
for(let file of files) {
if(file.substr(0, 1) === '.' || file === 'responsive' || file === 'gallery') {
continue;
}
if(catalog.indexOf('gallery') !== -1 && file.indexOf('-thumbnail.') !== -1) {
continue;
}
if(fs.lstatSync(path.join(mediaPath, catalog, file)).isFile()) {
if (path.parse(file).ext !== '') {
numberOfImages++;
}
}
}
}
return numberOfImages;
}
/*
* Delete website
*/
static delete(appInstance, name) {
let sitePath = path.join(appInstance.sitesDir, name);
if (appInstance.db) {
try {
appInstance.db.close();
} catch (e) {
console.log('[SITE DELETE] DB already closed');
}
}
setTimeout(async () => {
await shell.trashItem(sitePath);
}, 500);
}
/*
* Clone website
*/
static clone(appInstance, catalogName, siteName) {
let newCatalogName = slug(siteName).toLowerCase();
let sitePath = path.join(appInstance.sitesDir, catalogName);
let newCatalogFreeName = Site.findFreeName(newCatalogName, appInstance.sitesDir);
let newSitePath = path.join(appInstance.sitesDir, newCatalogFreeName);
fs.copySync(sitePath, newSitePath);
Site.updateNameAndUUIDInSiteConfig(newSitePath, newCatalogFreeName, siteName);
let configFilePath = path.join(newSitePath, 'input', 'config', 'site.config.json');
let siteConfig = FileHelper.readFileSync(configFilePath);
siteConfig = JSON.parse(siteConfig);
appInstance.addSite(newCatalogFreeName, siteConfig);
return {
siteName: siteName,
siteCatalog: newCatalogFreeName,
siteConfig: siteConfig
};
}
/**
*
* Find first free name
*
* e.g. XYZ -> XYZ copy
* e.g. XYZ copy -> XYZ copy copy
*
* @param {string} name
*/
static findFreeName (name, basePath) {
let baseName = name;
let dirPath = path.join(basePath, baseName);
let currentName = baseName;
while (UtilsHelper.dirExists(dirPath)) {
currentName = baseName + '-copy';
dirPath = path.join(basePath, currentName);
}
return currentName;
}
/**
* Update site.config.json to use a new name of the website
*
* @param {string} sitePath
* @param {string} newNameSlug
*/
static updateNameAndUUIDInSiteConfig (sitePath, newSiteSlug, newSiteName) {
let configFilePath = path.join(sitePath, 'input', 'config', 'site.config.json');
let siteConfig = FileHelper.readFileSync(configFilePath);
siteConfig = JSON.parse(siteConfig);
siteConfig.name = newSiteSlug;
siteConfig.uuid = 'uuid-' + (new Date().getTime()) + '-' + (Math.floor(Math.random() * (999999999 - 100000000 + 1)) + 100000000);
siteConfig.displayName = newSiteName;
siteConfig.deployment = JSON.parse(JSON.stringify(defaultAstCurrentSiteConfig.deployment));
siteConfig = JSON.stringify(siteConfig, null, 4);
fs.writeFileSync(configFilePath, siteConfig);
}
/*
* Load Custom CSS code
*/
static loadCustomCSS(appInstance, name) {
let cssPathNormal = path.join(appInstance.sitesDir, name, 'input', 'config', 'custom-css.css');
let cssNormal = false;
if (UtilsHelper.fileExists(cssPathNormal)) {
cssNormal = FileHelper.readFileSync(cssPathNormal, 'utf8');
}
return {
normal: cssNormal
};
}
/*
* Save Custom CSS code
*/
static saveCustomCSS(appInstance, name, code) {
let cssPathNormal = path.join(appInstance.sitesDir, name, 'input', 'config', 'custom-css.css');
fs.writeFileSync(cssPathNormal, code.normal, 'utf8');
}
/**
* Checks for the files consistency on existing websites
*
* Adds (if missing):
* - input/root-files directory
* - input/media/files directory
* - input/media/pages directory
* - input/media/tags directory
* - input/media/authors directory
* - input/config/plugins directory
* - input/config/site.plugins.json file
*
* Moves .htaccess, robots.txt and _redirects files to root-files directory
*
* @param siteName
*/
static checkFilesConsistency(appInstance, siteName) {
let siteBasePath = path.join(appInstance.sitesDir, siteName, 'input');
let rootFilesPath = path.join(siteBasePath, 'root-files');
let tagImagesPath = path.join(siteBasePath, 'media', 'tags');
let authorImagesPath = path.join(siteBasePath, 'media', 'authors');
let mediaFilesPath = path.join(siteBasePath, 'media', 'files');
let pluginsPath = path.join(siteBasePath, 'config', 'plugins');
let pluginsConfigPath = path.join(siteBasePath, 'config', 'site.plugins.json');
if(!UtilsHelper.dirExists(rootFilesPath)) {
fs.mkdirSync(rootFilesPath, { recursive: true });
}
if(!UtilsHelper.dirExists(mediaFilesPath)) {
fs.mkdirSync(mediaFilesPath, { recursive: true });
}
if(!UtilsHelper.dirExists(tagImagesPath)) {
fs.mkdirSync(tagImagesPath, { recursive: true });
}
if(!UtilsHelper.dirExists(authorImagesPath)) {
fs.mkdirSync(authorImagesPath, { recursive: true});
}
if(!UtilsHelper.dirExists(pluginsPath)) {
fs.mkdirSync(pluginsPath, { recursive: true });
}
// Create site.plugins.json if not exists
if (!UtilsHelper.fileExists(pluginsConfigPath)) {
fs.writeFileSync(pluginsConfigPath, '{}');
}
// Move files - if exists to new root-files directory
let filesToMove = {
'robots.txt': path.join(siteBasePath, 'config', 'robots.txt'),
'.htaccess': path.join(siteBasePath, 'config', '.htaccess'),
'.htpasswd': path.join(siteBasePath, 'config', '.htpasswd'),
'_redirects': path.join(siteBasePath, 'config', '_redirects')
};
let fileNames = Object.keys(filesToMove);
for (let i = 0; i < fileNames.length; i++) {
let fileName = fileNames[i];
if(!UtilsHelper.dirExists(rootFilesPath)) {
break;
}
if (UtilsHelper.fileExists(filesToMove[fileName])) {
let destinationPath = path.join(siteBasePath, 'root-files', fileName);
fs.moveSync(filesToMove[fileName], destinationPath);
}
}
}
static async checkWebsiteBackup (appInstance, backupPath) {
let siteCreator = new CreateFromBackup(appInstance, backupPath);
let result = await siteCreator.prepareBackupToRestore()
return result;
}
static checkWebsiteCatalogAvailability (appInstance, siteName) {
let catalogName = slug(siteName).toLowerCase();
if (fs.existsSync(path.join(appInstance.sitesDir, catalogName))) {
return {
catalogExists: true
};
}
return {
catalogExists: false
};
}
static restoreFromBackup (appInstance, siteName) {
let catalogName = slug(siteName).toLowerCase();
let source = path.join(appInstance.appDir, 'temp', 'backup-to-restore');
let destination = path.join(appInstance.sitesDir, catalogName);
if (catalogName.trim() === '') {
return {
status: 'error',
};
}
if (fs.existsSync(destination)) {
fs.removeSync(destination);
}
fs.moveSync(source, destination);
Site.updateNameAndUUIDInSiteConfig(destination, catalogName, siteName);
return {
status: 'success',
data: {
siteCatalogName: catalogName
}
};
}
}
module.exports = Site;
================================================
FILE: app/back-end/sites.js
================================================
/*
* Class used to manage the Site class instances
*/
class Sites {
constructor() {
}
}
module.exports = Sites;
================================================
FILE: app/back-end/sql/1.0.0.sql
================================================
----
-- Basic SQL dump
----
BEGIN TRANSACTION;
CREATE TABLE 'authors' ('id' INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, 'name' TEXT, 'username' TEXT, 'password' TEXT, 'config' TEXT, 'additional_data' TEXT);
CREATE TABLE 'posts' ('id' INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, 'title' TEXT, 'authors' TEXT, 'slug' TEXT, 'text' TEXT, 'featured_image_id' INTEGER, 'created_at' DATETIME, 'modified_at' DATETIME, 'status' TEXT, 'template' TEXT);
CREATE TABLE 'posts_additional_data' ('id' INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, 'post_id' INTEGER, 'key' TEXT, 'value' TEXT);
CREATE TABLE 'posts_images' ('id' INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, 'post_id' INTEGER, 'url' TEXT, 'title' TEXT, 'caption' TEXT, 'additional_data' TEXT);
CREATE TABLE 'posts_tags' ('tag_id' INTEGER NOT NULL, 'post_id' INTEGER NOT NULL, PRIMARY KEY ('tag_id', 'post_id'));
CREATE TABLE 'tags' ('id' INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, 'name' TEXT, 'slug' TEXT, 'description' TEXT, 'additional_data' TEXT);
;
COMMIT;
================================================
FILE: app/back-end/tag.js
================================================
/*
* Tag instance
*/
const fs = require('fs-extra');
const path = require('path');
const Model = require('./model.js');
const Tags = require('./tags.js');
const slug = require('./helpers/slug');
const ImageHelper = require('./helpers/image.helper.js');
const Themes = require('./themes.js');
const Utils = require('./helpers/utils.js');
class Tag extends Model {
constructor(appInstance, tagData, storeMode = true) {
super(appInstance, tagData);
this.id = parseInt(tagData.id, 10);
this.tagsData = new Tags(appInstance, tagData);
this.storeMode = storeMode;
if (tagData.additionalData) {
this.additionalData = tagData.additionalData;
}
if (tagData.imageConfigFields) {
this.imageConfigFields = tagData.imageConfigFields;
}
if(tagData.name || tagData.name === '') {
this.name = (tagData.name).toString();
this.slug = tagData.slug;
this.description = tagData.description;
this.additionalData = tagData.additionalData;
this.prepareTagName();
}
}
/*
* Save tag
*/
save() {
if(this.name === '') {
return {
status: false,
message: 'tag-empty-name'
};
}
if(this.slug === '' || this.createSlug(this.slug) === '') {
this.slug = this.createSlug(this.name);
}
if(!this.isTagNameUnique()) {
return {
status: false,
message: 'tag-duplicate-name'
};
}
if(this.isTagRestrictedSlug()) {
return {
status: false,
message: 'tag-restricted-slug'
};
}
if(!this.isTagSlugUnique()) {
return {
status: false,
message: 'tag-duplicate-slug'
};
}
if(this.id !== 0) {
this.checkAndCleanImages();
return this.updateTag();
}
this.checkAndCleanImages();
return this.addTag();
}
/*
* Add new tag
*/
addTag() {
let sqlQuery = this.db.prepare(`INSERT INTO tags VALUES(null, @name, @slug, @desc, @data)`);
sqlQuery.run({
name: this.name,
slug: this.createSlug(this.slug),
desc: this.description,
data: JSON.stringify(this.additionalData)
});
// Get the newly added item ID if necessary
if (this.id === 0) {
this.id = this.db.prepare('SELECT last_insert_rowid() AS id').get().id;
// Move images from the temp directory
let tempDirectoryExists = true;
let tempImagesDir = path.join(this.siteDir, 'input', 'media', 'tags', 'temp');
try {
fs.statSync(tempImagesDir).isDirectory();
} catch (err) {
tempDirectoryExists = false;
}
if (tempDirectoryExists) {
let finalImagesDir = path.join(this.siteDir, 'input', 'media', 'tags', (this.id).toString());
fs.copySync(tempImagesDir, finalImagesDir);
fs.removeSync(tempImagesDir);
}
}
return {
status: true,
message: 'tag-added',
tagID: this.id,
tags: this.tagsData.load()
};
}
/*
* Update existing tag
*/
updateTag() {
let sqlQuery = this.db.prepare(`UPDATE tags
SET
name = @name,
slug = @slug,
description = @desc,
additional_data = @data
WHERE
id = @id`);
sqlQuery.run({
name: this.name,
slug: this.createSlug(this.slug),
desc: this.description,
data: JSON.stringify(this.additionalData),
id: this.id
});
return {
status: true,
message: 'tag-updated',
tags: this.tagsData.load()
};
}
/*
* Prepare tag name to save
*/
prepareTagName() {
if(typeof this.name == 'undefined') {
this.name = '';
}
// Remove leading and ending spaces (trim it)
// it will also exclude case when tag name contains only
// whitespaces
this.name = this.name.replace(/^\s+/, '').replace(/\s+$/, '');
}
/*
* Check if the tag name is unique
*/
isTagNameUnique() {
let query = this.db.prepare('SELECT * FROM tags WHERE name LIKE @name AND id != @id');
let queryParams = {
name: this.escape(this.name),
id: this.id
};
let foundedTags = query.all(queryParams);
if (foundedTags.length) {
for (const tag of foundedTags) {
if (tag.name === this.name) {
return false;
}
}
}
return true;
}
isTagSlugUnique() {
let query = this.db.prepare('SELECT slug FROM tags WHERE id != @id');
let queryParams = {
id: this.id
};
let foundedSlugs = query.all(queryParams);
if (foundedSlugs.length) {
for (const tag of foundedSlugs) {
if (this.slug === tag.slug) {
return false;
}
}
}
return true;
}
/*
* Check if the tag slug is not restricted
*/
isTagRestrictedSlug() {
let slug = this.createSlug(this.slug);
if(this.application.sites[this.site].advanced.urls.tagsPrefix !== '') {
return false;
}
let restrictedSlugs = [
'assets',
this.application.sites[this.site].advanced.urls.authorsPrefix,
'media',
this.application.sites[this.site].advanced.urls.pageName
];
return restrictedSlugs.indexOf(slug) > -1;
}
/*
* Delete tag
*/
delete() {
this.db.exec(`DELETE FROM tags WHERE id = ${parseInt(this.id, 10)}`);
this.db.exec(`DELETE FROM posts_tags WHERE tag_id = ${parseInt(this.id, 10)}`);
ImageHelper.deleteImagesDirectory(this.siteDir, 'tags', this.id);
return {
status: true,
message: 'tag-deleted'
};
}
/*
* Create slug for given string
*/
createSlug(string) {
return slug(string);
}
/*
* Remove unused images
*/
checkAndCleanImages (cancelEvent = false) {
let tagDir = this.id;
if(this.id === 0) {
tagDir = 'temp';
}
let imagesDir = path.join(this.siteDir, 'input', 'media', 'tags', (tagDir).toString());
let tagDirectoryExists = true;
try {
fs.statSync(imagesDir).isDirectory();
} catch (err) {
tagDirectoryExists = false;
}
if(!tagDirectoryExists) {
return;
}
let images = fs.readdirSync(imagesDir);
this.cleanImages(images, imagesDir, cancelEvent);
}
/*
* Removes images from a given image dir
*/
cleanImages(images, imagesDir, cancelEvent) {
let tagDir = this.id;
let featuredImage = '';
let viewConfig = {};
if (this.additionalData && this.additionalData.featuredImage) {
featuredImage = path.parse(this.additionalData.featuredImage).base;
}
if (this.additionalData && this.additionalData.viewConfig) {
viewConfig = this.additionalData.viewConfig;
}
// If tag is cancelled - get the previous featured image and option images data
if (cancelEvent && this.id !== 0) {
let additionalDataQuery = `SELECT additional_data FROM tags WHERE id = @id`;
let additionalDataResult = this.db.prepare(additionalDataQuery).all({ id: this.id });
if (additionalDataResult) {
try {
featuredImage = JSON.parse(additionalDataResult[0].additional_data).featuredImage;
viewConfig = JSON.parse(additionalDataResult[0].additional_data).viewConfig;
} catch (e) {
console.log('(!) An issue occurred during parsing tag additional data', this.id);
}
}
}
if (this.id === 0) {
tagDir = 'temp';
}
let imagesInViewSettings = [];
imagesInViewSettings = Object.keys(viewConfig).filter((fieldName) => {
return this.imageConfigFields.indexOf(fieldName) !== -1 && viewConfig[fieldName] !== '';
}).map((fieldName) => {
return viewConfig[fieldName];
});
// Iterate through images
for (let i in images) {
let imagePath = images[i];
let fullPath = path.join(imagesDir, imagePath);
// Skip dirs and symlinks
if (imagePath === '.' || imagePath === '..' || imagePath === 'responsive') {
continue;
}
// Remove files which does not exist as featured image and tagViewSettings
if (
(cancelEvent && tagDir === 'temp') ||
(
imagesInViewSettings.indexOf(imagePath) === -1 &&
featuredImage !== imagePath
)
) {
try {
fs.unlinkSync(fullPath);
} catch(e) {
console.error(e);
}
this.removeResponsiveImages(fullPath);
}
}
}
/*
* Remove unused responsive images
*/
removeResponsiveImages(originalPath) {
let themesHelper = new Themes(this.application, { site: this.site });
let currentTheme = themesHelper.currentTheme();
// If there is no selected theme
if (currentTheme === 'not selected') {
return;
}
// Load theme config
let themeConfig = Utils.loadThemeConfig(path.join(this.siteDir, 'input'), currentTheme);
// check if responsive images config exists
if(Utils.responsiveImagesConfigExists(themeConfig)) {
let dimensions = Utils.responsiveImagesDimensions(themeConfig, 'contentImages');
let featuredDimensions = Utils.responsiveImagesDimensions(themeConfig, 'tagImages');
if (featuredDimensions !== false) {
featuredDimensions.forEach(item => {
if (dimensions.indexOf(item) === -1) {
dimensions.push(item);
}
});
}
let responsiveImagesDir = path.parse(originalPath).dir;
responsiveImagesDir = path.join(responsiveImagesDir, 'responsive');
if (typeof dimensions === "boolean") {
return;
}
let forceWebp = !!this.application.sites[this.site]?.advanced?.forceWebp;
// Remove responsive images of each size
for(let dimensionName of dimensions) {
let filename = path.parse(originalPath).name;
let extension = path.parse(originalPath).ext;
if (forceWebp && ['.png', '.jpg', '.jpeg'].indexOf(extension.toLowerCase()) > -1) {
extension = '.webp';
}
let responsiveImagePath = path.join(responsiveImagesDir, filename + '-' + dimensionName + extension);
if(Utils.fileExists(responsiveImagePath)){
fs.unlinkSync(responsiveImagePath);
}
}
}
}
/*
* Change tag visibility status
*/
changeStatus(status, inverse = false) {
let selectQuery = this.db.prepare(`SELECT additional_data FROM tags WHERE id = @id`).all({ id: this.id });
let additionalData = selectQuery[0].additional_data;
try {
additionalData = JSON.parse(additionalData);
if (inverse) {
additionalData.isHidden = false;
} else {
additionalData.isHidden = true;
}
} catch (e) {
return false;
}
let updateQuery = this.db.prepare(`UPDATE
tags
SET
additional_data = @updatedData
WHERE
id = @id`);
updateQuery.run({
updatedData: JSON.stringify(additionalData),
id: this.id
});
return true;
}
}
module.exports = Tag;
================================================
FILE: app/back-end/tags.js
================================================
/*
* Tags instance
*/
const Model = require('./model.js');
class Tags extends Model {
constructor(appInstance, tagsData) {
super(appInstance, tagsData);
}
/*
* Load tags
*/
load() {
let sqlQuery = `SELECT
id,
name,
slug,
description,
additional_data AS additionalData
FROM
tags
GROUP BY
id
ORDER BY
id DESC`;
return this.db.prepare(sqlQuery).all();
}
}
module.exports = Tags;
================================================
FILE: app/back-end/themes.js
================================================
/*
* Themes instance
*/
const fs = require('fs-extra');
const path = require('path');
const FileHelper = require('./helpers/file.js');
const slug = require('./helpers/slug');
const UtilsHelper = require('./helpers/utils.js');
const themeConfigValidator = require('./modules/render-html/validators/theme-config.js');
const normalizePath = require('normalize-path');
const Authors = require('./authors.js');
class Themes {
constructor(appInstance, siteData = false) {
this.basePath = appInstance.appDir;
this.sitesDir = appInstance.sitesDir;
this.themesPath = path.join(this.basePath, 'themes');
this.sitePath = false;
this.siteConfigPath = false;
this.siteName = siteData.site;
this.appInstance = appInstance;
if(siteData) {
this.sitePath = path.join(this.sitesDir, this.siteName, 'input', 'themes');
this.siteInputPath = path.join(this.sitesDir, this.siteName, 'input');
this.siteConfigPath = path.join(this.sitesDir, this.siteName, 'input', 'config', 'site.config.json');
}
}
/*
* Load themes from a specific path
*/
loadThemes(pathToThemes = false) {
if(!pathToThemes) {
pathToThemes = this.themesPath;
}
let filesAndDirs = fs.readdirSync(pathToThemes);
let output = [];
let themeLocation = 'app';
if (this.sitePath && pathToThemes === this.sitePath) {
themeLocation = 'site';
}
for(let i = 0; i < filesAndDirs.length; i++) {
if (filesAndDirs[i][0] === '.' || !UtilsHelper.dirExists(path.join(pathToThemes, filesAndDirs[i]))) {
continue;
}
// Exclude overrided themes
if(filesAndDirs[i].substr(-9) === '-override') {
continue;
}
let configPath = path.join(pathToThemes, filesAndDirs[i], 'config.json');
// Load only proper themes
if (!fs.existsSync(configPath)) {
continue;
}
// Load only properly configured themes
if(themeConfigValidator(configPath) !== true) {
continue;
}
let themeData = FileHelper.readFileSync(configPath, 'utf8');
themeData = JSON.parse(themeData);
output.push({
location: themeLocation,
directory: filesAndDirs[i],
name: themeData.name,
version: themeData.version
});
}
return output;
}
/*
* Load informations about the current theme
*/
currentTheme(returnDir = false) {
let siteData = FileHelper.readFileSync(this.siteConfigPath, 'utf8');
siteData = JSON.parse(siteData);
if(!returnDir && siteData.theme) {
let themeData = FileHelper.readFileSync(path.join(this.sitePath, siteData.theme, 'config.json'));
themeData = JSON.parse(themeData);
if(themeData.name) {
return themeData.name.toLowerCase();
}
}
if(returnDir && siteData.theme) {
return siteData.theme.toLowerCase();
}
return "not selected";
}
/*
* Load results and merge them
*/
load() {
let applicationThemes = this.loadThemes(this.themesPath);
let siteThemes = this.loadThemes(this.sitePath);
return [...applicationThemes, ...siteThemes];
}
/*
* Change theme to the selected one
*/
changeTheme(newTheme, oldTheme) {
if(!newTheme) {
return '';
}
if(
newTheme.indexOf('use-') === -1 &&
newTheme.indexOf('install-use-') === -1 &&
newTheme.indexOf('uninstall-') === -1
) {
return newTheme;
}
// Remove theme settings when the used theme is changed
if(
(
newTheme.indexOf('use-') === 0 &&
newTheme.replace('use-', '') !== oldTheme
) || (
newTheme.indexOf('install-use-') > -1 &&
newTheme.replace('install-use-', '') !== oldTheme
)
) {
let oldConfigPath = path.join(this.siteInputPath, 'config', 'theme.config.json');
let basicConfig = false;
if (UtilsHelper.fileExists(oldConfigPath)) {
try {
let oldConfig = FileHelper.readFileSync(oldConfigPath);
oldConfig = JSON.parse(oldConfig);
basicConfig = {
config: {
logo: oldConfig.config.logo
}
};
basicConfig = JSON.stringify(basicConfig, null, 4);
} catch (e) {
console.log('(!) Cannot parse old config');
}
fs.removeSync(oldConfigPath);
if (basicConfig) {
fs.writeFileSync(oldConfigPath, basicConfig);
}
} else {
fs.removeSync(oldConfigPath);
}
let newThemeName = newTheme.replace('install-use-', '')
.replace('uninstall-', '')
.replace('use-', '');
let backupConfigPath = path.join(this.siteInputPath, 'config', 'theme.' + newThemeName + '.config.json');
if (UtilsHelper.fileExists(backupConfigPath)) {
fs.copySync(
path.join(this.siteInputPath, 'config', 'theme.' + newThemeName + '.config.json'),
path.join(this.siteInputPath, 'config', 'theme.config.json')
);
}
}
// For changing just installed themes - return the theme name
if(newTheme.indexOf('use-') === 0) {
return newTheme.replace('use-', '');
}
// For uninstalling themes - return empty string or theme name (if the used theme was not removed)
if(newTheme.indexOf('uninstall-') === 0) {
let themeToRemove = newTheme.replace('uninstall-', '');
// Remove theme dir
let themeDirStat = false;
try {
themeDirStat = fs.statSync(path.join(this.sitePath, themeToRemove));
} catch(e) {}
if(themeDirStat && themeDirStat.isDirectory()) {
// If yes - remove it
fs.removeSync(path.join(this.sitePath, themeToRemove));
}
// If current theme is different than removed theme - return its name
if(oldTheme !== themeToRemove) {
return oldTheme;
}
// Otherwise - return empty string as there is currently no used theme
return '';
}
// Prepare the theme directory name
newTheme = newTheme.replace('install-use-', '');
// For installing new themes:
// Check if the theme exists
let themeDirStat = false;
try {
themeDirStat = fs.statSync(path.join(this.sitePath, newTheme));
} catch(e) {}
if(themeDirStat && themeDirStat.isDirectory()) {
// If yes - remove it
fs.removeSync(path.join(this.sitePath, newTheme));
}
// Copy theme to the site directory
fs.copySync(
path.join(this.themesPath, newTheme),
path.join(this.sitePath, newTheme)
);
// Return new name
return newTheme;
}
/*
* Load available post templates
*/
loadPostTemplates() {
let postTemplates = [];
let siteData = FileHelper.readFileSync(this.siteConfigPath, 'utf8');
siteData = JSON.parse(siteData);
if(siteData.theme) {
let themeDir = path.join(this.sitePath, siteData.theme);
let themeConfigPath = path.join(this.sitePath, 'input', 'config', 'theme.config.json');
let themeData = Themes.loadThemeConfig(themeConfigPath, themeDir);
if(themeData.postTemplates) {
let templateFiles = Object.keys(themeData.postTemplates);
for(let i = 0; i < templateFiles.length; i++) {
let fileName = templateFiles[i];
postTemplates.push(
[fileName, themeData.postTemplates[fileName]]
);
}
}
}
return postTemplates;
}
/*
* Load available page templates
*/
loadPageTemplates() {
let pageTemplates = [];
let siteData = FileHelper.readFileSync(this.siteConfigPath, 'utf8');
siteData = JSON.parse(siteData);
if(siteData.theme) {
let themeDir = path.join(this.sitePath, siteData.theme);
let themeConfigPath = path.join(this.sitePath, 'input', 'config', 'theme.config.json');
let themeData = Themes.loadThemeConfig(themeConfigPath, themeDir);
if(themeData.pageTemplates) {
let templateFiles = Object.keys(themeData.pageTemplates);
for(let i = 0; i < templateFiles.length; i++) {
let fileName = templateFiles[i];
pageTemplates.push(
[fileName, themeData.pageTemplates[fileName]]
);
}
}
}
return pageTemplates;
}
/*
* Load available tag templates
*/
loadTagTemplates() {
let tagTemplates = [];
let siteData = FileHelper.readFileSync(this.siteConfigPath, 'utf8');
siteData = JSON.parse(siteData);
if(siteData.theme) {
let themeDir = path.join(this.sitePath, siteData.theme);
let themeConfigPath = path.join(this.sitePath, 'input', 'config', 'theme.config.json');
let themeData = Themes.loadThemeConfig(themeConfigPath, themeDir);
if(themeData.tagTemplates) {
let templateFiles = Object.keys(themeData.tagTemplates);
for(let i = 0; i < templateFiles.length; i++) {
let fileName = templateFiles[i];
tagTemplates.push(
[fileName, themeData.tagTemplates[fileName]]
);
}
}
}
return tagTemplates;
}
/*
* Load available author templates
*/
loadAuthorTemplates() {
let authorTemplates = [];
let siteData = FileHelper.readFileSync(this.siteConfigPath, 'utf8');
siteData = JSON.parse(siteData);
if(siteData.theme) {
let themeDir = path.join(this.sitePath, siteData.theme);
let themeConfigPath = path.join(this.sitePath, 'input', 'config', 'theme.config.json');
let themeData = Themes.loadThemeConfig(themeConfigPath, themeDir);
if(themeData.authorTemplates) {
let templateFiles = Object.keys(themeData.authorTemplates);
for(let i = 0; i < templateFiles.length; i++) {
let fileName = templateFiles[i];
authorTemplates.push(
[fileName, themeData.authorTemplates[fileName]]
);
}
}
}
return authorTemplates;
}
/*
* Remove specific theme from the app directory
*/
removeTheme(directory) {
fs.removeSync(path.join(this.themesPath, directory));
}
updateThemeConfig(newConfig) {
let themeConfigPath = path.join(this.sitesDir, this.siteName, 'input', 'config', 'theme.config.json');
let themeBackupConfigPath = path.join(this.sitesDir, this.siteName, 'input', 'config', 'theme.' + this.currentTheme(true) + '.config.json');
let themeDefaultConfig = UtilsHelper.loadThemeConfig(path.join(this.sitesDir, this.siteName, 'input'), this.currentTheme(true));
let themeConfig = {
config: newConfig.config,
customConfig: newConfig.customConfig,
postConfig: newConfig.postConfig,
pageConfig: newConfig.pageConfig,
tagConfig: newConfig.tagConfig,
authorConfig: newConfig.authorConfig,
defaultTemplates: newConfig.defaultTemplates
};
// Check all options for the media fields
let groups = ['config', 'customConfig', 'postConfig', 'pageConfig', 'tagConfig', 'authorConfig'];
for(let i = 0; i < groups.length; i++) {
let options = themeDefaultConfig[groups[i]];
if(!options) {
continue;
}
for (let j = 0; j < options.length; j++) {
if (
themeDefaultConfig[groups[i]][j] &&
(
themeDefaultConfig[groups[i]][j].type === 'upload' ||
themeDefaultConfig[groups[i]][j].type === 'smallupload'
)
) {
let mediaPathKey = themeDefaultConfig[groups[i]][j].name;
if (themeConfig[groups[i]] && themeConfig[groups[i]][mediaPathKey]) {
let mediaPath = themeConfig[groups[i]][mediaPathKey];
themeConfig[groups[i]][mediaPathKey] = this.normalizeThemeImagePath(mediaPath);
}
}
}
}
let configString = JSON.stringify(themeConfig, null, 4);
// Save config
fs.writeFileSync(themeConfigPath, configString);
fs.writeFileSync(themeBackupConfigPath, configString);
// Remove unused config images
this.checkAndCleanImages(configString);
}
/*
* Fixes path for the media file
*/
normalizeThemeImagePath(imagePath) {
// Save the image if necessary
imagePath = normalizePath(imagePath);
imagePath = imagePath.replace('file:/', '');
return imagePath;
}
/*
* Load theme config
*/
static loadThemeConfig(themeConfigPath, themeDir) {
if(themeDir === 'not selected') {
return false;
}
// Load default config
let defaultConfigPath = path.join(__dirname, '..', 'default-files', 'theme-files', 'config.json');
let defaultThemeConfig = JSON.parse(FileHelper.readFileSync(defaultConfigPath));
// Load basic theme config
let themeLocalConfig = UtilsHelper.loadThemeConfig(themeDir);
if (!themeLocalConfig.customConfig) {
themeLocalConfig.customConfig = [];
}
defaultThemeConfig = UtilsHelper.mergeObjects(defaultThemeConfig, themeLocalConfig);
// Load theme config overrides
if(UtilsHelper.fileExists(themeConfigPath)) {
let themeSavedConfig;
try {
themeSavedConfig = JSON.parse(FileHelper.readFileSync(themeConfigPath));
} catch (err) {
console.log('(!) The saved theme config is malformed. Loading default theme config instead.');
return;
}
let optionGroups = ['config', 'customConfig', 'postConfig', 'pageConfig', 'tagConfig', 'authorConfig'];
for(let k = 0; k < optionGroups.length; k++) {
let group = optionGroups[k];
if (themeSavedConfig[optionGroups[k]]) {
for (let i = 0; i < defaultThemeConfig[group].length; i++) {
let name = defaultThemeConfig[group][i].name;
if (typeof themeSavedConfig[group][name] === 'undefined') {
continue;
}
if (themeSavedConfig[group][name] !== '') {
defaultThemeConfig[group][i].value = themeSavedConfig[group][name];
}
}
}
}
if (themeSavedConfig.defaultTemplates) {
defaultThemeConfig.defaultTemplates = JSON.parse(JSON.stringify(themeSavedConfig.defaultTemplates));
}
}
let computedOptionsConfig = Themes.loadComputedOptions(themeDir, defaultThemeConfig);
defaultThemeConfig.customConfig = defaultThemeConfig.customConfig.concat(computedOptionsConfig);
return defaultThemeConfig;
}
/*
* Remove unused images
*/
checkAndCleanImages(configString) {
let siteData = FileHelper.readFileSync(this.siteConfigPath, 'utf8');
siteData = JSON.parse(siteData);
let authors = new Authors(this.appInstance, {site: siteData.name});
let authorsData = authors.load();
let authorAvatars = [];
let ogFallbackImage = '';
if(authorsData && authorsData.length) {
for(let i = 0; i < authorsData.length; i++) {
let authorConfig = authorsData[i].config;
let avatar = '';
try {
authorConfig = JSON.parse(authorConfig);
avatar = authorConfig.avatar;
} catch(e) {
console.log('Getting user avatar in themes.js:');
console.log(e);
}
if(avatar !== '') {
authorAvatars.push(avatar);
}
}
}
if(siteData && siteData.advanced && siteData.advanced.openGraphImage) {
ogFallbackImage = siteData.advanced.openGraphImage;
}
// Parse json before slashes normalization
let configObject = JSON.parse(configString);
// Make sure that all slashes are in the same direction
configString = normalizePath(configString);
// Get images dir
let imagesDir = path.join(this.siteInputPath, 'media', 'website');
if(!UtilsHelper.dirExists(imagesDir)) {
return;
}
let images = fs.readdirSync(imagesDir);
// Iterate through images
for (let i in images) {
let imagePath = images[i];
let fullPath = path.join(imagesDir, imagePath);
// Skip dirs and symlinks
if(imagePath === '.' || imagePath === '..' || imagePath === 'responsive' || imagePath === 'gallery') {
continue;
}
// Remove files which does not exist in the config string and as avatars/OG fallback image
if(
configString.indexOf('/' + imagePath) === -1 &&
configString.indexOf('"' + imagePath + '"') === -1 &&
authorAvatars.indexOf(imagePath) === -1 &&
imagePath !== ogFallbackImage
) {
try {
fs.unlinkSync(fullPath);
} catch(e) {
console.error(e);
}
// Remove responsive images
this.removeResponsiveImages(fullPath);
}
}
// clean up unnecessary default images
let assetsToCheck = [
{
dir: 'posts',
configType: 'postConfig'
},
{
dir: 'tags',
configType: 'tagConfig'
},
{
dir: 'authors',
configType: 'authorConfig'
}
];
for (let i = 0; i < assetsToCheck.length; i++) {
let dirToCheck = assetsToCheck[i].dir;
let configToCheck = assetsToCheck[i].configType;
let viewImagesDir = path.join(this.siteInputPath, 'media', dirToCheck, 'defaults');
if(!UtilsHelper.dirExists(viewImagesDir)) {
return;
}
let viewImages = fs.readdirSync(viewImagesDir);
let configImages = Object.values(configObject[configToCheck]);
// Iterate through images
for (let i in viewImages) {
let imagePath = viewImages[i];
let fullPath = path.join(viewImagesDir, imagePath);
// Skip dirs and symlinks
if (imagePath === '.' || imagePath === '..' || imagePath === 'responsive' || imagePath === 'gallery') {
continue;
}
// Remove files which does not exist in the post text
if (configImages.indexOf(imagePath) === -1) {
try {
fs.unlinkSync(fullPath);
} catch(e) {
console.error(e);
}
// Remove responsive images
this.removeResponsiveImages(fullPath);
}
}
}
}
/*
* Remove unused responsive images
*/
removeResponsiveImages(originalPath) {
let currentTheme = this.currentTheme();
let dimensions = false;
// If there is no selected theme
if(currentTheme === 'not selected') {
return;
}
// Load theme config
let themeConfig = UtilsHelper.loadThemeConfig(this.siteInputPath, currentTheme);
let forceWebp = !!this.appInstance.sites[this.siteName]?.advanced?.forceWebp;
// check if responsive images config exists
if(UtilsHelper.responsiveImagesConfigExists(themeConfig)) {
dimensions = UtilsHelper.responsiveImagesDimensions(themeConfig, 'optionImages');
if(dimensions === false) {
dimensions = UtilsHelper.responsiveImagesDimensions(themeConfig, 'contentImages');
}
if(dimensions === false) {
return;
}
let responsiveImagesDir = path.parse(originalPath).dir;
responsiveImagesDir = path.join(responsiveImagesDir, 'responsive');
// create responsive images for each size
for(let dimensionName of dimensions) {
let filename = path.parse(originalPath).name;
let extension = path.parse(originalPath).ext;
if (forceWebp && ['.png', '.jpg', '.jpeg'].indexOf(extension.toLowerCase()) > -1) {
extension = '.webp';
}
let responsiveImagePath = path.join(responsiveImagesDir, filename + '-' + dimensionName + extension);
if(UtilsHelper.fileExists(responsiveImagePath)) {
fs.unlinkSync(responsiveImagePath);
}
}
}
}
/**
* Load option values from computed-options.js file (if exists)
*/
static loadComputedOptions(inputDir, themeConfig) {
let computedOptionsConfig = [];
let computedOptionsPath = path.join(inputDir, 'computed-options.js');
let overridedComputedOptionsPath = UtilsHelper.fileIsOverrided(inputDir, computedOptionsPath);
if (overridedComputedOptionsPath) {
computedOptionsPath = overridedComputedOptionsPath;
}
if (!UtilsHelper.fileExists(computedOptionsPath)) {
return computedOptionsConfig;
}
try {
computedOptionsConfig = UtilsHelper.requireWithNoCache(computedOptionsPath, themeConfig);
} catch(e) {
console.log('The theme computed-options.js file is corrupted');
return [];
}
return computedOptionsConfig;
}
}
module.exports = Themes;
================================================
FILE: app/back-end/vendor/locutus/htmlspecialchars.js
================================================
module.exports = function htmlspecialchars (string, quoteStyle, charset, doubleEncode) {
// discuss at: http://locutus.io/php/htmlspecialchars/
// original by: Mirek Slugen
// improved by: Kevin van Zonneveld (http://kvz.io)
// bugfixed by: Nathan
// bugfixed by: Arno
// bugfixed by: Brett Zamir (http://brett-zamir.me)
// bugfixed by: Brett Zamir (http://brett-zamir.me)
// revised by: Kevin van Zonneveld (http://kvz.io)
// input by: Ratheous
// input by: Mailfaker (http://www.weedem.fr/)
// input by: felix
// reimplemented by: Brett Zamir (http://brett-zamir.me)
// note 1: charset argument not supported
// example 1: htmlspecialchars("Test", 'ENT_QUOTES')
// returns 1: '<a href='test'>Test</a>'
// example 2: htmlspecialchars("ab\"c'd", ['ENT_NOQUOTES', 'ENT_QUOTES'])
// returns 2: 'ab"c'd'
// example 3: htmlspecialchars('my "&entity;" is still here', null, null, false)
// returns 3: 'my "&entity;" is still here'
var optTemp = 0
var i = 0
var noquotes = false
if (typeof quoteStyle === 'undefined' || quoteStyle === null) {
quoteStyle = 2
}
string = string || ''
string = string.toString()
if (doubleEncode !== false) {
// Put this first to avoid double-encoding
string = string.replace(/&/g, '&')
}
string = string
.replace(//g, '>')
var OPTS = {
'ENT_NOQUOTES': 0,
'ENT_HTML_QUOTE_SINGLE': 1,
'ENT_HTML_QUOTE_DOUBLE': 2,
'ENT_COMPAT': 2,
'ENT_QUOTES': 3,
'ENT_IGNORE': 4
}
if (quoteStyle === 0) {
noquotes = true
}
if (typeof quoteStyle !== 'number') {
// Allow for a single string or an array of string flags
quoteStyle = [].concat(quoteStyle)
for (i = 0; i < quoteStyle.length; i++) {
// Resolve string input to bitwise e.g. 'ENT_IGNORE' becomes 4
if (OPTS[quoteStyle[i]] === 0) {
noquotes = true
} else if (OPTS[quoteStyle[i]]) {
optTemp = optTemp | OPTS[quoteStyle[i]]
}
}
quoteStyle = optTemp
}
if (quoteStyle & OPTS.ENT_HTML_QUOTE_SINGLE) {
string = string.replace(/'/g, ''')
}
if (!noquotes) {
string = string.replace(/"/g, '"')
}
return string
}
================================================
FILE: app/back-end/window-manager.js
================================================
class PubliiWindowManager {
constructor () {
this.initEvents();
this.createMainWindow();
}
initEvents () {
}
createMainWindow () {
}
createEditorWindow () {
}
getMainWindow () {
}
getEditorWindow () {
}
removeMainWindow () {
}
removeEditorWindow () {
}
}
================================================
FILE: app/back-end/workers/backup/create.js
================================================
const { parentPort } = require('worker_threads');
const Backup = require('./../../modules/backup/backup.js');
parentPort.on('message', function(msg){
if(msg.type === 'dependencies') {
let siteName = msg.siteName;
let backupsDir = msg.backupsDir;
let sourceDir = msg.sourceDir;
let backupFilename = msg.backupFilename;
Backup.create(siteName, backupFilename, backupsDir, sourceDir);
}
});
================================================
FILE: app/back-end/workers/backup/restore.js
================================================
const { parentPort } = require('worker_threads');
const Backup = require('./../../modules/backup/backup.js');
parentPort.on('message', function(msg){
if (msg.type === 'dependencies') {
let siteName = msg.siteName;
let backupName = msg.backupName;
let backupsDir = msg.backupsDir;
let destinationDir = msg.destinationDir;
let tempDir = msg.tempDir;
Backup.restore(siteName, backupName, backupsDir, destinationDir, tempDir);
}
});
================================================
FILE: app/back-end/workers/deploy/deployment.js
================================================
const Deployment = require('./../../modules/deploy/deployment.js');
let deploymentInstance = false;
process.on('message', function(msg){
if(msg.type === 'dependencies') {
let appDir = msg.appDir;
let sitesDir = msg.sitesDir;
let siteConfig = msg.siteConfig;
let useFtpAlt = msg.useFtpAlt;
deploymentInstance = new Deployment(appDir, sitesDir, siteConfig, useFtpAlt);
deploymentInstance.initSession().then(() => true);
}
if (msg.type === 'continue-sync' && deploymentInstance) {
deploymentInstance.continueSync([]);
}
if ((msg.type === 'abort' || msg.type === 'cancel-sync') && deploymentInstance) {
if(
deploymentInstance.siteConfig.deployment.protocol === 'sftp' ||
deploymentInstance.siteConfig.deployment.protocol === 'sftp+key'
) {
deploymentInstance.client.connection.end();
}
if(
deploymentInstance.siteConfig.deployment.protocol === 'ftp' ||
deploymentInstance.siteConfig.deployment.protocol === 'ftp+tls'
) {
if (deploymentInstance.client.connection.close) {
deploymentInstance.client.connection.close();
} else {
deploymentInstance.client.connection.destroy();
}
}
setTimeout(function() {
process.kill(process.pid, 'SIGTERM');
}, 1000);
}
});
================================================
FILE: app/back-end/workers/import/check.js
================================================
const Import = require('./../../modules/import/import.js');
process.on('message', function(msg){
if(msg.type === 'dependencies') {
let appInstance = null;
let siteName = msg.siteName;
let filePath = msg.filePath;
let importer = new Import(appInstance, siteName, filePath);
let results = importer.checkFile();
process.send(results);
setTimeout(function () {
process.exit();
}, 1000);
}
});
================================================
FILE: app/back-end/workers/import/import.js
================================================
const Import = require('./../../modules/import/import.js');
process.on('message', function(msg){
if(msg.type === 'dependencies') {
let appInstance = msg.appInstance;
let siteName = msg.siteName;
let filePath = msg.filePath;
let importAuthors = msg.importAuthors;
let usedTaxonomy = msg.usedTaxonomy;
let autop = msg.autop;
let postTypes = msg.postTypes;
let importer = new Import(appInstance, siteName, filePath);
importer.importFile(importAuthors, usedTaxonomy, autop, postTypes);
}
});
================================================
FILE: app/back-end/workers/renderer/preview.js
================================================
const Renderer = require('./../../modules/render-html/renderer.js');
process.on('message', async function(msg){
if(msg.type == 'dependencies') {
let appDir = msg.appDir;
let sitesDir = msg.sitesDir;
let siteConfig = msg.siteConfig;
let itemID = msg.itemID;
let postData = msg.postData;
let previewMode = msg.previewMode;
let mode = msg.mode || 'full';
let previewLocation = msg.previewLocation;
let renderer = new Renderer(appDir, sitesDir, siteConfig, itemID, postData);
let result;
try {
result = await renderer.render(previewMode, previewLocation, mode);
} catch (e) {
process.send({
type: 'app-rendering-results',
result: e
});
}
// When process is ready - finish it by sending a proper event
process.send({
type: 'app-rendering-results',
result: result
});
setTimeout(function () {
process.exit();
}, 1000);
}
if(msg.type === 'abort') {
process.exit();
}
});
================================================
FILE: app/back-end/workers/thumbnails/post-images.js
================================================
const Image = require('./../../image.js');
const normalizePath = require('normalize-path');
const sizeOf = require('image-size');
let result = false;
let appInstance = false;
let imageData = false;
let image = false;
process.on('message', function(msg){
if(msg.type == 'dependencies') {
appInstance = msg.appInstance;
imageData = msg.imageData;
image = new Image(appInstance, imageData);
result = image.save(false);
} else if(msg.type == 'start-regenerating') {
if(!result.newPath) {
// When process is ready - finish it by sending a proper event
process.send({
type: 'finished',
result: result
});
setTimeout(function () {
process.exit();
}, 1000);
return;
}
if(!imageData.imageType) {
imageData.imageType = 'contentImages';
}
let promises = image.createResponsiveImages(result.newPath, imageData.imageType);
if(!promises.length) {
setTimeout(() => {
let thumbnailDimensions = false;
try {
thumbnailDimensions = sizeOf(result.url);
} catch(e) {
thumbnailDimensions = false;
}
process.send({
type: 'finished',
result: {
baseImage: result,
thumbnailPath: result.url,
thumbnailDimensions: thumbnailDimensions
}
});
}, 250);
setTimeout(function() {
process.exit();
}, 1000);
return;
}
Promise.all(promises).then(res => {
setTimeout(() => {
let thumbnailDimensions = false;
try {
thumbnailDimensions = sizeOf(res[0]);
} catch(e) {
thumbnailDimensions = false;
}
// When process is ready - finish it by sending a proper event
process.send({
type: 'finished',
result: {
baseImage: result,
thumbnailPath: res.map(url => 'file:///' + normalizePath(url)),
thumbnailDimensions: thumbnailDimensions
}
});
}, 250);
setTimeout(function() {
process.exit();
}, 1000);
}).catch(err => console.log(err));
}
});
================================================
FILE: app/back-end/workers/thumbnails/regenerate.js
================================================
const fs = require('fs-extra');
const path = require('path');
const Image = require('./../../image.js');
const UtilsHelper = require('./../../helpers/utils');
let context = false;
process.on('message', function(msg){
let mediaPath = false;
let catalog = false;
if (msg.type === 'dependencies') {
context = msg.context;
catalog = msg.catalog;
mediaPath = msg.mediaPath;
regenerateImages(mediaPath, catalog);
}
if (msg.type === 'next-images') {
catalog = msg.catalog;
mediaPath = msg.mediaPath;
regenerateImages(mediaPath, catalog);
}
if (msg.type === 'abort') {
setTimeout(function() {
process.exit();
}, 1000);
}
});
/**
* Regenerate images
*
* @param mediaPath
* @param catalog
*/
function regenerateImages(mediaPath, catalog) {
let fullPath = path.join(mediaPath, (catalog).toString());
let images = fs.readdirSync(fullPath);
images = images.filter(image => {
let fullImagePath = path.join(fullPath, image);
return isImage(image, fullImagePath);
});
if(!images.length) {
process.send({
type: 'empty'
});
return;
}
regenerateImage(images, fullPath, catalog);
}
/**
* Regenerate recursively single images
*
* @param images
* @param fullPath
* @param catalog
*/
function regenerateImage (images, fullPath, catalog) {
if (!images.length) {
return;
}
let image = images.shift();
let fullImagePath = path.join(fullPath, image);
let imageHelper = new Image(context.application, {
site: context.name,
id: catalog,
path: fullImagePath
});
let imageType = getImageType(context, image, catalog);
let promises = imageHelper.createResponsiveImages(fullImagePath, imageType);
if (promises[0] === 'NO-RESPONSIVE-IMAGES') {
process.send({
type: 'progress',
value: parseInt((context.totalProgress / context.numberOfImages) * 100, 10),
files: [
{
translation: 'core.images.responsiveImagesDisabled'
}
]
});
context.totalProgress++;
if (context.totalProgress >= context.numberOfImages) {
finishProcess();
} else {
regenerateImage(images, fullPath, catalog);
}
return;
}
if (!promises.length && context.totalProgress >= context.numberOfImages) {
finishProcess();
return;
}
if (promises) {
Promise.all(promises).then(results => {
// Send a +1 signal for the total progress
context.totalProgress++;
console.log('PROGRESS: ' + context.totalProgress, context.numberOfImages);
process.send({
type: 'progress',
value: parseInt((context.totalProgress / context.numberOfImages) * 100),
files: results
});
if (context.totalProgress >= context.numberOfImages) {
finishProcess();
return;
}
regenerateImage(images, fullPath, catalog);
}).catch(err => {
console.log(err);
context.totalProgress++;
regenerateImage(images, fullPath, catalog);
});
} else {
context.totalProgress++;
if (context.totalProgress >= context.numberOfImages) {
finishProcess();
return;
} else {
regenerateImage(images, fullPath, catalog);
}
}
}
/**
* Detect if given filename is an image
*
* @param image
* @param fullImagePath
* @returns {boolean}
* @private
*/
function isImage(image, fullImagePath) {
if(image.substr(0, 1) === '.') {
return false;
}
if(image === 'responsive') {
return false;
}
if(image === 'gallery') {
return false;
}
if(path.parse(image).ext === '') {
return false;
}
if(UtilsHelper.dirExists(fullImagePath)) {
return false;
}
return true;
}
/**
* Detects image type
*
* @param context
* @param image
* @param catalog
* @returns {string}
* @private
*/
function getImageType(context, image, catalog) {
let imageType = 'contentImages';
let featuredImage = false;
let preparedCatalog = catalog.replace('posts/', '');
if (context.postImagesRef && context.postImagesRef[0]) {
featuredImage = context.postImagesRef.filter(xref => xref.post_id == preparedCatalog);
}
if (featuredImage && featuredImage[0] && featuredImage[0].post_id && image === featuredImage[0].url) {
console.log('(i) Featured image detected (' + image + ')', preparedCatalog);
imageType = 'featuredImages';
} else if(catalog === 'website') {
console.log('(i) Website image detected (' + image + ')', preparedCatalog);
imageType = 'optionImages';
} else if(catalog.indexOf('tags') > -1) {
console.log('(i) Tag image detected (' + image + ')', preparedCatalog);
imageType = 'tagImages';
} else if(catalog.indexOf('authors') > -1) {
console.log('(i) Author image detected (' + image + ')', preparedCatalog);
imageType = 'authorImages';
} else if(catalog.substr(-7) === 'gallery') {
console.log('(i) Gallery image detected (' + image + ')', preparedCatalog);
imageType = 'galleryImages';
} else if (imageType === 'contentImages') {
console.log('(i) Content image detected (' + image + ')', preparedCatalog);
}
return imageType;
}
/**
* Ends the worker process
*
* @private
*/
function finishProcess() {
console.log('Finish process...');
process.send({
type: 'finished'
});
setTimeout(function() {
process.exit();
}, 1000);
}
================================================
FILE: app/build/config.gypi
================================================
# Do not edit. File was generated by node-gyp's "configure" step
{
"target_defaults": {
"cflags": [],
"default_configuration": "Release",
"defines": [],
"include_dirs": [],
"libraries": []
},
"variables": {
"asan": 0,
"build_v8_with_gn": "false",
"coverage": "false",
"debug_nghttp2": "false",
"enable_lto": "false",
"enable_pgo_generate": "false",
"enable_pgo_use": "false",
"force_dynamic_crt": 0,
"gas_version": "2.27",
"host_arch": "x64",
"icu_data_in": "../../deps/icu-small/source/data/in/icudt64l.dat",
"icu_endianness": "l",
"icu_gyp_path": "tools/icu/icu-generic.gyp",
"icu_locales": "en,root",
"icu_path": "deps/icu-small",
"icu_small": "true",
"icu_ver_major": "64",
"llvm_version": 0,
"node_byteorder": "little",
"node_debug_lib": "false",
"node_enable_d8": "false",
"node_enable_v8_vtunejit": "false",
"node_install_npm": "true",
"node_module_version": 64,
"node_no_browser_globals": "false",
"node_prefix": "/",
"node_release_urlbase": "https://nodejs.org/download/release/",
"node_shared": "false",
"node_shared_cares": "false",
"node_shared_http_parser": "false",
"node_shared_libuv": "false",
"node_shared_nghttp2": "false",
"node_shared_openssl": "false",
"node_shared_zlib": "false",
"node_tag": "",
"node_target_type": "executable",
"node_use_bundled_v8": "true",
"node_use_dtrace": "false",
"node_use_etw": "false",
"node_use_large_pages": "false",
"node_use_openssl": "true",
"node_use_pch": "false",
"node_use_perfctr": "false",
"node_use_v8_platform": "true",
"node_with_ltcg": "false",
"node_without_node_options": "false",
"openssl_fips": "",
"openssl_no_asm": 0,
"shlib_suffix": "so.64",
"target_arch": "x64",
"v8_enable_gdbjit": 0,
"v8_enable_i18n_support": 1,
"v8_enable_inspector": 1,
"v8_no_strict_aliasing": 1,
"v8_optimized_debug": 0,
"v8_promise_internal_field_count": 1,
"v8_random_seed": 0,
"v8_trace_maps": 0,
"v8_typed_array_max_size_in_heap": 0,
"v8_use_snapshot": "true",
"want_separate_host_toolset": 0,
"nodedir": "/home/dziudek/.cache/node-gyp/10.16.0",
"standalone_static_library": 1,
"g": "true",
"unsafe_perm": "true"
}
}
================================================
FILE: app/config/AST.app.config.js
================================================
const AstAppConfig = {
alwaysSaveSearchState: false,
backupsLocation: "",
previewLocation: "",
licenseAccepted: false,
openDevToolsInMain: false,
openDevToolsInPreview: false,
resizeEngine: "sharp",
sitesLocation: "",
startScreen: "",
timeFormat: 12,
closeEditorOnSave: true,
wideScrollbars: false,
showModificationDate: true,
showModificationDateAsColumn: false,
showPostSlugs: false,
showPostTags: true,
postsOrdering: 'id DESC',
pagesOrdering: ' DESC',
tagsOrdering: 'id DESC',
authorsOrdering: 'id DESC',
appTheme: 'system',
language: 'en-gb',
languageType: 'default',
enableAdvancedPreview: false,
editorFontSize: 18,
editorFontFamily: 'sans-serif',
experimentalFeatureAppAutoBeautifySourceCode: false,
experimentalFeatureAppFtpAlt: false,
experimentalFileManagerInSidebar: false,
uiZoomLevel: 1.0,
notificationsStatus: false
};
module.exports = AstAppConfig;
================================================
FILE: app/config/AST.currentSite.config.js
================================================
const AstCurrentSiteConfig = {
uuid: '',
name: '',
displayName: '',
description: '',
synced: false,
logo: {
color: '',
icon: ''
},
domain: '',
language: 'en-gb',
spellchecking: false,
advanced: {
cssCompression: 1,
htmlCompression: 1,
htmlCompressionRemoveComments: 1,
imagesQuality: 60,
alphaQuality: 100,
forceWebp: false,
webpLossless: false,
responsiveImages: 1,
mediaLazyLoad: 1,
versionSuffix: 1,
sitemapEnabled: 1,
sitemapAddTags: 1,
sitemapAddAuthors: 1,
sitemapAddHomepage: 1,
sitemapAddExternalImages: 0,
sitemapExcludedFiles: '',
usePageTitleInsteadItemName: false,
openGraphEnabled: 1,
openGraphImage: '',
openGraphAppId: '',
twitterCardsEnabled: 1,
twitterCardsType: 'summary',
twitterUsername: '',
metaTitle: '%sitename',
metaDescription: '',
noIndexThisPage: false,
noIndexForChatGPTBot: false,
noIndexForChatGPTUser: false,
noIndexForCommonCrawlBots: false,
homepageNoIndexPagination: false,
homepageNoPagination: false,
metaRobotsIndex: 'index, follow',
homepageMetaTitle: '%sitename',
homepageMetaDescription: '',
homepageMetaRobotsIndex: 'index, follow',
postMetaTitle: '%posttitle - %sitename ',
postMetaDescription: '',
pageMetaTitle: '%pagetitle - %sitename ',
pageMetaDescription: '',
pageUseTextWithoutCustomExcerpt: false,
postUseTextWithoutCustomExcerpt: false,
tagMetaTitle: 'Tag: %tagname - %sitename',
tagMetaDescription: '',
tagNoIndexPagination: false,
tagNoPagination: false,
metaRobotsTags: 'noindex, follow',
tagsMetaTitle: 'All tags - %sitename',
tagsMetaDescription: '',
metaRobotsTagsList: 'noindex, follow',
authorMetaTitle: 'Author: %authorname - %sitename',
authorMetaDescription: '',
metaRobotsAuthors: 'noindex, follow',
authorNoIndexPagination: false,
authorNoPagination: false,
displayEmptyAuthors: false,
displayEmptyTags: false,
errorMetaTitle: 'Error 404 - %sitename',
errorMetaDescription: '',
metaRobotsError: 'noindex, follow',
searchMetaTitle: 'Search - %sitename',
searchMetaDescription: '',
metaRobotsSearch: 'noindex, follow',
postsListingOrderBy: 'created_at',
postsListingOrder: 'DESC',
featuredPostsListingOrderBy: 'created_at',
featuredPostsListingOrder: 'DESC',
hiddenPostsListingOrderBy: 'created_at',
hiddenPostsListingOrder: 'DESC',
usePageAsFrontpage: false,
pageAsFrontpage: 0,
feed: {
title: 'displayName',
titleValue: '',
showFullText: 1,
numberOfPosts: 10,
showFeaturedImage: 1,
enableRss: 1,
enableJson: 1,
updatedDateType: 'createdAt',
showOnlyFeatured: 0,
excludeFeatured: 0
},
urls: {
cleanUrls: false,
addIndex: false,
postsPrefix: '',
tagsPrefix: 'tags',
tagsPrefixAfterPostsPrefix: false,
authorsPrefix: 'authors',
authorsPrefixAfterPostsPrefix: false,
pageName: 'page',
errorPage: '404.html',
searchPage: 'search.html'
},
customHeadCode: '',
customBodyCode: '',
customCommentsCode: '',
customSearchInput: '',
customSearchContent: '',
customFooterCode: '',
gdpr: {
enabled: false,
popupTitlePrimary: 'This website uses cookies',
popupDesc: 'Select which cookies to opt-in to via the checkboxes below; our website uses cookies to examine site traffic and user activity while on our site, for marketing, and to provide social media functionality.',
showPrivacyPolicyLink: true,
privacyPolicyLinkLabel: 'More details...',
privacyPolicyPostId: 0,
privacyPolicyLinkType: 'internal',
privacyPolicyExternalUrl: '',
groups: [
{
'name': 'Required',
'id': '-',
'description': ''
}
],
embedConsents: [],
gConsentModeEnabled: false,
gConsentModeDefaultState: {
ad_storage: false,
ad_personalization: false,
ad_user_data: false,
analytics_storage: false,
personalization_storage: false,
functionality_storage: false,
security_storage: false
},
gConsentModeGroups: [],
saveButtonLabel: 'Accept all',
behaviour: 'badge',
badgeLabel: 'Cookie Policy',
behaviourLink: '#cookie-settings',
popupPosition: 'centered',
popupShowRejectButton: false,
popupRejectButtonLabel: 'Reject',
allowAdvancedConfiguration: true,
advancedConfigurationLinkLabel: 'Manage preferences',
advancedConfigurationAcceptButtonLabel: 'Accept all',
advancedConfigurationRejectButtonLabel: 'Reject all',
advancedConfigurationSaveButtonLabel: 'Save settings',
advancedConfigurationTitle: 'Cookie settings',
advancedConfigurationDescription: 'We use cookies to enhance your browsing experience, serve personalized ads or content, and analyze our traffic. By clicking "Accept All", you consent to our use of cookies.',
advancedConfigurationShowDescriptionLink: true,
cookieSettingsRevision: '1',
cookieSettingsTTL: '90',
debugMode: false,
vimeoNoTrack: false,
ytNoCookies: false,
settingsVersion: ''
},
relatedPostsOrder: 'default',
relatedPostsCriteria: 'titles-and-tags',
relatedPostsIncludeAllPosts: true,
editors: {
wysiwygAdditionalValidElements: '',
customElements: '',
codemirrorTabSize: 4,
codemirrorAutoIndent: true
}
},
deployment: {
protocol: '',
relativeUrls: false,
port: '',
server: '',
username: '',
password: '',
askforpassword: false,
rejectUnauthorized: true,
path: '',
passphrase: '',
sftpkey: '',
s3: {
customProvider: false,
provider: 'aws',
endpoint: '',
id: '',
key: '',
bucket: '',
region: '',
customRegion: '',
prefix: '',
acl: 'public-read',
htmlCacheControl: 'no-cache, no-store',
otherCacheControl: 'public, max-age=2592000'
},
git: {
url: '',
branch: '',
user: '',
password: '',
commitAuthor: '',
commitEmail: '',
commitMessage: 'Publii: update content'
},
github: {
server: 'api.github.com',
user: '',
repo: '',
branch: '',
token: '',
parallelOperations: 1,
apiRateLimiting: 1
},
gitlab: {
server: 'https://gitlab.com/',
rejectUnauthorized: true,
repo: '',
branch: '',
token: ''
},
netlify: {
id: '',
token: ''
},
google: {
key: '',
bucket: '',
prefix: ''
},
manual: {
output: 'catalog',
outputDirectory: ''
}
}
};
module.exports = AstCurrentSiteConfig;
================================================
FILE: app/default-files/default-languages/en-gb/config.json
================================================
{
"name": "English - default",
"version": "1.8.1",
"author": "Publii Team",
"publiiSupport": "0.47.0",
"momentLocale": "en",
"wysiwygTranslation": false
}
================================================
FILE: app/default-files/default-languages/en-gb/translations.json
================================================
{
"author": {
"addNewAuthor": "Add new author",
"author": "Author",
"authorDataParsingErrorMessage": "An error occurred during parsing of author data for ID: ",
"authorHasBeenUpdated": "Author has been updated",
"authorLink": "Author link",
"authorName": "Author name",
"authorNameCannotBeEmptyErrorMessage": "Author name cannot be empty. Please enter a name",
"authorNameInUseErrorMessage": "Provided author name is already in use. Please try another name.",
"authorNameSimilarInUseErrorMessage": "Provided author name is in use; author names are not case-sensitive. Please try another name.",
"authorPage": "Author page",
"authorSlugCannotBeEmpty": "Author slug cannot be empty",
"avatar": "Avatar",
"avatarAndFeaturedImage": "Avatar and Featured image",
"cannotRemoveMainAuthor": "The main author cannot be removed.",
"changePageAuthor": "Change page author",
"changePostAuthor": "Change post author",
"editAuthor": "Edit author",
"eMail": "E-mail",
"filterOrSearchAuthors": "Filter or search authors...",
"gravatarEmailWarningMessage": "Enter the email address you used for registering your account on Gravatar.",
"mainAuthor": "Main author",
"mainAuthorCannotBeRemoved": "This is the main author of this website. It cannot be removed.",
"newAuthorHasBeenCreated": "New author has been created",
"noAuthorsMatchingYourCriteria": "There are no authors matching your criteria.",
"removeAuthorsMessage": "Do you really want to remove selected authors?",
"removeAuthorsSuccessMessage": "Selected authors have been removed",
"selectAuthor": "Select author",
"selectAuthorPage": "Select author page",
"themeDoesNotSupportFeaturedImagesForAuthors": "Your theme does not support featured images for authors",
"whenYouUseGravatarYourSiteVisitorsWillQueryAThirdPartyServer": "When you use the Gravatar service, please note, that your site visitors need to query a third-party server to load your avatar image.",
"toUseThisOptionEnableIndexingAuthorPages": "To use this option, first enable indexing of author pages in SEO settings.",
"url": "URL",
"useGravatarMessage": "Use Gravatar to provide your author avatar",
"useGravatarServiceMessage": "In order to use Gravatar service first provide the author's e-mail.",
"website": "Website"
},
"core": {
"archive": {
"destinationNotExists": "Specified output destination not exists",
"errorDuringCreatingTAR": "An error occurred during TAR archive creation. Please try again.",
"errorDuringCreatingZIP": "An error occurred during ZIP archive creation. Please try again."
},
"backup": {
"destinationDirectoryDoesNotExists": "Destination directory does not exist",
"errorDuringFileSaveProcess": "An error occurred during the file saving process",
"errorDuringReadingBackupFile": "An error occurred during reading of the backup file",
"fileDoesNotExists": "Backup file does not exist",
"fileIsCorrupted": "The backup file is corrupted - aborting the restore process.",
"locationDoesNotExists": "Backup location does not exist",
"temporaryDirectoryDoesNotExists": "Temporary directory does not exist"
},
"credits": {
"errorLoadingLicenseMsg": "An error occurred during loading of the license. Please try again."
},
"images": {
"responsiveImagesDisabled": "Responsive images are disabled under site settings - all responsive images have been removed."
},
"rendering": {
"renderingProcessCrashed": "Rendering process crashed",
"renderingProcessCrashedMsg": "For more information, check the rendering-errors.log and rendering-process.log files under Tools -> Log viewer.",
"renderingProcessFailed": "Rendering process failed"
},
"server": {
"branchDoesNotExist": "Selected branch does not exist.",
"creatingNewRemoteFilesTree": "Creating new remote files tree...",
"finishingDeploymentProcess": "Finishing the deployment process...",
"getInfoAboutLatestCommit": "Get information about the latest commit...",
"preparingFilesTreeToUpload": "Preparing file tree for upload...",
"repositoryDoesNotExist": "Selected repository does not exist.",
"requestLimitExceededInfo": "Your API request limit was exceeded ({remaining} requests left). Please wait till {resetTime} UTC and then try again.",
"requestTimeout": "Request timeout.",
"retrievingHandlerOfRemoteFilesTree": "Retrieving remote file tree handler...",
"retrievingRemoteFilesTree": "Retrieving the remote file tree...",
"tokenOrServerAddressInvalid": "Provided credentials or server/repository address are invalid.",
"tooManyFilesInfo": "Your website contains over 4000 items ({numberOfFiles} files and directories). Currently our Github Pages implementation only supports websites with up to 4000 items."
},
"site": {
"noConfigurationForResponsiveImages": "There is no configuration data for responsive images",
"noImagesToRegenerate": "There are no images to regenerate",
"noThemeSelected": "No theme selected"
},
"sureYouWantQuit": "Are you sure you want to quit? \nAll unsaved changes will be lost.",
"wpImport": {
"authorsProgressInfo": "Importing authors ({progress} / {total})",
"imageDownloadError": "An error occurred during downloading of the image: {image}",
"imagesProgressInfo": "Downloading images ({progress} / {total})",
"pagesProgressInfo": "Importing pages ({progress} / {total})",
"postsProgressInfo": "Importing posts ({progress} / {total})",
"tagsProgressInfo": "Importing tags ({progress} / {total})"
}
},
"customHTML": {
"tabs": {
"head": "Head",
"body": "Body",
"comments": "Comments",
"searchInput": "Search input",
"searchContent": "Search content",
"socialSharing": "Social sharing",
"footer": "Footer",
"beforePost": "Before every post",
"afterPost": "After every post",
"afterPage": "After every page"
}
},
"date": {
"apr": "Apr",
"aug": "Aug",
"changePagePublicationDate": "Change page publication date",
"changePostPublicationDate": "Change post publication date",
"dec": "Dec",
"feb": "Feb",
"jan": "Jan",
"jul": "Jul",
"jun": "Jun",
"mar": "Mar",
"may": "May",
"nov": "Nov",
"oct": "Oct",
"sep": "Sep"
},
"editor": {
"addHeading": "Add heading",
"addLabel": "Add label",
"alignTextCenter": "Align text center",
"alignTextLeft": "Align text left",
"alignTextRight": "Align text right",
"blockEditorHelpPanelDesc": "You can insert a block either by clicking the + or TAB button on a new line, or typing the following shortcuts or markdown syntax on a new line:",
"blocks": {
"code": {
"idTooltip": "This value will be used as the code ID"
},
"cssClassesLabel": "CSS class",
"cssClassesTooltip": "These CSS classes will be added in the class attribute of the field",
"embed": {
"idTooltip": "This value will be used as the embed ID"
},
"gallery": {
"idTooltip": "This value will be used as the gallery ID"
},
"header": {
"customIdLabel": "Use custom ID",
"customIdTooltip": "Enable this option if you want to use your own ID, instead of the auto-generated ID",
"idTooltip": "This value will be used as the header ID"
},
"html": {
"idTooltip": "This value will be used as the HTML ID"
},
"idLabel": "ID",
"image": {
"idTooltip": "This value will be used as the image ID"
},
"list": {
"idTooltip": "This value will be used as the list ID"
},
"paragraph": {
"idTooltip": "This value will be used as the paragraph ID",
"styleLabel": "Paragraph style",
"styles": {
"highlight": "Highlight",
"info": "Info",
"success": "Success",
"warning": "Warning"
},
"styleTooltip": "Select additional styling for the paragraph block"
},
"quote": {
"idTooltip": "This value will be used as the quote ID"
},
"separator": {
"idTooltip": "This value will be used as the separator ID"
},
"toc": {
"idTooltip": "This value will be used as the ID of the table of contents"
}
},
"cantSavePostWithEmptyTitle": "You cannot save a post with an empty title.",
"cantSavePageWithEmptyTitle": "You cannot save a page with an empty title.",
"changesSaved": "Changes have been saved",
"clearFormatting": "Clear formatting",
"clickToConfirm": "Click to confirm",
"code": "Code",
"conversions": {
"toCode": "Code",
"toHeader": "Heading",
"toHTML": "HTML",
"toList": "List",
"toParagraph": "Paragraph",
"toQuote": "Quote"
},
"convertTo": "Convert to:",
"custom": "Custom",
"defaultSelect": "- Select -",
"deleteBlock": "Delete block",
"dot": "Dot",
"dots": "Dots",
"dragAndDropImgToEditor": "Drag and drop an image onto the editor",
"dropToUploadYourPhotoOr": "Drop to upload your photo or",
"dropToUploadYourPhotosOr": "Drop to upload your photos or",
"element": "Element",
"emptyGalleryBlock": "Empty gallery block",
"emptyImageBlock": "Empty image block",
"enterAltText": "Enter alternative text",
"enterCaption": "Enter caption",
"enterUrlOrEmbedCode": "Enter URL or embed code...",
"errorOccurred": "An error occurred - please try again.",
"gallery": "Gallery",
"header": "Heading",
"heading1": "Heading 1",
"heading2": "Heading 2",
"heading3": "Heading 3",
"heading4": "Heading 4",
"heading5": "Heading 5",
"heading6": "Heading 6",
"hideBulkEdit": "Hide Bulk Edit",
"hideHelp": "Hide Help",
"hideStats": "Hide Stats",
"html": "HTML",
"insertGallery": "Insert gallery",
"list": "List",
"markdown": "Markdown",
"markdownHelpPanelDesc": "You can easily manage headings, text styles or create other HTML elements by using the following keyboard shortcuts or markdown syntax:",
"newDraftCreated": "New draft has been created",
"newPageCreated": "New page has been created",
"newPostCreated": "New post has been created",
"nothingFound": "No blocks found",
"paragraph": "Paragraph",
"quote": "Quote",
"quoteAuthor": "Quote author",
"quoteText": "Quote text",
"readMore": "Read more",
"readMoreBlockName": "Readmore",
"selectFiles": "Select files",
"separator": "Separator",
"shortcuts": "Shortcuts",
"sourceCode": "Source code",
"searchForABlock": "Search for a block...",
"startWriting": "Start writing...",
"startWritingOrPressTabToChooseBlock": "Start writing or press the TAB key to choose a block.",
"toc": "TOC",
"tocAutoGenerationInfo": "The table of contents is generated automatically based on the headings (H1-H6) of your content.",
"togglePostStatsPanel": "Toggle post statistics panel",
"unableToSetSpellCheckerForLanguage": "(!) Unable to set spellchecker to use the selected language - ",
"useOrderedList": "Use ordered list",
"useUnorderedList": "Use unordered list",
"viewBulkEdit": "Bulk Edit",
"viewHelp": "View Help",
"viewStats": "View Stats",
"wideLine": "Wide line"
},
"file": {
"addNewFile": "Add new file",
"backups": "Backups",
"createBackup": "Create backup",
"createBackupConfirmMsg": "Select a name for your backup - filename can contain only alphanumeric characters, dashes and underscores:",
"createBackupErrorMsg": "An error occurred during backup creation. Please try again.",
"createBackupNameEmptyMsg": "Provided filename cannot be empty. Please enter a name.",
"createBackupNameInUseMsg": "Provided filename ({filename}) is already in use by an existing backup. Please try again with a different name.",
"createBackupSuccessMsg": "Backup has been created.",
"createFirstBackupMsg": "You don't have any backups, yet. Let's create the first one!",
"creatingBackup": "Creating backup",
"creationDate": "Creation date",
"deleteBackupsConfirmMsg": "Do you really want to remove the selected backups? This action cannot be undone.",
"deleteBackupsErrorMsg": "An error occurred during removal of the selected backups. Please try again.",
"deleteBackupsSuccessMsg": "Selected backups have been removed",
"dragAndDropBackupFile": "Drag and drop backup file here or",
"dropYourFileHere": "Drop your file here",
"file": "File",
"fileFromFileManager": "File from File Manager",
"fileManager": "File manager",
"filename": "Filename",
"files": "Files",
"fileSemicolon": "File:",
"fileSize": "File Size",
"filterOrSearchFiles": "Filter or search files...",
"mediaFiles": "media/files",
"noBackupsAvailable": "No backups available",
"noFileInMediaFilesDirInfo": "There are no files in the media/files directory...",
"noFileInRootDirInfo": "There are no files in the root directory...",
"noFileMatchingCriteriaInfo": "There are no files matching your criteria.",
"operations": "Operations",
"preparingFilesInOutputDir": "Preparing files in the output directory",
"provideNameForNewFile": "Please provide name for a new file",
"removeFilesConfirmMsg": "Do you really want to remove the selected files? This action cannot be undone.",
"removeFilesSuccessMsg": "Selected files have been removed",
"rename": "Rename",
"renameBackupConfirmLabel": "Rename file",
"renameBackupConfirmMsg": "Please specify a new backup filename:",
"renameBackupErrorMsg": "An error occurred while renaming the selected backup file. Please try again.",
"renameBackupNameEmptyMsg": "The backup filename cannot be empty. Please try again.",
"renameBackupNameInUseMsg": "The specified name is in use by another backup file. Please try again.",
"renameBackupSameNameMsg": "The specified name is the same as the old name. Please try again.",
"renameBackupSuccessMsg": "The backup has been successfully renamed.",
"restore": "Restore",
"restoreBackupConfirmLabel": "Restore backup",
"restoreBackupConfirmMsg": "Do you really want to restore the selected backup? Existing files will be overwritten.",
"restoreBackupErrorMsg": "An error occurred while restoring the selected backup file: ",
"restoreBackupSuccessMsg": "The website has been successfully restored.",
"rootDirectory": "root directory",
"selectedFileExistsMsg": "The following files cannot be copied as they already exist in the selected directory: ",
"selectedFilenameInUseMsg": "The selected filename is in use. Please use a different filename.",
"selectFile": "Select file",
"selectFileFromFileManager": "Select a file from the File Manager",
"uploadFiles": "Upload files"
},
"gdpr": {
"addGroup": "Add group",
"embedConsents": {
"addRule": "Add rule",
"groupButtonLabel": "Button label",
"groupCookieGroup": "Cookies group",
"groupRule": "URL contains",
"groupRulePlaceholder": "youtube.com",
"groupTextPlaceholder": "Consent text"
},
"groupDescriptionPlaceholder": "Enter a cookies group description here",
"groupID": "Group ID",
"groupName": "Group name",
"state": "State"
},
"image": {
"addImages": "Add images",
"align": "Align",
"centeredImage": "Centred image",
"columns": "Columns:",
"dropFeaturedImageOr": "Drop featured image here or",
"dropToUploadPhotoOr": "Drop to upload your photo or",
"eightColumns": "8 columns",
"enterAltText": "Enter alt text",
"enterCaption": "Enter caption",
"fiveColumns": "5 columns",
"fourColumns": "4 columns",
"fullWidth": "Full-width",
"fullWidthImage": "Full-width image",
"image": "Image",
"imageAlternativeText": "Image alternative text",
"imageCaption": "Image caption",
"images": "Images",
"insertEditGallery": "Insert/Edit Gallery",
"layout": "Layout",
"loadingImage": "Loading image...",
"none": "None",
"oneColumn": "1 column",
"pictures": "pictures",
"removeImage": "Remove image",
"sevenColumns": "7 columns",
"sixColumns": "6 columns",
"threeColumns": "3 columns",
"twoColumns": "2 columns",
"uploading": "Uploading",
"wide": "Wide",
"wideImage": "Wide image",
"yourGalleryIsEmpty": "Your gallery is empty"
},
"langs": {
"addLanguageSuccessMessage": "Language has been added",
"deleteLanguage": "Delete language",
"getMoreLanguages": "Get more languages",
"goToLanguagesManager": "Go to the languages manager",
"installLanguage": "Install language",
"isOutdated": "Outdated",
"isOutdatedTitle": "This language supports Publii up to v.{supportedVersion}, while you are using Publii v.{currentVersion} - please update Publii to use this language.",
"language": "Language:",
"languageChangedMsg": "Application language changed",
"languageChangeError": "Language change error occurred - please try again.",
"languageLoadingError": "An error occurred during loading of app language. The default language (english) will be used instead. Please go to the language settings to select another.",
"languages": "Languages",
"removeLanguageMessage": "Do you really want to remove the {languageName} language?",
"removeLanguageSuccessMessage": "The selected language has been removed",
"updatedLanguageSuccessMessage": "Selected language has been updated",
"uploadLanguageErrorMessage": "An error occurred during installation. Please try again."
},
"link": {
"addDownloadAttr": "Add \"download\" attribute",
"addLink": "Add link",
"addNofollow": "Add rel=\"nofollow\"",
"downloadAttribute": "Link \"download\" attribute",
"insertEditLink": "Insert/Edit link",
"linkInvalidMsg": "Sorry! This link seems to be invalid.",
"linkRelAttribute": "Link \"rel\" attribute",
"linkTitleAttribute": "Link \"title\" attribute",
"linkClassAttribute": "CSS class",
"linkTarget": "Link target",
"openInNewWindow": "Open in new window",
"previewLinkInBrowser": "Preview this link in browser",
"previewOnlyExternalLinksMsg": "You can only preview external links in the post editor",
"removeLink": "Remove link",
"selectLinkType": "Select link type"
},
"menu": {
"addMenuItem": "Add menu item",
"addNewMenu": "Add new menu",
"addNewMenuItem": "Add new menu item",
"addSubmenu": "Add submenu",
"addSubmenuItem": "Add submenu item",
"assignedMenu": "Assigned menu",
"classCSS": "CSS class",
"createNewMenu": "Create new menu",
"deleteThisMenuItem": "Delete this menu item",
"duplicateThisMenuItem": "Duplicate this menu item",
"editMenuItem": "Edit menu item",
"editMenuName": "Edit menu name",
"editThisMenuItem": "Edit this menu item",
"externalLink": "External link",
"externalURL": "External URL",
"hideThisMenuItem": "Hide this menu item",
"insertActions": "Insert selected item:",
"insertAfter": "after",
"insertAsChild": "as submenu",
"insertBefore": "before",
"internalLink": "Internal link",
"items": "Items",
"label": "Label",
"likedItemError": "Linked item hasn't been rendered (empty tag/author page), doesn't exist or has been trashed",
"likedItemIsADraft": "Linked item is a draft",
"menu": "Menu",
"menuItemsRemoveMessage": "Do you really want to remove selected menu item?",
"menuItemIsHidden": "This menu item is hidden",
"menuNameCannotBeEmptyCreateNewMenuErrorMessage": "The menu name field cannot be empty. Please enter a menu name.",
"menuNameCannotBeEmptyErrorMessage": "The menu name field cannot be empty. Please enter a new menu name.",
"menuNameExistsErrorMessage": "The specified menu name already exists. Please use a different name.",
"menuNameHasBeenEdited": "Menu name has been edited",
"menuNameInUseErrorMessage": "The specified menu name is in use. Please enter a new menu name.",
"menusRemoveMessage": "Do you really want to remove the selected menus?",
"menusRemoveSuccessMessage": "The selected menus have been removed",
"moveItem": "Move",
"newMenuCreated": "New menu has been created",
"noMenusAvailable": "No menus available",
"noMenusCreateNewOne": "You don't have any menus, yet. Let's create the first one!",
"noMenusMessage": "There are no menu items; create new ones via the \"Add menu item\" button above.",
"provideNameForNewMenu": "Provide a name for your new menu:",
"provideNewNameForMenu": "Provide a new name for the selected menu:",
"selectItemType": "Select item type",
"selectLinkTarget": "Select link target",
"showThisMenuItem": "Show this menu item",
"textSeparator": "Text separator",
"type": "Type",
"unassigned": "Unassigned",
"unselectItem": "Unselect",
"updateLabel": {
"author": "Use author name",
"page": "Use page title",
"post": "Use post title",
"tag": "Use tag name"
}
},
"menuPositionPopup": {
"invalidValue": "Invalid value: the entered value cannot be 0 and exceed the theme's default maximum limit. Use -1 for no restrictions.",
"maxLevels": "Max level:",
"themeDefaultValue": "Theme default value:",
"title": "Configure menu position",
"usedBy": "Used by other menu:"
},
"notifications": {
"badgeNew": "New",
"latestVersion": "Latest version",
"currentVersion": "Current version",
"checkUpdates": "Check for updates",
"consentInfo": "You are currently receiving update notifications. If you don't want to receive them, you can",
"consentReject": "click here to reject your consent.",
"consentStateTitle": "Enable update notifications",
"consentStateDescription": "Publii can automatically check for new updates and let you know when they are available. For this, a simple connection to the Publii server is made, which includes your device's IP address. This information is used only to provide update notifications and is not stored. You can disable this option anytime in the app settings.",
"disabled": "Disabled",
"downloadUpdate": "Download",
"giveConsent": "Enable notifications",
"goToNotificationsCenter": "Go to Notifications Center",
"markAsRead": "Mark as read",
"news": "News",
"notifications": "Notifications",
"noUpdatesTitle": "No updates available",
"noUpdatesDescription": "You are using the latest version of Publii and extensions.",
"pluginUpdatesAvailable": "Plugin updates available",
"publiiUpdateAvailable": "Publii update is available",
"rejectConsentConfirm": "By withdrawing your consent, you will no longer receive notifications about new versions of Publii, its extensions (themes and plugins), or other important updates.",
"viewDetails": "View details",
"readMore": "Read more",
"rejectConsent": "Not now",
"themeUpdatesAvailable": "Theme updates available"
},
"page": {
"addNewPage": "Add new page",
"addPageTitle": "Add page title",
"all": "All",
"closeHierarchy": "Close edit",
"changePageDate": "Change page date",
"cleanUrlsDisabled": "Activate 'Pretty URLs' in the Site settings to unlock the Edit hierarchy option. This will allow you to easily manage the parent-child relationships between your pages.",
"editHierarchy": "Edit hierarchy",
"configureThemeBeforeGeneratingPreview": "A theme must be selected and configured for this website before a preview of this page may be generated.",
"convertToPost": "Convert to post",
"currentDefaultTemplate": "Current default template",
"customPageTypes": "Custom Page Types",
"drafts": "Drafts",
"duplicate": "Duplicate",
"duplicatePageErrorMessage": "An error occurred during duplication of the selected pages. Please try again.",
"duplicatePageSuccessMessage": "Selected pages have been duplicated",
"editorBlock": "Block editor",
"editorBlockInfo": "A modern and intuitive editor with shortkey and markdown support to make blogging easy, with no need to worry about HTML or other code elements.",
"editorBlockNotSupportedEditPageInfo": "The current theme does not support the block editor used in this page. This page may be rendered incorrectly to the output files.",
"editorBlockNotSupportedNewPageInfo": "The current theme does not support the block editor used in this page. This page may be rendered incorrectly to the output files.",
"editorBlockUse": "Use Block editor",
"editorMarkdown": "Markdown editor",
"editorMarkdownInfo": "This editor supports Markdown syntax as shorthand for producing content quickly; great for extensive, no-frills projects such as documentation.",
"editorMarkdownUse": "Use Markdown editor",
"editorWYSIWYG": "WYSIWYG editor",
"editorWYSIWYGInfo": "This editor provides a familiar word-processing experience, with additional tools for users that want to control every aspect of their page content.",
"editorWYSIWYGUse": "Use WYSIWYG editor",
"editPageAnyway": "Edit page anyway",
"filterOrSearchPages": "Filter or search pages...",
"insertActions": "Insert selected page",
"insertAfter": "after",
"insertAsChild": "as subpage",
"insertBefore": "before",
"isHomepage": "Homepage",
"markAsDraft": "Mark as draft",
"markAsFeatured": "Mark as featured",
"markAsUnfeatured": "Mark as unfeatured",
"modificationDate": "Modification date",
"moveItem": "Move",
"moveToTrash": "Move to trash",
"noPagesMatchingYourCriteria": "There are no pages matching your criteria.",
"noParentPage": "No parent",
"openEditorAnyway": "Open editor anyway",
"page": "Page",
"pageAuthor": "Page author",
"pageLink": "Page link",
"pageName": "Page name:",
"pages": "Pages",
"pageSettings": "Page settings",
"pageSlug": "Page slug",
"pageSlugLengthWarning": "Page slugs longer than 250 characters can lead to the creation of broken files during website rendering.",
"pageSlugTooLong": "Page slug is too long",
"pageSlugUpdateButton": "Update",
"pageState": "Page state",
"pageStatusChangeSuccessMessage": "Status of the selected pages has been changed",
"pageTemplate": "Page template",
"parentPage": "Parent page",
"publicationDate": "Publication date",
"publish": "Publish",
"published": "Published",
"removePageMessage": "Do you really want to remove the selected pages? This cannot be undone.",
"removePageSuccessMessage": "Selected pages have been removed",
"selectPage": "Select page",
"setAsParent": "Set as parent",
"setAsSubpage": "Set as subpage",
"setCustomPageDate": "Set custom post date",
"status": "Status",
"thisPageIsADraft": "This page is a draft",
"title": "Title",
"trashed": "Trashed",
"unselectItem": "Unselect",
"updatedOn": "Updated on",
"url": "URL"
},
"plugins": {
"addPluginSuccessMessage": "Plugin has been added",
"deletePlugin": "Delete plugin",
"getMorePlugins": "Get more plugins",
"goToPluginsManager": "Go to the plugins manager",
"installPlugin": "Install plugin",
"isIncompatible": "Is outdated",
"isIncompatibleTitle": "This plugin supports Publii from v.{supportedVersion}, while you are using Publii v.{currentVersion} - please update Publii to use this plugin.",
"newVersionAvailable": "New version available",
"plugin": "Plugin:",
"plugins": "Plugins",
"removePluginMessage": "Do you really want to remove the {pluginName} plugin?",
"removePluginSuccessMessage": "The selected plugin has been removed",
"updatedPluginSuccessMessage": "Selected plugin has been updated",
"uploadPluginErrorMessage": "An error occurred during installation. Please try again."
},
"post": {
"addNewPost": "Add new post",
"addPostTitle": "Add post title",
"all": "All",
"changePostDate": "Change post date",
"characters": "Characters",
"configureThemeBeforeGeneratingPreview": "A theme must be selected and configured for this website before a preview of this post may be generated.",
"convertToPage": "Convert to page",
"currentDefaultTemplate": "Current default template",
"customPostTypes": "Custom Post Types",
"drafts": "Drafts",
"duplicate": "Duplicate",
"duplicatePostErrorMessage": "An error occurred during duplication of the selected posts. Please try again.",
"duplicatePostSuccessMessage": "Selected posts have been duplicated",
"editorBlock": "Block editor",
"editorBlockInfo": "A modern and intuitive editor with shortkey and markdown support to make blogging easy, with no need to worry about HTML or other code elements.",
"editorBlockNotSupportedEditPostInfo": "The current theme does not support the block editor used in this post. This post may be rendered incorrectly to the output files.",
"editorBlockNotSupportedNewPostInfo": "The current theme does not support the block editor used in this post. This post may be rendered incorrectly to the output files.",
"editorBlockUse": "Use Block editor",
"editorMarkdown": "Markdown editor",
"editorMarkdownInfo": "This editor supports Markdown syntax as shorthand for producing content quickly; great for extensive, no-frills projects such as documentation.",
"editorMarkdownUse": "Use Markdown editor",
"editorWYSIWYG": "WYSIWYG editor",
"editorWYSIWYGInfo": "This editor provides a familiar word-processing experience, with additional tools for users that want to control every aspect of their page content.",
"editorWYSIWYGUse": "Use WYSIWYG editor",
"editPostAnyway": "Edit post anyway",
"excluded": "Excluded",
"excludeFromHomepage": "Exclude from homepage",
"featured": "Featured",
"filterOrSearchPosts": "Filter or search posts...",
"hidden": "Hidden",
"hidePost": "Hide Post",
"includeInHomepage": "Include in homepage",
"markAsDraft": "Mark as draft",
"markAsFeatured": "Mark as featured",
"markAsUnfeatured": "Mark as unfeatured",
"min": "min",
"modificationDate": "Modification date",
"moveToTrash": "Move to trash",
"noPostsMatchingYourCriteria": "There are no posts matching your criteria.",
"openEditorAnyway": "Open editor anyway",
"paragraphs": "Paragraphs",
"post": "Post",
"postAuthor": "Post author",
"postLink": "Post link",
"postName": "Post name:",
"postPage": "Post page",
"posts": "posts",
"postSettings": "Post settings",
"postSlug": "Post slug",
"postSlugLengthWarning": "Post slugs longer than 250 characters can lead to the creation of broken files during website rendering.",
"postSlugTooLong": "Post slug is too long",
"postSlugUpdateButton": "Update",
"postState": "Post state",
"postStatusChangeSuccessMessage": "Status of the selected posts has been changed",
"postTemplate": "Post template",
"postWillNotAppearOnHomepageListMsg": "Post will not appear on homepage listings",
"postWillNotAppearOnListMsg": "Post will not appear in any generated post lists such as tag or author pages",
"publicationDate": "Publication date",
"publish": "Publish",
"published": "Published",
"readingTime": "Reading Time",
"removePostMessage": "Do you really want to remove the selected posts? This cannot be undone.",
"removePostSuccessMessage": "Selected posts have been removed",
"selectPostPage": "Select post page",
"sentences": "Sentences",
"setCustomPostDate": "Set custom post date",
"status": "Status",
"thisPostIsADraft": "This post is a draft",
"thisPostIsExcludedFromHomepage": "This post is excluded from the homepage",
"thisPostIsFeatured": "This post is featured",
"thisPostIsHidden": "This post is hidden",
"title": "Title",
"trashed": "Trashed",
"uniqueWords": "Unique words",
"updatedOn": "Updated on",
"url": "URL",
"words": "Words"
},
"publii": {
"aboutPublii": "About Publii",
"currentPubliiVersion": "Version",
"accept": "Accept",
"copyright": "Copyright 2026 TidyCustoms. All rights reserved.
Publii is designed and maintained by core team and is made possible by the Electron Open Source project and other ",
"creditsIntro": "Publii uses the following third-party Open Source Software:",
"dataCollectionInfo": "We do not collect any personal data while you use Publii app; we do not store, track, or allow third parties to collect, personally identifiable information about you. ",
"homepage": "Homepage",
"license": "License",
"licensingInformation": "Licensing information",
"openSourceSoftware": "Open Source Software",
"publiiLicenseAgreement": "Publii License Agreement.",
"publiiLicenseAgreementInfo": "This software is licensed under GNU GPL version 3.
By clicking \"Accept\" you agree to the"
},
"rendering": {
"errorDuringPreviewCreatingMsg": "An error occurred during preview creation.",
"rendering": "Rendering...",
"renderingErrorText": "An error occurred during the website rendering process.",
"renderingPleaseWait": "Please wait while the rendering process is completed.",
"selectThemeBeforeCreatingPreviewMsg": "You have to select a theme before trying to create a preview of your website. Please go to the website settings section and select a theme."
},
"repeater": {
"addItem": "Add item",
"duplicateItem": "Duplicate item",
"emptyState": "Click the button to add first element",
"removeItem": "Remove item"
},
"settings": {
"addGDPRCookieBanner": "Enable banner",
"additionalValidElementsInWYSIWYGEditor": "Additional valid elements in the WYSIWYG editor",
"additionalValidElementsInWYSIWYGEditorInfo": "If the WYSIWYG editor automatically removes some tags from your HTML code, you may add them here as allowed elements.
For example: v-select[*],v-dropdown[*] will allow custom v-select and v-dropdown tags with any attributes.",
"advancedOptions": "Advanced options",
"advancedPreviewDesc": "Advanced preview allows you to render a website without opening your browser",
"alwaysAddIndexHTMLInURLs": "Always add index.html in URLs",
"alwaysSaveSearchState": "Always save search state",
"anchorLink": "Anchor link",
"appSettings": "App settings",
"appSettingsSavedMsg": "App settings have been successfully saved.",
"appSettingsSaveErrorMsg": "An error occurred during saving of the App Settings. Please try again.",
"appUIZoomLevel": "Interface scale",
"appUIZoomLevelInfo": "Adjust the interface scale to enhance your visibility and comfort while managing your content. This option allows you to scale the user interface to your preferred size, ensuring that text, icons, and other UI elements are easily readable and accessible.",
"ascending": "Ascending",
"authorPage": "Author page",
"authorPages": "Author pages",
"authorPageTitleVariables": "The following variables can be used: %authorname, %sitename.",
"authorPrefix": "Author prefix:",
"authorPrefixInfo": "Defines the prefix that appears before the author slug in a URL e.g. https://example.com/AUTHOR_PREFIX/author-slug.
",
"authorPrefixInfoExtended": "Defines the prefix that appears before the author slug in a URL e.g. https://example.com/POSTS_PREFIX/AUTHORS_PREFIX/author-slug.
",
"authorsPrefixAfterPostsPrefix": "Put authors prefix after posts prefix",
"authorsPrefixCannotBeEmpty": "Authors prefix cannot be empty.",
"authorsPrefixCannotEqualTagsPrefix": "The authors prefix cannot be the same as the tags prefix.",
"backupLocation": "Backup location",
"backupLocationChangedConfirmMsg": "The backups storage location has been changed. All new backups will be stored in this directory. If you require access to earlier backups, they may be moved manually to the new directory.",
"badge": "Badge",
"badgeAndCustomLink": "Badge + custom link",
"badgeLabel": "Badge label",
"bannerPosition": "Banner position",
"basicSettings": "Basic settings",
"byIDAscending": "By ID ascending",
"byIDDescending": "By ID descending",
"cannotAddIndexHTMLInURLsInfo": "Enable this option if you cannot enable loading index.html files by default when a folder on your server is opened.",
"cardTypes": "Card types:",
"changeSitesLocationWithoutCopyingFiles": "Change sites location without moving existing sites to the new catalog",
"closePostEditorOnSave": "Close post editor on save",
"codeEditor": "Code editor (CodeMirror)",
"colorTheme": "Colour theme",
"content": "Content",
"continueSync": "Continue and sync",
"continueSyncNoRemoteFiles": "Publii is unable to find remote files list on your server. If you will continue the sync process, ALL generated website files will be uploaded to your server. You can cancel the sync process to check the reason of your issue and then try again.",
"convertToWebp": "Convert to WebP format",
"convertToWebpInfo": "Enable this option if you want to convert all JPG, JPEG and PNG images to WebP format. Once enabled, your image thumbnails will need to be regenerated. Note, this feature works only if you’re using the Sharp library for generating thumbnails.",
"convertToWebpJimpWarning": "This option does not work with the currently used image resizing engine, Jimp. Instead, switch to Sharp in the app's settings.",
"cookieGroups": "Cookie Groups",
"cookieBanner": "Cookie Banner",
"cookieBasic": "Basic",
"cookieBasicDescription": "This section contains the settings responsible for displaying the cookie banner on the your site, which lets visitors know if the website uses cookies.",
"cookieAdvanced": "Advanced",
"cookieAdvancedDescription": "This section contains options for displaying a modal pop-up with advanced cookie settings, which lets visitors manage consents for a specific group of cookies.",
"createXMLSitemap": "Create XML Sitemap",
"currentTheme": "Current theme:",
"currentThemeHasOverrides": "It seems that you override the theme files, and your custom theme modifications might not fully align with the updated version. Updating your theme requires reviewing and merging these files. Click 'OK' to proceed with the update and address any potential issues later, or 'Cancel' to review your customisations first.",
"customElementsInWYSIWYGEditor": "Custom elements available in the WYSIWYG editor",
"customElementsInWYSIWYGEditorInfo": "If the WYSIWYG editor automatically removes some tags from your HTML code, you may add them here as custom elements.
For example: v-select,v-dropdown",
"customFeedTitle": "Custom feed title",
"customLanguageCode": "Custom language code:",
"darkMode": "Dark mode",
"defaultAuthorsOrdering": "Default authors ordering:",
"defaultOrderingOnLists": "Default lists ordering:",
"defaultPagesOrdering": "Default pages ordering:",
"defaultPostsOrdering": "Default posts ordering:",
"defaultTagsOrdering": "Default tags ordering:",
"descending": "Descending",
"disableAuthorsPagination": "Disable authors pagination",
"disableAuthorsPaginationIndexing": "Disable authors pagination indexing",
"disableAuthorsPaginationIndexingInfo": "When enabled, your authors pagination files will be excluded from the sitemap and will have the noindex, follow robots metatags added.",
"disableAuthorsPaginationInfo": "When enabled, your authors pagination won't be generated.",
"disableHomepagePagination": "Disable homepage pagination",
"disableHomepagePaginationInfo": "When enabled, your homepage pagination won't be generated.",
"disableHomepagePaginationIndexing": "Disable homepage pagination indexing",
"disableTagsPagination": "Disable tags pagination",
"disableTagsPaginationIndexing": "Disable tags pagination indexing",
"disableTagsPaginationIndexingInfo": "When enabled, your tags pagination files will be excluded from the sitemap and will have the noindex, follow robots metatags added.",
"disableTagsPaginationInfo": "When enabled, your tags pagination won't be generated.",
"displayEmptyAuthors": "Display authors w/o posts",
"displayEmptyAuthorsInfo": "When enabled, authors without posts assigned to them will still have their subpages created and appear on the authors list.",
"displayEmptyTags": "Display tags w/o posts",
"displayEmptyTagsInfo": "When enabled, tags without posts assigned to them will still have their subpages created and appear on the tags list.",
"dontIndexThisPage": "Ask the search engine not to crawl the whole website.",
"editorFontFamily": "Font family",
"editorFontFamilySansSerif": "Sans serif",
"editorFontFamilySerif": "Serif",
"editorFontSize": "Font size (px)",
"editors": "Editors",
"embedConsents": "Embed content consents",
"embedConsentsDescription": "This section allows you to block content loaded in iframes from third-party content providers that may set cookies. By providing the domain of the iframe URL e.g. youtube.com, filling out the required elements such as a message, an accept button, and assigning it to an existing cookie group, iframes will be replaced with a placeholder informing visitors that the content is blocked due to their consent settings (i.e. that the visitor has not consented to the types of cookies used by the iframe in the cookie banner).",
"embedVideos": "Embedding Videos",
"enableAdvancedPreview": "Enable advanced preview",
"enableAutoIndent": "Enable auto-indent",
"enableCSSCompression": "Enable CSS compression",
"enableHTMLCompression": "Enable HTML compression",
"enableJSONFeed": "Enable JSON feed",
"enableMediaLazyLoad": "Enable media lazy load",
"enableMediaLazyLoadInfo": "Enable this option if you want to use native lazy loading that lazy loads images, videos and iframes.",
"enableResponsiveImages": "Enable responsive images",
"enableResponsiveImagesInfo": "Enable this option if you want to deliver different sized images at different screen resolutions depending on breakpoints defined through the config.json file in a theme's folder.",
"enableRSSFeed": "Enable RSS feed",
"enableSharingButtons": "Enable sharing buttons",
"enableSpellchecker": "Enable spellchecker",
"errorPage": "Error page:",
"errorPageFilenameCannotBeEmpty": "Error page filename cannot be empty.",
"errorPageFilenameCannotEqualSearchPageFilename": "Error page filename cannot be the same as search page filename.,",
"errorPageTitleVariables": "The following variables can be used: %sitename.",
"excludedFiles": "Excluded files",
"excludeFeaturedPosts": "Exclude featured posts",
"excludeFilesFromSitemapInfo": "Type a comma-separated list of HTML files or folders to exclude from the sitemap.
For example: avoid-this-file.html,avoid-this-catalog-too.",
"experimentalFeaturesWarning": "We're always looking for ways to improve our app. This section contains experimental features designed to extend Publii's functionality. Since they're experimental we can't guarantee they will work properly; activate them at your own risk.",
"experimentalFeatureAppAutoBeautifySourceCode": "Auto-beautify source code in WYSIWYG editor",
"experimentalFeatureAppAutoBeautifySourceCodeDesc": "This function enable automatic beautify for source code in the WYSIWYG editor",
"experimentalFeatureAppFtpAlt": "Use alternative FTP library for deployment",
"experimentalFeatureAppFtpAltDesc": "Try this, especially if your hosting uses IPv6 for server address",
"experimentalFileManagerInSidebar": "Show File Manager in sidebar",
"externalImages": "External images",
"externalPage": "External page",
"facebook": "Facebook",
"facebookAppID": "Facebook App ID",
"facebookAppIDInfo": "Read how to obtain Facebook App ID.",
"fallbackImage": "Fallback image",
"fallbackLogoImage": "Fallback logo image",
"fallbackLogoImageInfo": "The logo must fit in a 60 × 600 pixel box.",
"featuredPostsOrderBy": "Featured posts order by:",
"featuredPostsOrdering": "Featured posts ordering:",
"feedsRelativeUrlsInfo": "To view RSS/JSON feed settings please disable the 'Use relative URLs' option in the Server Settings; the feed won't be generated for your website otherwise.",
"feedTitle": "Feed title:",
"feedUpdatedDateType": "Post update date set as:",
"filesLocation": "Files location",
"footerText": "Footer text",
"frontpage": "Homepage",
"frontpagePageCannotBeEmpty": "Homepage selection cannot be empty.",
"gConsentModeDefaultState": "Default state",
"gConsentModeEnabled": "Enable Google Consent Mode",
"gConsentMode": {
"addGroup": "Add cookies group settings",
"cookieGroup": "Cookies group",
"description": "This section allows you to specify the default state of the Google Consent Mode and specify signals which will be sent when specific cookies group will be accepted by user. Use these options if you need compatibility with Google Consent Mode. If you are not using Google Analytics, Google Ads or similar tools, most probably you do not need to enable this feature.",
"title": "Google Consent Mode"
},
"GDPR": "Privacy Settings",
"gdprBannerPosition": {
"centered": "Centred",
"left": "Left",
"right": "Right",
"bar": "Bar"
},
"gdprAllowAdvancedConfiguration": "Enable advanced cookies configuration",
"gdprAdvancedConfigurationLinkLabel": "Advanced configuration button label",
"gdprAdvancedConfigurationLinkPlaceholder": "Manage preferences",
"gdprAdvancedConfigurationAcceptButtonLabel": "Accept button label",
"gdprAdvancedConfigurationRejectButtonLabel": "Reject button label",
"gdprAdvancedConfigurationSaveButtonLabel": "Save button label",
"gdprAdvancedConfigurationTitle": "Pop-up title",
"gdprAdvancedConfigurationDescription": "Pop-up message",
"gdprAdvancedConfigurationPrivacyLink": "Privacy policy link",
"gdprAdvancedConfigurationPrivacyLinkDescription": "Display a link to the privacy policy page in the pop-up message. If the 'Show privacy policy link' option in the Basic section is disabled, the link will also not be displayed in the pop-up.",
"gdprBehaviourInfo": "Remember to place a link with the above anchor in your website navigation or the website content (e.g. Cookie preferences). Otherwise, your website's visitors might not be able to change their individual cookie preferences.",
"gdprCookieSettingsRevision": "Settings version",
"gdprCookieSettingsTTL": "Store visitors consent settings for X days",
"gdprDebugMode": "Enable debug mode",
"gdprShowRejectButton": "Show reject button",
"gdprRejectButtonLabel": "Reject button label",
"gdprBannerTitle": "Banner title",
"gdprBannerMessage": "Banner message",
"generateOpenGraphTags": "Generate Open Graph tags",
"generateTwitterCards": "Generate Twitter cards",
"googleAnalyticsTrackingID": "Google Analytics Tracking ID",
"hiddenPostsOrderBy": "Hidden posts order by:",
"hiddenPostsOrdering": "Hidden posts ordering:",
"hideCustomExcerptsOnPostPages": "Hide custom excerpts on post pages",
"hideCustomExcerptsOnPostPagesInfo": "When enabled, your post pages won't display text which is placed above the \"Read more\" element in the post editor.",
"hideCustomExcerptsOnPagePages": "Hide custom excerpts on pages",
"hideCustomExcerptsOnPagePagesInfo": "When enabled, your pages won't display text which is placed above the \"Read more\" element in the editor.",
"homepage": "Homepage",
"homepageNoIndexPagination": "When enabled, your homepage pagination files will be excluded from the sitemap and will have the noindex, follow robots metatags added.",
"homepagePagination": "Homepage pagination",
"howToPrepareYourThemeForGDPRInfo": "Enabling this option will display a cookie banner on your website. Please read the GDPR Cookie Banner Configuration article for more information on how to configure the banner correctly. ",
"howYtNoCookiesWorks": "When enabled, the YouTube domain for the embed URL e.g. 'www.youtube.com' will be automatically changed to 'www.youtube-nocookie.com', to prevent the embedded player from personalising the YouTube browsing experience of the visitors, and also ensures that no information is used to customise advertising shown to the visitor outside of your site. Learn more about Enhanced Privacy Mode by visiting YouTube help page.",
"howVimeoNoTrackWorks": "When enabled, the additional dnt=1 parameter will be added to the Vimeo embed URL (player.vimeo.com/video) to prevent the embedded player from tracking any session data, including all cookies and analytics. Learn more about Vimeo player parameters by visiting Vimeo help page.",
"imageResizeEngineInfo": "The Sharp resize engine is much faster than Jimp, but can cause issues with some images. If you are encountering problems when creating or regenerating thumbnails, please try switching to the Jimp resize engine. Should you wish to use WebP images, then you’ll need to use the Sharp resize engine.",
"imagesResizeEngine": "Images resize engine:",
"imageResizeEngineWarning": "Jimp resize engine and the option to convert images to WebP format won't work properly. Make sure that all of your websites has the “Website Speed / Convert to WebP format” disabled, and make sure to regenerate thumbnails for consistency.",
"indentSize": "Indent size (spaces)",
"internalPage": "Internal page",
"leaveBlankForDefaultBackupsDir": "Leave blank to use the default backups directory",
"leaveBlankForDefaultPreviewDirectory": "Leave blank to use the default preview directory",
"leaveBlankToUseDefaultPageTitle": "Leave blank to use the default Page title",
"leaveBlankToUseDefaultSitesDir": "Leave blank to use the default sites directory",
"lightMode": "Light mode",
"linkedIn": "LinkedIn",
"linkLabel": "Link label",
"loadAtStart": "Load at start:",
"metaDescription": "Meta Description:",
"metaRobots": "Meta Robots:",
"noIndexForChatGPTBot": "Block GPTBot bot",
"noIndexForChatGPTUser": "Block ChatGPT-User bot",
"noIndexForChatGPTBotInfo": "When enabled, this option prevents your site content from being indexed by GPTBot bot (used for crawling). Please note that it will only take effect if you do not use your own robots.txt file.",
"noIndexForChatGPTUserInfo": "When enabled, this option prevents your site content from being indexed by ChatGPT-User bot (used in ChatGPT plugins). Please note that it will only take effect if you do not use your own robots.txt file.",
"noIndexForCommonCrawlBots": "Block Common Crawl bots",
"noIndexForCommonCrawlBotsInfo": "When enabled, this option prevents your site content from being indexed by Common Crawl bots. Please note that it will only take effect if you do not use your own robots.txt file.",
"noIndexWebsite": "Noindex website",
"notificationsCenterEnabled": "Allow notifications center to download and display notifications data",
"notSelected": "Not selected",
"numberOfPostsInFeed": "Number of posts in feed",
"openDevtoolsInMainW": "Open DevTools automatically in the Main Window",
"openGraph": "Open Graph",
"openLastUsedWebsite": "Open the last used website",
"openPopupWindowBy": "Open banner by",
"optionsForDevelopers": "Options for developers",
"optionsForEditors": "Options for editors",
"optionsForExperimentalFeatures": "Experimental features",
"ordering": {
"authorASC": "By author (ascending)",
"authorDESC": "By author (descending)",
"createdASC": "By created date (ascending)",
"createdDESC": "By created date (descending)",
"hierarchical": "Hierarchical",
"idASC": "By ID (ascending)",
"idDESC": "By ID (descending)",
"modifiedASC": "By modified date (ascending)",
"modifiedDESC": "By modified date (descending)",
"nameASC": "By name (ascending)",
"nameDESC": "By name (descending)",
"postsCounterASC": "By posts count (ascending)",
"postsCounterDESC": "By posts count (descending)",
"titleASC": "By title (ascending)",
"titleDESC": "By title (descending)"
},
"pageAsFrontpage": "Select page",
"pageTitle": "Page Title",
"pageTitleVariables": "The following variables can be used: %pagetitle, %sitename, %authorname",
"paginationPhrase": "Pagination phrase:",
"paginationPhraseCannotBeEmpty": "Pagination phrase cannot be empty.",
"paginationPhraseInfo": "Defines the phrase used before the page number in a URL e.g. https://example.com/tags/tag-slug/page/2.
",
"password": {
"alwaysAskForPassword": "Always ask for password",
"password": "Password",
"passwordFieldCantBeEmpty": "The password field cannot be empty."
},
"pinterest": "Pinterest",
"postCreationDate": "Post creation date",
"postID": "Post ID",
"postModificationDate": "Post modification date",
"postPageTitleVariables": "The following variables can be used: %posttitle, %sitename, %authorname.",
"postsListing": "Posts Listing",
"postsIndex": "Posts Index",
"postsOrderBy": "Posts order by:",
"postsOrdering": "Posts ordering:",
"postPrefixInfo": "The prefix entered here will be added before the post slug in the URL. For example, https://example.com/POSTS_PREFIX/post-slug. This option is necessary if you set a page as the homepage and need post pagination. In this case, post pagination will be available at https://example.com/POSTS_PREFIX/page/X. Additionally, tags will be rendered under https://example.com/POSTS_PREFIX/TAG_PREFIX/tag-slug.",
"postsPrefix": "Posts prefix",
"postTitle": "Post title",
"previewLocation": "Preview location",
"previewLocationChangedConfirmMsg": "The preview storage location has been changed. Note that existing files in this folder will be deleted when a preview of your website is created.",
"privacyPolicyLinkLabel": "Privacy policy link label",
"privacyPolicyPage": "Select page",
"privacyPolicyPageURL": "Enter external URL",
"privacyPolicyURL": "Privacy policy link source",
"provideFacebookAppID": "Please provide the Facebook App ID",
"random": "Random",
"readAboutOurRecommendedServerSettings": "Looking to learn more about recommended server configurations? Please refer to the following documentation article.",
"relatedPostsOptions": "Related posts options",
"relatedPostsOptionsInfo": "When enabled, related posts will be taken from all tags. When disabled, related posts will only be generated from the same tags as the current post.",
"relatedPostsOrdering": "Related posts ordering:",
"relatedPostsSelectionMechanism": "Related posts selection mechanism:",
"removeHTMLComments": "Remove HTML comments",
"responsiveImagesQuality": "Responsive Images quality",
"responsiveImagesAlphaQuality": "Responsive Images alpha quality (only WebP)",
"RSSJSONFeed": "RSS/JSON Feed",
"saveButtonLabel": "Save button label",
"saveSearchStateInfo": "When enabled, Publii will save the current search results even when creating a new post, allowing you to return to the listing. By default, Publii only saves search results when opening a post to edit.",
"requiresRestartingApp": "Requires a restart of the Publii app",
"saveSettings": "Save Settings",
"searchPage": "Search page:",
"searchPageFilenameCannotBeEmpty": "Search page filename cannot be empty.",
"searchPageTitleVariables": "The following variables can be used: %sitename.",
"selectedDirInvalid": "Selected directory does not exist.",
"selectPage": "Select page",
"showFeaturedImage": "Show Featured image",
"showFeaturedImageInfo": "Display a post's featured image in the feed.",
"showFullText": "Show full text",
"showFullTextInFeedInfo": "Display full text of the post in the feed.",
"showModificationDate": "Show modification date",
"showModificationDateAsColumn": "Show modification date as column",
"showOnlyFeaturedPosts": "Show only featured posts",
"showPostTagsOnTheListing": "Show post tags on the listing",
"showPostSlugsOnTheListing": "Show slugs across all listing views",
"showPrivacyPolicyLink": "Show privacy policy link",
"sitemap": "Sitemap",
"sitemapLinkInfo": "You can find the XML sitemap here: sitemap.xml",
"sitemapRelativeUrlsInfo": "To view sitemap settings please disable the 'Use relative URLs' option in the Server Settings; the sitemap won't be generated for your website otherwise.",
"siteSettings": "Site settings",
"siteSettingsSaveDuplicateNameErrorMessage": "Provided site name is in use. Please try another site name.",
"siteSettingsSaveEmptyNameErrorMessage": "Site name cannot be empty. Please enter a site name.",
"siteSettingsSaveNoKeyringErrorMessage": "Publii cannot save settings due to a problem with the safe password storage software. Restart the application and try again. If the problem persists, please report it to our team via the community forum.",
"siteSettingsSaveNoKeyringErrorMessageLinux": "Publii cannot save settings as no safe password storage software is installed. Follow the installation instructions for Node Keytar via https://github.com/atom/node-keytar/ and try again. Most likely the libsecret-1-dev and gnome-keyring packages are missing from your system.",
"siteSettingsSaveSiteNotExistsErrorMessage": "Site does not exist. Please restart the application.",
"siteSettingsSaveSuccessMessage": "Site settings have been successfully saved.",
"sitesLocation": "Sites location",
"sitesLocationChangedConfirmMsg": "The sites location has been changed. Existing files in the new destination folder will be deleted before your sites files are moved there; do you want to continue?",
"spellcheckerDoesNotSupportLanguage": "The spellchecker does not support your selected website language. We recommend disabling this feature.",
"system": "System",
"systemColors": "Use system colours",
"tagPages": "Tag pages",
"tagPageTitleVariables": "The following variables can be used: %tagname, %sitename.",
"tagPrefix": "Tag prefix:",
"tagPrefixInfo": "Prefixes entered here will be added before the tag slug in the URL e.g. https://example.com/TAGS_PREFIX/tag-slug.
This prefix is also used to generate the tags list page (if supported in your theme) e.g. https://example.com/TAGS_PREFIX/index.html.",
"tagPrefixInfoExtended": "Prefixes entered here will be added before the tag slug in the URL e.g. https://example.com/POSTS_PREFIX/TAGS_PREFIX/tag-slug.
This prefix is also used to generate the tags list page (if supported in your theme) e.g. https://example.com/POSTS_PREFIX/TAGS_PREFIX/index.html.",
"tagsListPage": "Tags list page",
"tagsListPageTitleVariables": "The following variables can be used: %sitename.",
"tagsPrefixAfterPostsPrefix": "Put tags prefix after posts prefix",
"tagsPrefixCannotBeEmpty": "Tags prefix cannot be empty if pretty URLs are enabled.",
"themeDoesNotHaveSupportedFeaturesList": "Your theme's config.json file does not contain a supportedFeatures section. Please update or modify your theme to include accurate messaging about features which are not supported by your currently used theme. Read more about supported features.
",
"themeDoesNotSupport404ErrorPage": "Your theme does not support a 404 Error page.",
"themeDoesNotSupportAuthorPages": "Your theme does not support author pages.",
"themeDoesNotSupportErrorPages": "Your theme does not support error pages",
"themeDoesNotSupportSearchPages": "Your theme does not support search pages",
"themeDoesNotSupportTagPages": "Your theme does not support tag pages.",
"themeDoesNotSupportTagsListPage": "Your theme does not support a Tags list page.",
"themeDoesNotSupportEmbedConsents": "Your theme does not support consents for embed content.",
"themePrimaryColor": "Theme primary colour",
"timeFormat": "Time format:",
"toViewSitemapEnableIndexingInfo": "To view sitemap settings please disable the 'Ask search engines to not index this website' option in the SEO Settings tab; the sitemap won't be generated for your website otherwise.",
"tumblr": "Tumblr",
"twitter": "Twitter",
"twitterCards": "Twitter Cards",
"twitterUsername": "Twitter username",
"twitterSummaryCard": "Summary card",
"twitterSummaryCardLargeImage": "Summary card with large image",
"urls": "URLs",
"useAsTitlePageTitle": "Use as a title for the title page",
"useAsTitlePageTitleInfo": "When this option is enabled, og:title and twitter:title metatags will contain the page title instead of the post title, tag name or author name.",
"useGlobalConfiguration": "Use global configuration",
"useOnlyTags": "Use only tags",
"useOnlyTitles": "Use only titles",
"usePageAsFrontpage": "Set page as homepage",
"usePageAsFrontpageNotice": "When enabled, the selected page will become your website's homepage, accessible at your main web address (the root URL). Note that leaving the Posts prefix empty will disable posts pagination.",
"usePrettyURLs": "Use pretty URLs",
"usePrettyURLsInfo": "When enabled, your post URLs won't contain the .html suffix e.g. it will change URLs from https://example.com/post.html to https://example.com/post/. For pages hierarchy won't be visible in the URL if this option is disabled",
"useSiteGlobalSettings": "Use global site settings",
"useTitlesAndTags": "Use titles and tags",
"useWideScrollbars": "Use wider scrollbars",
"versionParameter": "Version parameter",
"versionParameterInfo": "Adds a version parameter in CSS/JS URLs to skip browser cache. This option can cause more files than usual to be synced during deployment.",
"vimeoNoTrack": "Enable 'Do Not Track' mode for Vimeo videos",
"webpLossless": "Enable lossless compression for responsive WebP images",
"websiteName": "Website name",
"websiteSpeed": "Website Speed",
"whatsApp": "WhatsApp",
"youMustReviewGdprSettings": "Make sure to check and review your Privacy Settings, especially the Cookie Banner settings due to some significant changes in Publii v.0.40. Read more...",
"youMustSelectFrontpage": "You must specify page used as homepage",
"ytNoCookies": "Enable Privacy-Enhanced mode for YouTube videos"
},
"site": {
"addNewWebsite": "Add new website",
"cloneWebsite": "Clone website",
"cloneWebsiteSuccessMsg": "Website has been cloned. Switched to: ",
"createNewWebsite": "Create new website",
"createWebsite": "Create website",
"createYourFirstWebsite": "Create your first website",
"creationInProgress": "Creation in progress...",
"deleteWebsite": "Delete website",
"deleteWebsiteConfirmMsg": "Do you really want to remove this website? This action cannot be undone.",
"deleteWebsiteCSuccessMsg": "Website has been removed.",
"deleteWebsiteSuccessMsg": "Website has been removed. Switched to: ",
"duplicateWebsite": "Duplicate website",
"erroOcurredDuringSiteDatabaseCreationInfo": "An error occurred during site database creation. Please check your antivirus software and try again. You can also need to remove the invalid website's folder from the Publii sites directory.",
"installFromBackup": "Install from backup",
"removeWebsite": "Remove website",
"restoreFromBackup": {
"createWebsite": "Create website",
"invalidBackupContent": "The uploaded file is a not valid backup.",
"invalidSiteData": "The uploaded backup is corrupted.",
"iWantChangeName": "Change website name",
"restoreFailed": "An error occurred during creating website from backup. Please try again.",
"selectSiteName": "Please specify a site name",
"siteExistsWantOverride": "Some websites exist within the selected directory name. Would you like to continue and potentially lose all previous website data? The website from the backup will override the existing site with the same name.",
"siteNameCannotBeEmpty": "Website name cannot be empty",
"unsupportedFormat": "Unsupported format - please use TAR backup file.",
"unpackError": "An error occurred during unpacking backup - please try again.",
"yesPleaseOverride": "Yes, override"
},
"selectedBackupFile": "Selected backup file: ",
"siteDescription": "Site description (internal)",
"siteLoadingErrorMsg": "An error occurred during loading of the selected website. Please check the website files and try again.",
"siteName": "Site name:",
"siteSettingsSaveSuccessMsg": "Site settings have been successfully saved.",
"siteWithThisNameExists": "A site using this name already exists!",
"specifyNameForWebsiteDuplicate": "Please specify the new name for the duplicate website:",
"websiteAuthorRequired": "author name is required and should contain letters",
"websiteName": "Website name",
"websiteNameAlreadyInUseMsg": "The selected name is in use by another website. Please try again.",
"websiteNameCantBeEmpty": "The website name cannot be empty. Please try again.",
"websiteNameRequired": "A website name is required",
"websiteNotFound": "Website not found"
},
"supportedFeatures": {
"featureNames": {
"authorImages": "author featured images",
"authorPages": "author subpages",
"blockEditor": "block editor",
"customComments": "custom comments",
"customSearch": "custom search",
"errorPage": "error subpage",
"searchPage": "search subpage",
"tagImages": "tag featured images",
"tagsList": "tags list subpage",
"tagPages": "tag subpages"
},
"yourThemeDoNotSupport": "Your current theme do not support required feature: {featureName}"
},
"sync": {
"accessID": "Access ID",
"accessIDFieldCantBeEmpty": "The access ID field cannot be empty",
"acl": "ACL",
"afterInitialSyncSiteWillBeAvailableOnline": "After the initial sync, your website will be available online",
"allFilesUploadedPart1": "All files have been successfully uploaded to your server. ",
"allFilesUploadedPart2": "Visit your website by clicking the button below.",
"apiRateLimiting": "API rate limiting",
"apiRateLimitingNote": "Disable this option only if you are using Github Enterprise with disabled API rate limiting. Otherwise disabling this option can cause deployment errors.",
"apiServer": "API Server",
"apiServerNote": "Change this value only if you are using your own GitHub instance (Enterprise edition).",
"authenticationMethod": "Authentication method",
"branch": "Branch",
"branchExampleGitNote": "Examples: main, gh-pages or docs.",
"branchExampleGitHubNote": "Examples: gh-pages, docs or main.",
"branchExampleGitLabeNote": "Example: main",
"branchFieldCantBeEmpty": "The branch field cannot be empty",
"bucket": "Bucket",
"bucketFieldCantBeEmpty": "The bucket field cannot be empty",
"certificates": "Certificates",
"changeServerType": "Change server type",
"checkingConnection": "Checking connection...",
"clickToChangeDeploymentMethod": "Click to change the currently used deployment method",
"commitAuthor": "Commit author",
"commitAuthorFieldCantBeEmpty": "Commit author field cannot be empty",
"commitEmail": "Commit author e-mail",
"commitMessage": "Commit message",
"commitMessageFieldCantBeEmpty": "Commit message field cannot be empty",
"configureServer": "Configure Server",
"connectedToServer": "Connected to the server",
"connectingToServer": "Connecting to the server...",
"connectionToServerErrorAdditionalMessage": "An error occurred while connecting to the server: ",
"connectionToServerErrorMessage": "An error occurred while connecting to the server. Please check your server settings or try again.",
"connectionToServerErrorText": "An error occurred while connecting to the server...",
"connectToServerCantStoreFilesErrorMsg": "Error! Application was able to connect with your server but was unable to store files. Please check file permissions on your server",
"connectToServerErrorMsg": "Error! The application was unable to connect to your server.",
"connectToServerSuccessMsg": "Success! The application was able to connect to your server.",
"deploymentMethodFilesPubliiMsg": "Selected deployment method uses files.publii.json file for sync. Consider access protection for this file in your server configuration if required - read more",
"deploymentMethodFtpMsg": "FTP protocol uses an unencrypted transmission, which means any data sent over it, including your username and password, could be read by anyone who may intercept your transmission. We strongly recommend using FTPS or SFTP protocols if possible.",
"deploymentMethodGitMsg": "For detailed information about how to configure a website using Git, check Publii's online documentation.",
"deploymentMethodGithubPagesMsg": "For detailed information about how to configure a website using Github Pages, check Publii's online documentation.",
"deploymentMethodGitNote": "Please remember, that if you are using custom domain, you must put CNAME file under File Manager in the root files",
"deploymentMethodGithubPagesNote": "This will be your Github repository path, which should use the following format: YOUR_USERNAME.github.io/YOUR_REPOSITORY_NAME.
If you are using a custom domain name, set this field to just the custom domain name.",
"deploymentMethodGitlabPagesMsg": "For detailed information about how to configure a website using GitLab Pages, check Publii's online documentation.",
"deploymentMethodGoogleCloudMsg": "For detailed information about how to configure a website using Google Cloud, check Publii's online documentation.",
"deploymentMethodNetlifyMsg": "For detailed information about how to configure a website using Netlify, check Publii's online documentation.",
"deploymentMethodS3Msg": "For detailed information about how to configure a website using S3, check Publii's online documentation.",
"deploymentSettingDatHyperIpfsProtocolNote": "The \"dat://\", \"hyper://\", \"dweb://\" and the \"ipfs://\" protocol is useful only if you have plans to use your website on P2P networks. Read more about dat://, hyper://, dweb:// and IPFS",
"deploymentSettingDoubleSlashProtocolNote": "Note: while using \"//\" as protocol, some features like Open Graph tags, sharing buttons etc. will not work properly.",
"deploymentSettingFileProtocolNote": "The \"file://\" protocol is useful only if you are using the manual deployment method for intranet websites.",
"deploymentSettingRelativeUrlsNote": "Note: while using relative URLs, some features like Open Graph tags, sitemaps, RSS feeds, JSON feeds etc. will be disabled.",
"deprecated": "Deprecated",
"destinationServerNotConfiguredErrorMessage": "Your website cannot currently be synced as the destination server has not been configured correctly.
Check your server settings to ensure that the correct information has been entered.",
"destinationServerNotConfiguredErrorText": "Make sure the destination server is properly configured.",
"domainNameNotSetErrorMessage": "Your website cannot currently be synced as the settings appear to lack a domain name.
Check your server settings to ensure a domain name has been entered.",
"domainNameNotSetErrorText": "Make sure the domain name is set.",
"duringSyncYouCantChangeFilesLocation": "File locations cannot be changed during the sync process.",
"fieldIsCaseSensitive": "This field is case-sensitive.",
"filesNotSyncedErrorMessage": "Please check the hard-upload-errors-log.txt file using the Tools -> Log Viewer tool.",
"filesNotSyncedErrorText": "Some files were not synced properly.",
"ftp": "FTP",
"ftps": "FTPS",
"ftpWithSSLTLS": "FTP with SSL/TLS",
"generatePreviewFiles": "Generate preview files",
"getWebsiteFiles": "Get website files",
"git": "Git Repository",
"github": "GitHub",
"githubPages": "GitHub Pages",
"githubSyncedPart1": "Changes on Github Pages may not be visible for a few minutes after completing deployment, ",
"githubSyncedPart2": "so please be patient.",
"gitlabPages": "GitLab Pages",
"gitlabSyncedPart1": "Changes on Gitlab Pages may not be visible for a few minutes after completing deployment, ",
"gitlabSyncedPart2": "so please be patient.",
"gitPassword": "Password / Token",
"gitPasswordNote": "If you use 2FA to protect your account, instead of a password, you must use a previously generated access token",
"googleCloud": "Google Cloud",
"googleCloudPrefixNote": "Your website may be placed in a subdirectory. Please avoid using slashes at the beginning of the prefix name (i.e. /blog/) - as it will create an additional directory with the empty name. Proper prefix example: blog.",
"goToAppSettings": "Go to app settings",
"goToSettings": "Go to settings",
"htmlCacheControl": "Cache-Control header for HTML files",
"keyFile": "Key file",
"lastRendered": "Last rendered",
"lastSync": "Last sync",
"leaveBlankToUseDefaultOutputDirectory": "Leave blank to use the default output directory",
"manualDeployment": "Manual deployment",
"manualOutputFieldCantBeEmpty": "Manual output selection cannot be empty",
"ManualUpload": "Manual upload",
"netlify": "Netlify",
"netlifyToken": "Netlify token",
"nonCompressedCatalog": "Non-compressed catalog",
"note": "Note:",
"operationsDone": "operations done",
"otherCacheControl": "Cache-Control header for other files",
"outputDirectory": "Output directory",
"outputDirectoryNote": "Publii will create catalog/file {siteName}-files in the selected directory. If it exists - it will be replaced with the new files.",
"outputType": "Output type",
"outputTypeNote": "Publii will generate a catalog or ZIP/TAR archive of your website. Then you can upload these files to any destination server manually.",
"parallelUploads": "Parallel uploads",
"parallelUploadsNote": "More parallel operations can lead to upload errors on slow internet connections or encounter an error 403 due to API rate limits.",
"passphraseForKey": "Passphrase for a key",
"passphraseForKeyNote": "Use this field only if your key needs a passphrase",
"port": "Port",
"portFormatNote": "The port field cannot be empty and must be a positive integer between 1 and 65535.",
"prefix": "Prefix",
"preparationError": "Preparation error",
"preparedToUpload": "Prepared to upload",
"preparingFiles": "Preparing files",
"previewCatalogDoesNotExistInfo": "The preview catalog does not exist. Please go to the App Settings and select the correct preview directory first.",
"previewChanges": "Preview your changes",
"provideAccessData": "Provide access data",
"provideFTPPasswordFor": "Please provide the FTP password for ",
"provideFTPPasswordForServer": "Please provide the FTP password for the following server: ",
"region": "Region",
"regionFieldCantBeEmpty": "Region selection cannot be empty",
"remotePath": "Remote path",
"remotePathMatchServerOrRootPathNote": "Path should match your server path e.g. public_html/, public_html/blog/ or the root path e.g. /home/username/public_html/.",
"remotePathMatchServerRootPathNote": "Path should match your server root path e.g. /public_html/, /public_html/blog/.",
"repository": "Repository",
"repositoryFieldCantBeEmpty": "The repository field cannot be empty",
"repositoryUrl": "Repository URL",
"repositoryUrlFieldCantBeEmpty": "Repository URL cannot be empty",
"repositoryUrlNote": "An URL to your Git repository used to store your website files",
"requireCertificateForConnection": "Require a valid certificate for connection",
"requireFTPPassAlwaysOnSync": "Require the FTP password every time you sync your site",
"s3CompatibleStorage": "S3 compatible storage",
"s3PrefixNote": "Your website may be placed in a subdirectory. Please avoid using slashes at the beginning of the prefix name (i.e. /blog/) - as it will create an additional directory with the empty name. Proper prefix example: blog/.",
"s3ProviderEndpoint": "S3 Provider endpoint",
"s3ProviderEndpointNote": "The custom endpoint cannot be empty when \"Use a custom S3 provider\" is set to true",
"secretKey": "Secret key",
"secretKeyFieldCantBeEmpty": "The secret key field cannot be empty",
"selectServerType": "Select server type:",
"serverFieldCantBeEmpty": "The server field cannot be empty.",
"serverGitLabNote": "Change this value only if you are using your own GitLab instance.",
"serverSettingsSaveErrorMsg": "Publii cannot save settings due to a problem with the safe password storage software. Restart the application and try again. If the problem persists, please report it to our team via the community forum.",
"serverSettingsSaveLinuxErrorMsg": "Publii cannot save settings as no safe password storage software is installed. Follow the installation instructions for Node Keytar via https://github.com/atom/node-keytar/ and try again. Most likely the libsecret-1-dev and gnome-keyring packages are missing from your system.",
"serverSettingsSaveSuccessMsg": "Server settings have been successfully saved.",
"settings": "Settings",
"sftp": "SFTP",
"sftpKeyNote": "Please select the key file",
"sftpWithKey": "SFTP (with key)",
"sftpWithPassword": "SFTP (with password)",
"siteFieldCantBeEmpty": "The Site ID field cannot be empty",
"siteID": "Site ID",
"siteIsInSync": "Site is in sync",
"syncFTPNoPasswordMsg": "Your website cannot be synced without the password. Please try again",
"syncInProgress": "Sync in progress",
"syncInProgressMessage": "During sync process you cannot change site name.",
"syncYourWebsite": "Sync your website",
"tarArchive": "TAR archive",
"testConnection": "Test connection",
"testConnectionNoPasswordMsg": "You cannot test the connection without the password. Please try again",
"token": "Token",
"tokenFieldCantBeEmpty": "The token field cannot be empty",
"uploadingWebsite": "Uploading website",
"useCustomS3Provider": "Use a custom S3 provider",
"useCustomS3ProviderNote": "Note: AWS is the default S3 provider. When using an alternative provider, you need to fill the \"S3 provider endpoint\" field.",
"useFtps": "Use FTP with SSL/TLS",
"useRelativeURLs": "Use relative URLs",
"username": "Username",
"usernameFieldCantBeEmpty": "The username field cannot be empty.",
"usernameOrganization": "Username / Organisation",
"visitWebsite": "Visit website",
"visitYourWebsite": "Visit your website",
"websiteFilesPreparedInfo": "Your website files has been prepared. Use the \"Get website files\" button below
to get your files in order to manually deploy them.",
"websiteLinkInvalidMsg": "Sorry! The website link seems to be invalid.",
"websiteSynchronization": "Website synchronisation",
"websiteSynchronizationInfo": "Any duplicate files or filenames that already exist in the destination location
that match the files generated by Publii will be overwritten.",
"websiteURL": "Website URL",
"youHaventSelectedAnyThemeInfo": "You haven't selected any theme. Please go to the Settings and select the theme first.",
"yourJSONKey": "Your JSON key",
"yourJSONKeyFieldCantBeEmpty": "The JSON key file selection cannot be empty",
"yourPrivateKey": "Your private key",
"yourWebsiteIsInSync": "Your website is now in sync",
"zipArchive": "ZIP archive"
},
"tag": {
"addNewTag": "Add new tag",
"addThisAsNewTag": "Add this as new tag",
"createFirstTag": "You don't have any tags, yet. Let's create the first!",
"editTag": "Edit tag",
"filterOrSearchTags": "Filter or search tags...",
"hideTag": "Hide tag",
"leaveBlankToUseDefaultTagPageURL": "Leave blank to use a default tag page URL",
"mainTag": "Main tag",
"newTagHasBeenCreated": "New tag has been created",
"noMainTagForPostMsg": "If the post has tags but no main tag has been set, the first tag alphabetically will be used by default.",
"noSupportFoFeaturedImagesForTags": "Your theme does not support featured images for tags.",
"noTagsAvailable": "No tags available",
"noTagsMatchingYourCriteria": "There are no tags matching your criteria.",
"removeTagMessage": "Do you really want to remove selected tags?",
"removeTagSuccessMessage": "Selected tags have been removed",
"themeDoesNotSupportForTagPagesInTheme": "The \"Save & Preview\" option is not available as your theme lacks support for tag pages.",
"selectTag": "Select tag",
"selectTagPage": "Select tag page",
"tag": "Tag",
"tagDataParsingErrorMessage": "An error occurred while parsing tag data for ID: ",
"tagHasBeenEdited": "Tag has been edited",
"tagIsNotAllowed": "This tag is not allowed",
"tagLink": "Tag link",
"tagName": "Tag name:",
"tagNameCannotBeEmptyErrorMessage": "Tag name cannot be empty. Please enter a tag name.",
"tagNameInUseErrorMessage": "Provided tag name is in use. Please try another tag name.",
"tagNameNotAllowedErrorMessage": "Selected tag name/slug is not allowed.",
"tagNameSimilarInUseErrorMessage": "Provided tag name is in use; tag names are not case-sensitive. Please try another tag name.",
"tagPage": "Tag page",
"tagsListLink": "Tags list link",
"tagStatusChangeSuccessMessage": "Status of the selected tags has been changed",
"tagWillNotAppearInGeneratedTagLists": "Tag will not appear in any generated tag list such as post or tag/s pages.",
"thisTagIsHidden": "This tag is hidden",
"toUseThisOptionEnableIndexingTagPages": "To use this option, first enable indexing of tag pages in SEO settings.",
"url": "URL"
},
"theme": {
"addThemeSuccessMessage": "Theme has been successfully added.",
"authorOptions": "Author options",
"authorOptionsInfo": "The author options section allows you to set global options for what extra information should be included in your authors. Changes made in this section will affect all authors on your site, but you can also override the Theme Settings on the Author Edit screen for each individual author if necessary.",
"authorsPostsPerPage": "Authors posts per page:",
"authorsPostsPerPageInfo": "Use -1 as value if you need to display all authors' posts on the page.",
"changeAppTheme": "Change application theme",
"customSettings": "Custom settings",
"defaultPageTemplate": "Default page template",
"defaultPostTemplate": "Default post template",
"defaultTemplate": "Default template",
"deleteTheme": "Delete theme",
"dropYourThemeHere": "Drop your theme here",
"excerptLength": "Excerpt length:",
"getMoreThemes": "Get more themes",
"goToThemesManager": "Go to the themes manager",
"installTheme": "Install theme",
"leaveBlankToUseDefault": "Leave blank to use the default value",
"newVersionAvailable": "New version available",
"pageOptions": "Page options",
"pageOptionsInfo": "The Page options section allows you to set global options for what extra information should be included in your pages. Changes made in this section will affect all pages on your site, but you can also override the App Settings on the Page Edit screen for each individual page if necessary.",
"postOptions": "Post options",
"postOptionsInfo": "The Post options section allows you to set global options for what extra information should be included in your posts. Changes made in this section will affect all posts on your site, but you can also override the App Settings on the Post Edit screen for each individual post if necessary.",
"postsPerPage": "Posts per page:",
"postsPerPageInfo": "Use -1 as value if you need to display all posts on page.",
"removeThemeMessage": "Do you really want to remove the {themeName} theme?",
"removeThemeSuccessMessage": "Theme has been successfully removed.",
"resetThemeSettings": "Reset theme settings",
"saveSettingsSuccessMessage": "Theme settings has been successfully saved.",
"selectTheme": "Select theme",
"settingsResetMessage": "Do you really want to reset the theme settings?",
"settingsResetSuccessMessage": "Theme settings has been reset.",
"tagOptions": "Tag options",
"tagOptionsInfo": "The Tag options section allows you to set global options for what extra information should be included in your tags. Changes made in this section will affect all tags on your site, but you can also override the Theme Settings on the Tag Edit screen for each individual tag if necessary.",
"tagsPostsPerPage": "Tags posts per page:",
"tagsPostsPerPageInfo": "Use -1 as value if you need to display all tag posts on page.",
"themes": "Themes",
"themeSettings": "Theme Settings",
"translations": "Translations",
"translationsInfo": "If you need to translate theme phrases to languages other than english - please check our documentation regarding the Translations API
",
"updateThemeSuccessMessage": "Theme has been successfully updated.",
"uploadThemeErrorMessage": "The uploaded files are incorrect. Please upload a theme directory or theme ZIP file.",
"websiteLogo": "Website logo:"
},
"tools": {
"css": {
"customCSS": "Custom CSS",
"customCSSSaveSuccessMsg": "Custom CSS has been successfully saved.",
"normal": "Normal",
"putCustomCSSComment": "Put your custom CSS code here"
},
"customHTML": "Custom HTML",
"find": "Find:",
"findAndReplace": "Find and replace:",
"findAndReplaceShortcut": "Ctrl + Alt + F",
"findAndReplaceShortcutMac": "Cmd + Alt + F",
"findShortcut": "Ctrl + F",
"findShortcutMac": "Cmd + F",
"goToTools": "Go to tools",
"logFileEmpty": "The log file is empty...",
"logViewer": "Log viewer",
"pluginActivationError": "Cannot activate plugin - please try again",
"pluginDeactivationError": "Cannot deactivate plugin - please try again",
"selectFileToLoad": "Select file to load",
"thumbnails": {
"listRegeneratedFiles": "List of regenerated files:",
"processingRegenerateThumbnailsInfo": "Pressing the Regenerate thumbnails button will start generating new image sizes as defined by your new theme.",
"progress": "Progress: ",
"regenerateThumbnails": "Regenerate thumbnails",
"regenerateThumbnailsInfo": "If you've changed your theme or are having issues with your responsive images, you can regenerate them using the button below. This might take a while if your site has a lot of images, so please be patient.",
"regenerateThumbnailsNotNecessaryInfo": "Currently you have no selected theme for this website. Thumbnails regeneration is not necessary.",
"regeneratingThumbnails": "Regenerating thumbnails...",
"skipRegeneration": "Skip regeneration",
"themeOrThumbnailsSettingsChanged": "Your theme or thumbnail settings have been changed.",
"thumbnailsCreated": "All thumbnails have been created.",
"thumbnailsRegenerationCancelled": "Thumbnails regeneration cancelled."
},
"wpImport": {
"addTagsToContentAutomatically": "Add and
tags to the post content automatically",
"categories": "Categories",
"checkingWXRFile": "Checking the selected WXR file",
"contentFormatting": "Content formatting:",
"duringWXRAnalyzeWeHaveFound": "During WXR analysis we have found",
"importAuthors": "Import authors",
"importData": "Import data",
"importingData": "Importing data",
"importNote": "Posts will be imported in a format compatible with the WYSIWYG editor.",
"importSelectedTypesOfPosts": "Import selected post types:",
"pages": "pages",
"postAuthors": "Post authors",
"selectWXRFileLabel": "Please select WXR file:",
"selectWXRFilePlaceholder": "Select a WXR file to import",
"usedTaxonomyForPosts": "Used taxonomy for posts:",
"useMainAuthor": "Use main author from Publii",
"wpImporter": "WP Importer",
"wpImportGoToRegenerateMsg": "Your WordPress data has been imported. Thumbnails regeneration may be necessary if you have already selected a theme."
}
},
"toolsPlugin": {
"pluginSettingsLoadError": "An error occurred during loading of plugin settings",
"pluginSettingsSaveSuccess": "Plugin settings saved successfully",
"pluginSettingsSaveError": "An error occurred during saving of plugin settings",
"tabsLabel": "Plugin settings",
"thisPluginHasNoOptions": "This plugin has no additional options..."
},
"ui": {
"aboutPublii": "About Publii",
"alternativeText": "Alternative text",
"appConfiguration": "Application configuration",
"appIsUnableToGetNotifications": "Unable to download notifications. Please try again later. Error: ",
"applyChanges": "Apply changes",
"authors": "Authors",
"backToTools": "Back to tools",
"backToPages": "Pages",
"backToPosts": "Posts",
"basicInformation": "Basic information",
"beautifyCode": "Beautify code",
"blogIndexLink": "Posts index link",
"cancel": "Cancel",
"cancelWarningMsg": "You will lose all unsaved changes - do you want to continue?",
"canonicalURL": "Canonical URL",
"caption": "Caption",
"checkDocumentation": "Check Publii documentation",
"close": "Close",
"copyToClipboard": "Copy to clipboard",
"credits": "Credits",
"customLink": "Custom link",
"customTemplate": "Custom template",
"delete": "Delete",
"description": "Description",
"donate": "Donate",
"edit": "Edit",
"enablePrettyURLs": "Enable pretty URLs",
"featuredImage": "Featured image",
"fillAllRequiredFields": "Please fill all required fields",
"frontpageLink": "Homepage link",
"gdprBreakingChangesConfirmMsg": "We've made significant changes to the Privacy Settings (formerly GDPR) section. We recommend that you review your settings and save them again.",
"githubRepository": "Github repository",
"goBack": "Go back",
"goToPluginCustomOptions": "Hide additional options",
"goToPluginStandardOptions": "Show additional options",
"goToSettings": "Go to Privacy Settings",
"help": "Help",
"hide": "Hide",
"hideThisNotification": "Hide this notification",
"id": "ID",
"ifCanonicalUrlIsSetMetaRobotsTagIsIgnored": "If canonical URLs are enabled, the meta robots tag is ignored.",
"indexFollow": "index, follow",
"indexNofollow": "index, nofollow",
"indexFollowNoArchive": "index, follow, noarchive",
"indexNofollowNoArchive": "index, nofollow, noarchive",
"iUnderstand": "OK, I understand",
"lastModified": "Last modified",
"learnMore": "Learn More",
"leaveBlankToUseDefaultPageTitle": "Leave blank to use a default page title",
"linkTarget": "Link target",
"loading": "Loading...",
"menus": "Menus",
"metaDescription": "Meta description",
"metaRobotsIndex": "Meta robots index",
"minimize": "Minimize",
"more": "More",
"moreInformationOnPublii": "More information about Publii",
"moreItems": "More items",
"name": "Name",
"newWindow": "New window",
"noindexFollow": "noindex, follow",
"noindexNofollow": "noindex, nofollow",
"none": "None",
"notAvailableInYourTheme": "Not available in your theme",
"notSet": "Not set",
"of": "of",
"ok": "OK",
"otherOptions": "Other options",
"pages": "Pages",
"pagesSupportNotEnabledMessage": "Your current theme does not support pages. Please choose a theme with built-in page support or update your existing theme to include this functionality. Detailed information on implementing page support in your theme can be found by clicking the 'Learn More' button below.",
"pageTitle": "Page Title",
"pleaseFillAllRequiredFields": "Please fill all required fields",
"posts": "Posts",
"preview": "Preview",
"previewFrontPageOnly": "Preview homepage only",
"previewFullWebsite": "Preview full website",
"publiiOnGithub": "View Publii on Github",
"publishAndClose": "Publish and close",
"publishPost": "Publish post",
"reloadFile": "Reload file",
"renderFrontPageOnly": "Render homepage only",
"renderFullWebsite": "Render full website",
"reportBugInSupportDesk": "Report a bug via our forum",
"reportIssue": "Report an issue",
"sameWindow": "The same window",
"save": "Save",
"saveAndClose": "Save and close",
"saveAndPreview": "Save & Preview",
"saveAndRender": "Save & Render",
"saveAsDraft": "Save as draft",
"saveChanges": "Save Changes",
"saveDraft": "Save draft",
"saveDraftAndClose": "Save draft and close",
"search": "Search...",
"selectOption": "Select option",
"selectWebsite": "Select a website",
"seo": "SEO",
"server": "Server",
"show": "Show",
"slug": "Slug",
"supportPublii": "Support Publii and donate today!",
"tags": "Tags",
"theme": "Theme",
"tools": "Tools & Plugins",
"unhide": "Unhide",
"updateSlug": "Update slug",
"uploadInProgress": "Upload in progress...",
"whatsNew": "What's new?"
}
}
================================================
FILE: app/default-files/default-languages/en-gb/wysiwyg.json
================================================
{
"Action": "Action",
"Activity": "Activity",
"Address": "Address",
"Advanced": "Advanced",
"Align": "Align",
"Align center": "Align center",
"Align left": "Align left",
"Align right": "Align right",
"Alignment": "Alignment",
"All": "All",
"Alternative source": "Alternative source",
"Alternative source URL": "Alternative source URL",
"Anchor": "Anchor",
"Anchor...": "Anchor...",
"Anchors": "Anchors",
"Animals and Nature": "Animals and Nature",
"Arrows": "Arrows",
"B": "B",
"Background color": "Background colour",
"Black": "Black",
"Block": "Block",
"Blockquote": "Blockquote",
"Blue": "Blue",
"Body": "Body",
"Bold": "Bold",
"Border": "Border",
"Border color": "Border colour",
"Border style": "Border style",
"Border width": "Border width",
"Bottom": "Bottom",
"Browse for an image": "Browse for an image",
"Bullet list": "Bullet list",
"Cancel": "Cancel",
"Capitalization": "Capitalization",
"Caption": "Caption",
"Cell": "Cell",
"Cell padding": "Cell padding",
"Cell properties": "Cell properties",
"Cell spacing": "Cell spacing",
"Cell type": "Cell type",
"Center": "Center",
"Characters": "Characters",
"Characters (no spaces)": "Characters (no spaces)",
"Circle": "Circle",
"Class": "Class",
"Clear formatting": "Clear formatting",
"Close": "Close",
"Code": "Code",
"Code sample": "Code sample",
"Color": "Colour",
"Color Picker": "Colour Picker",
"Color swatch": "Colour swatch",
"Cols": "Cols",
"Column": "Column",
"Column group": "Column group",
"Constrain proportions": "Constrain proportions",
"Copy": "Copy",
"Copy row": "Copy row",
"Could not find the specified string.": "Could not find the specified string.",
"Could not load emoticons": "Could not load emoticons",
"Count": "Count",
"Currency": "Currency",
"Current window": "Current window",
"Custom color": "Custom colour",
"Custom...": "Custom...",
"Cut": "Cut",
"Cut row": "Cut row",
"Dark Blue": "Dark Blue",
"Dark Gray": "Dark Gray",
"Dark Green": "Dark Green",
"Dark Orange": "Dark Orange",
"Dark Purple": "Dark Purple",
"Dark Red": "Dark Red",
"Dark Turquoise": "Dark Turquoise",
"Dark Yellow": "Dark Yellow",
"Date/time": "Date/time",
"Decrease indent": "Decrease indent",
"Default": "Default",
"Delete column": "Delete column",
"Delete row": "Delete row",
"Delete table": "Delete table",
"Dimensions": "Dimensions",
"Disc": "Disc",
"Div": "Div",
"Document": "Document",
"Document properties": "Document properties",
"Drop an image here": "Drop an image here",
"Edit": "Edit",
"Edit image": "Edit image",
"Embed": "Embed",
"Emoticons": "Emoticons",
"Emoticons...": "Emoticons...",
"Error": "Error",
"Extended Latin": "Extended Latin",
"Failed to upload image: {0}": "Failed to upload image: {0}",
"Find": "Find",
"Find and replace": "Find and replace",
"Find and replace...": "Find and replace..",
"Find whole words only": "Find whole words only",
"Finish": "Finish",
"Flags": "Flags",
"Font": "Font",
"Font Sizes": "Font Sizes",
"Fonts": "Fonts",
"Food and Drink": "Food and Drink",
"Footer": "Footer",
"Format": "Format",
"Format Painter": "Format Painter",
"Formats": "Formats",
"Fullscreen": "Fullscreen",
"G": "G",
"General": "General",
"Gray": "Gray",
"Green": "Green",
"H Align": "H Align",
"Header": "Header",
"Header 1": "Header H1",
"Header 2": "Header H2",
"Header 3": "Header H3",
"Header 4": "Header H4",
"Header 5": "Header H5",
"Header 6": "Header H6",
"Header cell": "Header cell",
"Headers": "Headers",
"Heading 1": "Heading H1",
"Heading 2": "Heading H2",
"Heading 3": "Heading H3",
"Heading 4": "Heading H4",
"Heading 5": "Heading H5",
"Heading 6": "Heading H6",
"Headings": "Headings",
"Height": "Height",
"Help": "Help",
"Horizontal line": "Horizontal line",
"Horizontal space": "Horizontal space",
"Id": "Id",
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.",
"Ignore": "Ignore",
"Ignore all": "Ignore all",
"Image": "Image",
"Image description": "Image description",
"Image list": "Image list",
"Image options": "Image options",
"Image title": "Image title",
"Image...": "Image...",
"Increase indent": "Increase indent",
"Inline": "Inline",
"Insert": "Insert",
"Insert column after": "Insert column after",
"Insert column before": "Insert column before",
"Insert date/time": "Insert date/time",
"Insert image": "Insert image",
"Insert link": "Insert link",
"Insert row after": "Insert row after",
"Insert row before": "Insert row before",
"Insert table": "Insert table",
"Insert video": "Insert video",
"Insert/Edit Link": "Insert/Edit Link",
"Insert/edit iframe": "Insert/edit iframe",
"Insert/edit image": "Insert/edit image",
"Insert/edit link": "Insert/edit link",
"Insert/edit media": "Insert/edit media",
"Insert/edit video": "Insert/edit video",
"Italic": "Italic",
"Justify": "Justify",
"Keyboard Navigation": "Keyboard Navigation",
"Language": "Language",
"Left": "Left",
"Left to right": "Left to right",
"Light Blue": "Light Blue",
"Light Gray": "Light Gray",
"Light Green": "Light Green",
"Light Purple": "Light Purple",
"Light Red": "Light Red",
"Light Yellow": "Light Yellow",
"Link": "Link",
"Link list": "Link list",
"Link...": "Link...",
"Loading emoticons...": "Loading emoticons...",
"Lower Alpha": "Lower Alpha",
"Lower Greek": "Lower Greek",
"Lower Roman": "Lower Roman",
"Match case": "Match case",
"Mathematical": "Mathematical",
"Media": "Media",
"Media poster (Image URL)": "Media poster (Image URL)",
"Media...": "Media...",
"Medium Blue": "Medium Blue",
"Medium Gray": "Medium Gray",
"Medium Purple": "Medium Purple",
"Merge cells": "Merge cells",
"Middle": "Middle",
"Midnight Blue": "Midnight Blue",
"More...": "More...",
"Name": "Name",
"Navy Blue": "Navy Blue",
"New window": "New window",
"Next": "Next",
"No": "No",
"No color": "No colour",
"Nonbreaking space": "Nonbreaking space",
"None": "None",
"Numbered list": "Numbered list",
"OR": "OR",
"Objects": "Objects",
"Ok": "Ok",
"Open help dialog": "Open help dialog",
"Open link in...": "Open link in...",
"Orange": "Orange",
"Page break": "Page break",
"Paragraph": "Paragraph",
"Paste": "Paste",
"Paste as text": "Paste as text",
"Paste or type a link": "Paste or type a link",
"Paste row after": "Paste row after",
"Paste row before": "Paste row before",
"Paste your embed code below:": "Paste your embed code below:",
"People": "People",
"Permanent Pen Properties": "Permanent Pen Properties",
"Permanent pen properties...": "Permanent pen properties...",
"Poster": "Poster",
"Powered by {0}": "Powered by {0}",
"Pre": "Pre",
"Preferences": "Preferences",
"Preformatted": "Preformatted",
"Prev": "Prev",
"Preview": "Preview",
"Previous": "Previous",
"Print": "Print",
"Print...": "Print...",
"Purple": "Purple",
"Quotations": "Quotations",
"R": "R",
"Red": "Red",
"Redo": "Redo",
"Remove color": "Remove colour",
"Remove link": "Remove link",
"Replace": "Replace",
"Replace all": "Replace all",
"Replace with": "Replace with",
"Restore last draft": "Restore last draft",
"Rich Text Area. Press ALT-0 for help.": "Rich Text Area. Press ALT-0 for help.",
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help",
"Right": "Right",
"Right to left": "Right to lef",
"Row": "Row",
"Row group": "Row group",
"Row properties": "Row properties",
"Row type": "Row type",
"Rows": "Rows",
"Save": "Save",
"Scope": "Scope",
"Search": "Search",
"Select all": "Select all",
"Select...": "Select...",
"Selection": "Selection",
"Shortcut": "Shortcut",
"Show caption": "Show caption",
"Show invisible characters": "Show invisible characters",
"Size": "Size",
"Source": "Source",
"Source code": "Source code",
"Special character": "Special character",
"Special character...": "Special character...",
"Spellcheck": "Spellcheck",
"Split cell": "Split cell",
"Square": "Square",
"Strikethrough": "Strikethrough",
"Style": "Style",
"Subscript": "Subscript",
"Superscript": "Superscript",
"Switch to or from fullscreen mode": "Switch to or from fullscreen mode",
"Symbols": "Symbols",
"System Font": "System Font",
"Table": "Table",
"Table of Contents": "Table of Contents",
"Table properties": "Table properties",
"Target": "Target",
"Text": "Text",
"Text color": "Text colour",
"Text to display": "Text to display",
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?",
"The URL you entered seems to be an external link. Do you want to add the required http:// prefix?": "The URL you entered seems to be an external link. Do you want to add the required http:// prefix?",
"Title Case": "Title Case",
"To open the popup, press Shift+Enter": "To open the popup, press Shift+Enter",
"Tools": "Tools",
"Top": "Top",
"Travel and Places": "Travel and Places",
"Turquoise": "Turquoise",
"UPPERCASE": "UPPERCASE",
"Underline": "Underline",
"Undo": "Undo",
"Update": "Update",
"Upload": "Upload",
"Upper Alpha": "Upper Alpha",
"Upper Roman": "Upper Roman",
"Url": "Url",
"User Defined": "User Defined",
"V Align": "V Align",
"Valid": "Valid",
"Version": "Version",
"Vertical space": "Vertical space",
"View": "View",
"Warn": "Warn",
"White": "White",
"Whole words": "Whole words",
"Width": "Width",
"Word count": "Word count",
"Words": "Words",
"Words: {0}": "Words: {0}",
"Yellow": "Yellow",
"Yes": "Yes",
"You have unsaved changes are you sure you want to navigate away?": "You have unsaved changes are you sure you want to navigate away?",
"alignment": "alignment",
"comments": "comments",
"example": "example",
"formatting": "formatting",
"history": "history",
"indentation": "indentation",
"lowercase": "lowercase",
"permanent pen": "permanent pen",
"styles": "styles",
"{0} characters": "{0} characters",
"{0} words": "{0} words"
}
================================================
FILE: app/default-files/default-languages/pl/config.json
================================================
{
"name": "Polish - default",
"version": "1.8.0",
"author": "Publii Team",
"publiiSupport": "0.47.0",
"momentLocale": "pl",
"wysiwygTranslation": true
}
================================================
FILE: app/default-files/default-languages/pl/translations.json
================================================
{
"author": {
"addNewAuthor": "Dodaj nowego autora",
"author": "Autor",
"authorDataParsingErrorMessage": "Wystąpił błąd podczas parsowania danych autora dla ID: ",
"authorHasBeenUpdated": "Autor został zaktualizoway",
"authorLink": "Link do autora",
"authorName": "Nazwa autora",
"authorNameCannotBeEmptyErrorMessage": "Nazwa autora nie może być pusta. Proszę podać inną nazwę.",
"authorNameInUseErrorMessage": "Podana nazwa autora jest już używana. Proszę podać inną nazwę.",
"authorNameSimilarInUseErrorMessage": "Podobna nazwa autora (bez rozróżniania wielkości liter) jest już używana. Proszę podać inną nazwę.",
"authorPage": "Strona autora",
"authorSlugCannotBeEmpty": "Slug autora nie może być pusty",
"avatar": "Avatar",
"avatarAndFeaturedImage": "Avatar i obraz wyróżniony",
"cannotRemoveMainAuthor": "Nie możesz usunąć głównego autora.",
"changePageAuthor": "Zmień autora strony",
"changePostAuthor": "Zmień autora wpisu",
"editAuthor": "Edytuj autora",
"eMail": "E-mail",
"filterOrSearchAuthors": "Filtruj lub wyszukaj autorów...",
"gravatarEmailWarningMessage": "Podaj adres e-mail którego użyłeś/aś do zarejestrowania konta Gravatar.",
"mainAuthor": "Główny autor",
"mainAuthorCannotBeRemoved": "To jest główny autor na tej stronie. Nie można go usnąć.",
"newAuthorHasBeenCreated": "Nowy autor został utworzony",
"noAuthorsMatchingYourCriteria": "Brak autorów spełniających Twoje kryteria.",
"removeAuthorsMessage": "Na pewno chcesz usunąć wybranych autorów?",
"removeAuthorsSuccessMessage": "Wybrani autorzy zostali usunięci",
"selectAuthor": "Wybierz autora",
"selectAuthorPage": "Wybierz stronę autora",
"themeDoesNotSupportFeaturedImagesForAuthors": "Twój motyw nie wspiera wyróżnionych obrazków dla autorów.",
"whenYouUseGravatarYourSiteVisitorsWillQueryAThirdPartyServer": "Korzystając z opcji Gravatara, pamiętaj, że odwiedzający twoją witrynę potrzebują wysyłać żądanie do serwera firmy trzeciej, aby załadować obraz awatara.",
"toUseThisOptionEnableIndexingAuthorPages": "Aby użyć tej opcji najpierw włącz, w ustawieniach SEO, indeksowanie stron autorów.",
"url": "URL",
"useGravatarMessage": "Użyj Gravatara aby dodać avatar do autora.",
"useGravatarServiceMessage": "Aby skorzystać z usługi Gravatar podaj adres e-mail autora.",
"website": "Strona internetowa"
},
"core": {
"archive": {
"destinationNotExists": "Wybrana lokalizacja plików wynikowych nie istnieje",
"errorDuringCreatingTAR": "Wystąpił błąd podczas tworzenia archiwum TAR. Spróbuj ponownie.",
"errorDuringCreatingZIP": "Wystąpił błąd podczas tworzenia archiwum ZIP. Spróbuj ponownie."
},
"backup": {
"destinationDirectoryDoesNotExists": "Katalog docelowy nie istnieje",
"errorDuringFileSaveProcess": "Wystąpił błąd podczas zapisu pliku",
"errorDuringReadingBackupFile": "Wystapił błąd podczas odczytu pliku kopii zapasowej",
"fileDoesNotExists": "Plik kopii zapasowej nie istnieje",
"fileIsCorrupted": "Plik kopii zapasowej jest uszkodzony - przerwano proces odtwarzania.",
"locationDoesNotExists": "Lokalizacja kopii zapasowych nie istnieje",
"temporaryDirectoryDoesNotExists": "Katalog tymczasowy nie istnieje"
},
"credits": {
"errorLoadingLicenseMsg": "Wystąpił błąd podczas ładowania licencji. Proszę spróbować ponownie..."
},
"images": {
"responsiveImagesDisabled": "Responsywne obrazy są wyłączone w ustawieniach witryny – wszystkie responsywne obrazy zostały usunięte."
},
"rendering": {
"renderingProcessCrashed": "Proces renderowania uległ awarii",
"renderingProcessCrashedMsg": "Sprawdż pliki rendering-errors.log i rendering-process.log pod Narzędzia -> Przeglądarka logów.",
"renderingProcessFailed": "Proces renderowania nie powiódł się"
},
"server": {
"branchDoesNotExist": "Wybrana gałąź nie istnieje.",
"creatingNewRemoteFilesTree": "Tworzenie nowego zdalnego drzewa plików...",
"finishingDeploymentProcess": "Zakończenie procesu wdrażania...",
"getInfoAboutLatestCommit": "Uzyskaj informacje o najnowszym commicie...",
"preparingFilesTreeToUpload": "Przygotowywanie drzewa plików do przesłania...",
"repositoryDoesNotExist": "Wybrane repozytorium nie istnieje.",
"requestLimitExceededInfo": "Przekroczono limit żądań API (pozostało {remaining} żądań). Proszę zaczekać do {resetTime} UTC i spróbować pózniej.",
"requestTimeout": "Przekroczono limit czasu żądania.",
"retrievingHandlerOfRemoteFilesTree": "Pobieranie obsługi zdalnego drzewa plików...",
"retrievingRemoteFilesTree": "Pobieranie zdalnego drzewa plików...",
"tokenOrServerAddressInvalid": "Podane dane autoryzacyjne lub adres serwera/repozytorium są nieprawidłowe.",
"tooManyFilesInfo": "Twoja strona zawiera ponad 4000 elementów ({numberOfFiles} plików and katalogów). Aktualnie nasz implementacja Github Pages wspiera strony zawierające do 4000 elementów"
},
"site": {
"noConfigurationForResponsiveImages": "Nie ma konfiguracji dla responsywnych obrazów",
"noImagesToRegenerate": "Brak obrazów do regeneracji",
"noThemeSelected": "Nie wybrano motywu"
},
"sureYouWantQuit": "Na pewno chcesz wyjść z programu? \nWszystkie niezapisane zmiany zostaną utracone.",
"wpImport": {
"authorsProgressInfo": "Importowanie autorów ({progress} / {total})",
"imageDownloadError": "Wystąpił błąd podczas pobierania obrazu: {image}",
"imagesProgressInfo": "Pobieranie obrazów ({progress} / {total})",
"postsProgressInfo": "Importowanie wpisów ({progress} / {total})",
"tagsProgressInfo": "Importowanie tagów ({progress} / {total})"
}
},
"customHTML": {
"tabs": {
"head": "Sekcja head",
"body": "Treść strony",
"comments": "Komentarze",
"searchInput": "Pole wyszukiwarki",
"searchContent": "Wyniki wyszukiwania",
"socialSharing": "Udostępnianie Społecznościowe",
"footer": "Stopka strony",
"beforePost": "Przed każdym wpisem",
"afterPost": "Po każdym wpisie",
"afterPage": "Po każdej podstronie"
}
},
"date": {
"apr": "Kwi",
"aug": "Sier",
"changePagePublicationDate": "Zmień datę publikacji strony",
"changePostPublicationDate": "Zmień datę publikacji wpisu",
"dec": "Gru",
"feb": "Lut",
"jan": "sty",
"jul": "Lip",
"jun": "Czer",
"mar": "Marz",
"may": "Maj",
"nov": "List",
"oct": "Paź",
"sep": "Wrz"
},
"editor": {
"addHeading": "Dodaj nagłówek",
"addLabel": "Dodaj etykietę",
"alignTextCenter": "Wyśrodkuj tekst",
"alignTextLeft": "Wyrównaj tekst do lewej",
"alignTextRight": "Wyrównaj tekst do prawej",
"blockEditorHelpPanelDesc": "Możesz wstawić blok, klikając + lub TAB w nowym wierszu lub wpisując następujące skróty lub składnię przecen w nowym wierszu:",
"blocks": {
"code": {
"idTooltip": "Ta wartość zostanie użyta jako ID tego kodu"
},
"cssClassesLabel": "Klasa CSS",
"cssClassesTooltip": "Ta klasa CSS zostanie dodana jako atrybut klasy tego pola",
"embed": {
"idTooltip": "Ta wartość zostanie użyta jako ID tego osadzenia"
},
"gallery": {
"idTooltip": "Ta wartość zostanie użyta jako ID tej galerii"
},
"header": {
"customIdLabel": "Zastosuj własne ID",
"customIdTooltip": "Enable this option if you want to use own ID, instead of the auto-generated one",
"idTooltip": "Ta wartość zostanie użyta jako ID tego nagłówka"
},
"html": {
"idTooltip": "Ta wartość zostanie użyta jako ID tego bloku HTML"
},
"idLabel": "ID",
"image": {
"idTooltip": "Ta wartość zostanie użyta jako ID tego obrazu"
},
"list": {
"idTooltip": "Ta wartość zostanie użyta jako ID tej listy"
},
"paragraph": {
"idTooltip": "Ta wartość zostanie użyta jako ID tego pragrafu",
"styleLabel": "Styl pragrafu",
"styles": {
"highlight": "Wyróżnienie",
"info": "Informacja",
"success": "Sukces",
"warning": "Ostrzeżenie"
},
"styleTooltip": "Wybierz dodatkowe stylowanie dla bloku paragrafu"
},
"quote": {
"idTooltip": "Ta wartość zostanie użyta jako ID tego cytatu"
},
"separator": {
"idTooltip": "Ta wartość zostanie użyta jako ID tego separatora"
},
"toc": {
"idTooltip": "Ta wartość zostanie użyta jako ID tego spisu treści"
}
},
"cantSavePostWithEmptyTitle": "Nie możesz zapisać wpisu z pustym tytułem.",
"cantSavePageWithEmptyTitle": "Nie możesz zapisać strony z pustym tytułem.",
"changesSaved": "Zmiany zostały zapisane",
"clearFormatting": "Wyczyść formatowanie",
"clickToConfirm": "Kliknij, aby potwierdzić",
"code": "Kod",
"conversions": {
"toCode": "Kod",
"toHeader": "Nagłówek",
"toHTML": "HTML",
"toList": "Lista",
"toParagraph": "Pargraf",
"toQuote": "Cytat"
},
"convertTo": "Przekształć w:",
"custom": "Niestandardowy",
"defaultSelect": "- Wybierz -",
"deleteBlock": "Usuń blok",
"dot": "Kropka",
"dots": "Kropki",
"dragAndDropImgToEditor": "Przeciągnij i upuść obraz do edytora",
"dropToUploadYourPhotoOr": "Upuść, aby przesłać swoje zdjęcie lub",
"dropToUploadYourPhotosOr": "Upuść, aby przesłać swoje zdjęcia lub",
"element": "Element",
"emptyGalleryBlock": "Pusty blok galerii",
"emptyImageBlock": "Pusty blok obrazu",
"enterAltText": "Podaj tekst alternatywny",
"enterCaption": "Podaj podpis zdjęcia",
"enterUrlOrEmbedCode": "Podaj URL lub kod do osadzenia...",
"errorOccurred": "Wystąpił błąd - proszę spróbować ponownie.",
"gallery": "Galeria",
"header": "Nagłówek",
"heading1": "Nagłówek 1",
"heading2": "Nagłówek 2",
"heading3": "Nagłówek 3",
"heading4": "Nagłówek 4",
"heading5": "Nagłówek 5",
"heading6": "Nagłówek 6",
"hideBulkEdit": "Ukryj edycję zbiorczą",
"hideHelp": "Ukryj Pomoc",
"hideStats": "Ukryj Statystyki",
"html": "HTML",
"insertGallery": "Wstaw galerię",
"list": "Lista",
"markdown": "Markdown",
"markdownHelpPanelDesc": "Możesz łatwo zarządzać nagłówkami, stylami tekstu lub tworzyć inne elementy HTML, używając następujących skrótów klawiaturowych lub wpisując składnię markdown:",
"newDraftCreated": "Nowy szkic został utworzony",
"newPageCreated": "Nowa strona została utworzona",
"newPostCreated": "Nowy wpis został utworzony",
"nothingFound": "Nie znaleziono bloków",
"paragraph": "Paragraph",
"quote": "Cytat",
"quoteAuthor": "Autor cytatu",
"quoteText": "Tekst cytatu",
"readMore": "Czytaj więcej",
"readMoreBlockName": "Czytaj więcej",
"selectFiles": "Wybierz pliki",
"separator": "Separator",
"shortcuts": "Skróty",
"sourceCode": "Kod źródłowy",
"searchForABlock": "Wyszukaj blok...",
"startWriting": "Zacznij pisać...",
"startWritingOrPressTabToChooseBlock": "Zacznij pisać lub naciśnij klawisz TAB, aby wybrać blok.",
"toc": "Spis treści",
"tocAutoGenerationInfo": "Spis treści jest generowany automatycznie poprzez zbieranie nagłówków (H1-H6) Twoich treści.",
"togglePostStatsPanel": "Przełącz panel statystyk wpisów",
"unableToSetSpellCheckerForLanguage": "(!) Nie można ustawić sprawdzania pisowni dla wybranego języka - ",
"useOrderedList": "Użyj listy uporządkowanej",
"useUnorderedList": "Użyj listy nieuporządkowanej",
"viewBulkEdit": "Edycja zbiorcza",
"viewHelp": "Pokaż Pomoc",
"viewStats": "Pokaż Statystyki",
"wideLine": "Szeroka linia"
},
"file": {
"addNewFile": "Dodaj nowy plik",
"backups": "Kopie zapasowe",
"createBackup": "Utwórz kopię zapasową",
"createBackupConfirmMsg": "Wybierz nazwę kopii zapasowej — nazwa pliku może zawierać tylko znaki alfanumeryczne, myślniki i podkreślenia:",
"createBackupErrorMsg": "Wystąpił błąd podczas tworzenia kopii zapasowej. Proszę spóbować ponownie.",
"createBackupNameEmptyMsg": "Podana nazwa pliku nie może być pusta. Proszę spóbować ponownie, podając inną nazwę.",
"createBackupNameInUseMsg": "Podana nazwa pliku ({filename}) jest używana przez istniejący plik kopii zapasowej is used by an existing backup. Proszę spóbować ponownie, podając inną nazwę.",
"createBackupSuccessMsg": "Kopia zapasowa została utworzona.",
"createFirstBackupMsg": "Jeszcze nie masz kopii zapasowych. Stwórzmy pierwszą!",
"creatingBackup": "Tworzenie kopii zapasowej",
"creationDate": "Data utworzenia",
"deleteBackupsConfirmMsg": "Czy na pewno chcesz usunąć wybrane kopie zapasowe? Tej czynności nie można cofnąć.",
"deleteBackupsErrorMsg": "Wystąpił błąd podczas usuwania wybranego pliku kopii zapasowej. Proszę spóbować ponownie.",
"deleteBackupsSuccessMsg": "Wybrane kopie zapasowe zostały usunięte",
"dragAndDropBackupFile": "Przeciągnij i upuść plik kopii zapasowej tutaj lub",
"dropYourFileHere": "Upuść plik tutaj",
"file": "Plik",
"fileFromFileManager": "Plik z Menedżera Plików",
"fileManager": "Menedżer plików",
"filename": "Nazwa pliku",
"files": "Pliki",
"fileSemicolon": "Plik:",
"fileSize": "Rozmiar pliku",
"filterOrSearchFiles": "Filtruj lub wyszukaj pliki...",
"mediaFiles": "media/pliki",
"noBackupsAvailable": "Brak dostępnych kopii zapasowych",
"noFileInMediaFilesDirInfo": "W katalogu media/pliki nie ma żadnych plików...",
"noFileInRootDirInfo": "W katalogu głównym nie ma żadnych plików...",
"noFileMatchingCriteriaInfo": "Nie ma plików spełniających Twoje kryteria.",
"operations": "Operacje",
"preparingFilesInOutputDir": "Przygotowywanie plików w katalogu wyjściowym",
"provideNameForNewFile": "Proszę podać nazwę nowego pliku",
"removeFilesConfirmMsg": "Czy na pewno chcesz usunąć wybrane pliki? Nie można tego cofnąć.",
"removeFilesSuccessMsg": "Wybrane pliki zostały usunięte",
"rename": "Zmień nazwę",
"renameBackupConfirmLabel": "Zmień nazwę pliku",
"renameBackupConfirmMsg": "Proszę podać nową nazwę pliku kopii zapasowej:",
"renameBackupErrorMsg": "Wystąpił błąd podczas zmiany nazwy wybranego pliku kopii zapasowej. Proszę spóbować ponownie.",
"renameBackupNameEmptyMsg": "Nazwa pliku kopii zapasowej nie może być pusta. Proszę spóbować ponownie.",
"renameBackupNameInUseMsg": "Podana nazwa jest używana przez inny plik kopii zapasowej. Proszę spóbować ponownie.",
"renameBackupSameNameMsg": "Podana nazwa jest taka sama jak stara nazwa. Proszę spóbować ponownie.",
"renameBackupSuccessMsg": "Nazwa kopii zapasowej została pomyślnie zmieniona.",
"restore": "Przywróć",
"restoreBackupConfirmLabel": "Przywróć kopię zapasową",
"restoreBackupConfirmMsg": "Czy na pewno chcesz przywrócić wybraną kopię zapasową? Istniejące pliki zostaną nadpisane.",
"restoreBackupErrorMsg": "Wystąpił błąd podczas przywracania wybranego pliku kopii zapasowej: ",
"restoreBackupSuccessMsg": "Strona została pomyślnie przywrócona.",
"rootDirectory": "katalog główny",
"selectedFileExistsMsg": "Te pliki istnieją w wybranym katalogu, więc nie można ich skopiować: ",
"selectedFilenameInUseMsg": "Wybrana nazwa pliku jest w użyciu. Proszę spróbować użyć innej nazwy pliku.",
"selectFile": "Wybierz plik",
"selectFileFromFileManager": "Wybierz plik z Menedżera Plików",
"uploadFiles": "Prześlij pliki"
},
"gdpr": {
"addGroup": "Dodaj grupę",
"embedConsents": {
"addRule": "Dodaj regułę",
"groupButtonLabel": "Etykieta przycisku",
"groupCookieGroup": "Grupa cookies",
"groupRule": "URL zawiera",
"groupRulePlaceholder": "youtube.com",
"groupTextPlaceholder": "Treść zgody"
},
"groupDescriptionPlaceholder": "Dodaj tutaj opis grupy plików cookies",
"groupID": "ID grupy",
"groupName": "Nazwa grupy",
"state": "Stan"
},
"image": {
"addImages": "Dodaj obrazy",
"align": "Wyrównanie",
"centeredImage": "Obraz wyśrodkowany",
"columns": "Kolumny:",
"dropFeaturedImageOr": "Upuść tutaj obrazek wyróżnony lub",
"dropToUploadPhotoOr": "Upuść, aby przesłać swoje zdjęcie lub",
"eightColumns": "8 kolumn",
"enterAltText": "Wpisz tekst alt",
"enterCaption": "Wpisz podpis",
"fiveColumns": "5 kolumn",
"fourColumns": "4 kolumny",
"fullWidth": "Pełna szerokość",
"fullWidthImage": "Obraz pełnej szerokości",
"image": "Obraz",
"imageAlternativeText": "Tekst alternatywny obrazu",
"imageCaption": "Podpis obrazu",
"images": "Obrazy",
"insertEditGallery": "Dodaj/Edytuj Galerię",
"layout": "Układ",
"loadingImage": "Wczytywanie obrazu...",
"none": "Brak",
"oneColumn": "1 kolumna",
"pictures": "obrazów",
"removeImage": "Usuń obraz",
"sevenColumns": "7 kolumn",
"sixColumns": "6 kolumn",
"threeColumns": "3 kolumny",
"twoColumns": "2 kolumny",
"uploading": "Przesyłanie",
"wide": "Szerokie",
"wideImage": "Szeroki obraz",
"yourGalleryIsEmpty": "Twoja galeria jest pusta"
},
"langs": {
"addLanguageSuccessMessage": "Język został dodany",
"deleteLanguage": "Usuń język",
"getMoreLanguages": "Pobierz więcej języków",
"goToLanguagesManager": "Idź do menadżera języków",
"installLanguage": "Zainstaluj język",
"isOutdated": "Nieaktualny",
"isOutdatedTitle": "Ta paczka językowa wspiera Publii do wersji v.{supportedVersion}, podczas gdy używasz Publii w wersji v.{currentVersion} - sprawdź dostępność aktualizacji",
"language": "Język:",
"languageChangedMsg": "Język aplikacji został zmieniony",
"languageChangeError": "Zmiana języka nie powiodła się - proszę spróbować ponownie.",
"languageLoadingError": "Wystapił błąd podczas wczytywania plików językowych. Zostanie użyty domyślny język (angielski). Przejdź do ustawień językowych aby ustawić prawidłowy język.",
"languages": "Języki",
"removeLanguageMessage": "Czy na pewno chcesz usunąć język {languageName}?",
"removeLanguageSuccessMessage": "Usunięto wybrany język",
"updatedLanguageSuccessMessage": "Wybrany język został zaktualizowany",
"uploadLanguageErrorMessage": "Wystapił błąd podczas instalacji. Spróbuj ponownie."
},
"link": {
"addDownloadAttr": "Dodaj atrybut \"download\"",
"addLink": "Dodaj link",
"addNofollow": "Dodaj rel=\"nofollow\"",
"downloadAttribute": "Atrybut \"download\" linka:",
"insertEditLink": "Wstaw/Edytuj link",
"linkInvalidMsg": "Przepraszamy! Ten link wydaje się być nieprawidłowy.",
"linkRelAttribute": "Atrybut \"rel\" linka",
"linkTitleAttribute": "Atrybut \"title\" linka",
"linkClassAttribute": "Klasa CSS",
"linkTarget": "Otwórz w",
"openInNewWindow": "Otwórz w nowym oknie",
"previewLinkInBrowser": "Wyświetl podgląd tego linku w przeglądarce",
"previewOnlyExternalLinksMsg": "W edytorze wpisów możesz wyświetlić podgląd tylko linków zewnętrznych",
"removeLink": "Usuń link",
"selectLinkType": "Wybierz rodzaj linka"
},
"menu": {
"addMenuItem": "Dodaj element menu",
"addNewMenu": "Dodaj nowe menu",
"addNewMenuItem": "Dodaj nowy element menu",
"addSubmenu": "Dodaj podmenu",
"addSubmenuItem": "Dodaj element podmenu",
"assignedMenu": "Przypisane menu",
"classCSS": "Klasa CSS",
"createNewMenu": "Stwórz nowe menu",
"deleteThisMenuItem": "Usuń ten element menu",
"duplicateThisMenuItem": "Duplikuj ten element menu",
"editMenuItem": "Edytuj element menu",
"editMenuName": "Edytuj nazwę menu",
"editThisMenuItem": "Edytuj ten element menu",
"externalLink": "Zewnętrzny link",
"externalURL": "Zewnętrzyny URL",
"hideThisMenuItem": "Ukryj ten element menu",
"insertActions": "Umieść wybrany element:",
"insertAfter": "za",
"insertAsChild": "jako submenu",
"insertBefore": "przed",
"internalLink": "Link wewnętrzny",
"items": "Elementy",
"label": "Etykieta",
"likedItemError": "Podlinkowany element nie jest renderowalny (pusty tag/strona autora), nie istnieje lub został usunięty.",
"likedItemIsADraft": "Podlinkowany element jest kopią roboczą.",
"menu": "Menu",
"menuItemsRemoveMessage": "Na pewno chcesz usunąć wybrane elementy menu?",
"menuItemIsHidden": "Ten element menu jest ukryty",
"menuNameCannotBeEmptyCreateNewMenuErrorMessage": "Pole z nazwą menu nie może być puste.Proszę na nowo utworzyć menu.",
"menuNameCannotBeEmptyErrorMessage": "Pole z nazwą menu nie może być puste.Proszę wprowadzić inną nazwę menu.",
"menuNameExistsErrorMessage": "Menu o podanej nazwie już istnieje. Proszę użyć innej nazwy.",
"menuNameHasBeenEdited": "Nazwa menu została zmieniona",
"menuNameInUseErrorMessage": "Ta nazwa menu już używana. Proszę zmienić nazwę menu.",
"menusRemoveMessage": "Na pewno chcesz usunąć wybrane menun?",
"menusRemoveSuccessMessage": "Wybrane menu zostały usunięte",
"moveItem": "Przenieś",
"newMenuCreated": "Nowe menu zostało utworzone",
"noMenusAvailable": "Brak dostępnych menu",
"noMenusCreateNewOne": "Nie masz jeszcze żadnych menu. Stwórzmy pierwsze!",
"noMenusMessage": "Brak elementów menu; stwórz nowe używając przycisku \"Dodaj element menu\" znajdującego się powyżej.",
"provideNameForNewMenu": "Podaj nazwę dla Twojego nowego menu:",
"provideNewNameForMenu": "Podaj nową nazwę dla wybranego menu:",
"selectItemType": "Wybierz rodzaj elmentu",
"selectLinkTarget": "Wybierz target linka",
"showThisMenuItem": "Pokaż ten element menu",
"textSeparator": "Separator tekstu",
"type": "Rodzaj",
"unassigned": "Nieprzypisane",
"unselectItem": "Odznacz",
"updateLabel": {
"author": "Użyj nazwy autora",
"page": "Użyj tytułu strony",
"post": "Użyj tytułu wpisu",
"tag": "Użyj nazwy tagu"
}
},
"menuPositionPopup": {
"invalidValue": "Nieprawidłowa wartość: wprowadzona wartość nie może być równa 0 i przekraczać domyślnego maksymalnego limitu motywu. Użycie -1 oznacza brak ograniczeń.",
"maxLevels": "Maksymalny poziom:",
"themeDefaultValue": "Domyślna wartość z motywu:",
"title": "Skonfiguruj pozycję menu",
"usedBy": "Używane przez inne menu:"
},
"notifications": {
"badgeNew": "Nowe",
"latestVersion": "Najnowsza wersja",
"currentVersion": "Zainstalowana wersja",
"checkUpdates": "Sprawdź aktualizacje",
"consentInfo": "Obecnie otrzymujesz powiadomienia o aktualizacjach. Jeśli nie chcesz ich otrzymywać",
"consentReject": "kliknąć tutaj, aby wycofać swoją zgodę.",
"consentStateTitle": "Włącz powiadomienia o aktualizacjach",
"consentStateDescription": "Publii może automatycznie sprawdzać dostępność nowych aktualizacji i powiadomi Cię, gdy będą dostępne. W tym celu nawiązywane jest połączenie z serwerem Publii, które obejmuje adres IP Twojego urządzenia. Informacje te są wykorzystywane wyłącznie do dostarczania powiadomień o aktualizacjach i nie są przechowywane. W każdej chwili możesz wyłączyć tę opcję w ustawieniach aplikacji.",
"disabled": "Wyłączone",
"downloadUpdate": "Pobierz",
"giveConsent": "Włącz powiadomienia",
"goToNotificationsCenter": "Przejdź do centrum powiadomień",
"markAsRead": "Oznacz jako przeczytane",
"news": "Nowości",
"notifications": "Powiadomienia",
"noUpdatesTitle": "Brak dostępnych aktualizacji",
"noUpdatesDescription": "Używasz najnowszej wersji Publii i rozszerzeń.",
"pluginUpdatesAvailable": "Dostępne aktualizacje wtyczek",
"publiiUpdateAvailable": "Dostępna aktualizacja Publii",
"rejectConsentConfirm": "Cofając zgodę na otrzymywanie powiadomień, nie będziesz dłużej otrzymywać informacji o nowych wersjach Publii, rozszerzeń dla Publii (motywy i pluginy) a także ważnych powiadomień dodatkowych.",
"viewDetails": "Pokaż szczegóły",
"readMore": "Czytaj więcej",
"rejectConsent": "Nie teraz",
"themeUpdatesAvailable": "Dostępne aktualizacje motywów"
},
"page": {
"addNewPage": "Dodaj nową stronę",
"addPageTitle": "Dodaj tytuł strony",
"all": "Wszystkie",
"closeHierarchy": "Zakończ edycję",
"changePageDate": "Zmień datę publikacji",
"cleanUrlsDisabled": "Włącz opcję 'Ładne adresy URL' w ustawieniach strony, aby odblokować funkcję edycji hierarchii. Umożliwi to łatwe zarządzanie relacjami między stronami nadrzędnymi i podrzędnymi.",
"convertToPost": "Konwertuj na wpis",
"editHierarchy": "Edytuj hierarchię",
"configureThemeBeforeGeneratingPreview": "Musisz skonfigurować motyw dla tej witryny przed wygenerowaniem podglądu tej strony.",
"currentDefaultTemplate": "Aktualnie domyślny szablon",
"customPageTypes": "Własne rodzaje stron",
"drafts": "Wersje robocze",
"duplicate": "Duplikuj",
"duplicatePageErrorMessage": "Wystąpił błąd podczas duplikowania wybranych stron. Proszę spróbować ponownie.",
"duplicatePageSuccessMessage": "Wybrane strony zostały zduplikowane",
"editorBlock": "Edytor blokowy",
"editorBlockInfo": "Nowoczesny i intuicyjny edytor wspierający skróty klawiszowe i markdown dla ułatwienia tworzenia treści na blogu bez martwienia się o HTML lub inne elementy kodu.",
"editorBlockNotSupportedEditPageInfo": "Aktualny motyw nie wspiera edytora blokowego użytego w tej stronie. Ta strona nie może być poprawnie wyrenderowana do pliku wynikowego.",
"editorBlockNotSupportedNewPageInfo": "Aktualny motyw nie wspiera edytora blokowego, którego chcesz użyć. Ta strona nie może być poprawnie wyrenderowana do pliku wynikowego.",
"editorBlockUse": "Użyj edytora blokowego",
"editorMarkdown": "Edytor Markdown",
"editorMarkdownInfo": "Ten edytor wspiera składnię Markdown jako skrót do szybszego tworzenia treści; doskonale nadaje się do obszernych, prostych projektów, takich jak dokumentacja.",
"editorMarkdownUse": "Użyj edytora Markdown",
"editorWYSIWYG": "Edytor WYSIWYG",
"editorWYSIWYGInfo": "Ten edytor oferuje znajomy sposób przetwarzania tekstu oraz dodatkowe narzędzia dla użytkowników, którzy chcą mieć pod kontrolą każdy aspekt treści swojej strony.",
"editorWYSIWYGUse": "Użyj edytora WYSIWYG",
"editPageAnyway": "Edytuj stronę mimo to",
"filterOrSearchPages": "Filtruj lub wyszukaj strony...",
"insertActions": "Umieść wybrany element:",
"insertAfter": "po",
"insertAsChild": "jako podstronę",
"insertBefore": "przed",
"isHomepage": "Strona główna",
"markAsDraft": "Oznacz jako kopię roboczą",
"markAsFeatured": "Oznacz jako wyróżniony",
"markAsUnfeatured": "Oznacz jako niewyróżniony",
"modificationDate": "Data modyfikacji",
"moveItem": "Przenieś",
"moveToTrash": "Przenieś do kosza",
"noPagesMatchingYourCriteria": "Brak stron spełniających Twoje kryteria.",
"noParentPage": "Brak strony nadrzędnej",
"openEditorAnyway": "Otwórz edytor mimo to",
"page": "Strona",
"pageAuthor": "Autor strony",
"pageLink": "Link do strony",
"pageName": "Nazwa strony:",
"pages": "Strony",
"pageSettings": "Ustawienia stron",
"pageSlug": "Slug strony",
"pageSlugLengthWarning": "Slug strony dłuższy niż 250 znaków może prowadzić do tworzenia uszkodzonych plików podczas renderowania strony internetowej.",
"pageSlugTooLong": "Slug strony jest za długi",
"pageSlugUpdateButton": "Aktualizuj",
"pageState": "Stan strony",
"pageStatusChangeSuccessMessage": "Status wybranych stron został zmieniony",
"pageTemplate": "Szablon strony",
"parentPage": "Strona nadrzędna",
"publicationDate": "Data publikacji",
"publish": "Opublikuj",
"published": "Opublikowano",
"removePageMessage": "Na pewno chcesz usunąć wybrane strony? Tej operacji nie można cofnąć.",
"removePageSuccessMessage": "Wybrane strony zostały usunięte",
"selectPage": "Wybierz stronę",
"setAsParent": "Ustaw jako rodzica",
"setAsSubpage": "Ustaw jako podstronę",
"setCustomPageDate": "Ustaw niestandardową datę publikacji",
"status": "Status",
"thisPageIsADraft": "Ta strona jest kopią roboczą",
"title": "Tytuł",
"trashed": "Wyrzucona do kosza",
"unselectItem": "Odznacz",
"updatedOn": "Zaktualizowano",
"url": "URL"
},
"plugins": {
"addPluginSuccessMessage": "Wtyczka została dodana",
"deletePlugin": "Usuń wtyczkę",
"getMorePlugins": "Znajdź więcej wtyczek",
"goToPluginsManager": "Idź do menadżera wtyczek",
"installPlugin": "Zainstaluj wtyczkę",
"isIncompatible": "Jest niekompatybilna",
"isIncompatibleTitle": "Ta wtyczka wspiera Publii od wersji v.{supportedVersion}, podczas gdy używasz Publii w wersji v.{currentVersion} - sprawdź dostępność aktualizacji Publii",
"newVersionAvailable": "Dostępna jest nowa wersja",
"plugin": "Wtyczka:",
"plugins": "Wtyczki",
"removePluginMessage": "Czy na pewno chcesz usunąć wtyczkę {pluginName}?",
"removePluginSuccessMessage": "Wybrana wtyczka została usunięta",
"updatedPluginSuccessMessage": "Wybrana wtyczka została zaktualizowana",
"uploadPluginErrorMessage": "Wystąpił błąd podczas instalacji. Spróbuj ponownie."
},
"post": {
"addNewPost": "Dodaj nowy wpis",
"addPostTitle": "Dodaj tytuł wpisu",
"all": "Wszystkie",
"changePostDate": "Zmień datę publikacji",
"characters": "Znaki",
"configureThemeBeforeGeneratingPreview": "Musisz skonfigurować motyw dla tej witryny przed wygenerowaniem podglądu tego wpisu.",
"convertToPage": "Konwertuj na stronę",
"currentDefaultTemplate": "Aktualnie domyślny szablon",
"customPostTypes": "Własne rodzaje wpisów",
"drafts": "Wersje robocze",
"duplicate": "Duplikuj",
"duplicatePostErrorMessage": "Wystąpił błąd podczas duplikowania wybranych wpisów. Proszę spróbować ponownie.",
"duplicatePostSuccessMessage": "Wybrane wpisy zostały zduplikowane",
"editorBlock": "Edytor blokowy",
"editorBlockInfo": "Nowoczesny i intuicyjny edytor wspierający skróty klawiszowe i markdown dla ułatwienia tworzenia treści na blogu bez martwienia się o HTML lub inne elementy kodu.",
"editorBlockNotSupportedEditPostInfo": "Aktualny motyw nie wspiera edytora blokowego użytego w tym wpisie. Ten wpis nie może być poprawnie wyrenderowany do pliku wynikowego.",
"editorBlockNotSupportedNewPostInfo": "Aktualny motyw nie wspiera edytora blokowego, którego chcesz użyć. Ten wpis nie może być poprawnie wyrenderowany do pliku wynikowego.",
"editorBlockUse": "Użyj edytora blokowego",
"editorMarkdown": "Edytor Markdown",
"editorMarkdownInfo": "Ten edytor wspiera składnię Markdown jako skrót do szybszego tworzenia treści; doskonale nadaje się do obszernych, prostych projektów, takich jak dokumentacja.",
"editorMarkdownUse": "Użyj edytora Markdown",
"editorWYSIWYG": "Edytor WYSIWYG",
"editorWYSIWYGInfo": "Ten edytor oferuje znajomy sposób przetwarzania tekstu oraz dodatkowe narzędzia dla użytkowników, którzy chcą mieć pod kontrolą każdy aspekt treści swojej strony.",
"editorWYSIWYGUse": "Użyj edytora WYSIWYG",
"editPostAnyway": "Edytuj wpis mimo to",
"excluded": "Wykluczony",
"excludeFromHomepage": "Wykluczony ze strony głównej",
"featured": "Wyróżniony",
"filterOrSearchPosts": "Filtruj lub wyszukaj wpisy...",
"hidden": "Ukryty",
"hidePost": "Ukryj Wpis",
"includeInHomepage": "Zawrzyj na stronie głównej",
"markAsDraft": "Oznacz jako kopię roboczą",
"markAsFeatured": "Oznacz jako wyróżniony",
"markAsUnfeatured": "Oznacz jako niewyróżniony",
"min": "min",
"modificationDate": "Data modyfikacji",
"moveToTrash": "Przenieś do kosza",
"noPostsMatchingYourCriteria": "Brak wpisów spełniających Twoje kryteria.",
"openEditorAnyway": "Otwórz edytor mimo to",
"paragraphs": "Akapity",
"post": "Wpis",
"postAuthor": "Autor wpisu",
"postLink": "Link do wpisu",
"postName": "Nazwa wpisu:",
"postPage": "Strona wpisu",
"posts": "wpisy",
"postSettings": "Ustawienia wpisów",
"postSlug": "Slug wpisu",
"postSlugLengthWarning": "Slug wpisu dłuższy niż 250 znaków może prowadzić do tworzenia uszkodzonych plików podczas renderowania strony internetowej.",
"postSlugTooLong": "Slug wpisu jest za długi",
"postSlugUpdateButton": "Aktualizuj",
"postState": "Stan wpisu",
"postStatusChangeSuccessMessage": "Status wybranych wpisów został zmieniony",
"postTemplate": "Szablon wpisu",
"postWillNotAppearOnHomepageListMsg": "Wpis nie pojawi się na liście na stronie głównej",
"postWillNotAppearOnListMsg": "Wpis nie pojawi się na żadnych wygenerowanych listach wpisó, takich jak strony ze znacznikami lub autorami",
"publicationDate": "Data publikacji",
"publish": "Opublikuj",
"published": "Opublikowano",
"readingTime": "Czas czytania",
"removePostMessage": "Na pewno chcesz usunąć wybrane wpisy? Tej operacji nie można cofnąć.",
"removePostSuccessMessage": "Wybrane wpisy zostały usunięte",
"selectPostPage": "Wybierz stronę wpisu",
"sentences": "Zdania",
"setCustomPostDate": "Ustaw niestandardową datę publikacji",
"status": "Status",
"thisPostIsADraft": "Ten wpis jest kopią roboczą",
"thisPostIsExcludedFromHomepage": "Ten wpis jest wykluczony ze strony głównej.",
"thisPostIsFeatured": "Ten wpis jest wyróżniony",
"thisPostIsHidden": "Ten wpis jest ukryty",
"title": "Tytuł",
"trashed": "Wyrzucony do kosza",
"uniqueWords": "Unikalne słowa",
"updatedOn": "Zaktualizowano",
"url": "URL",
"words": "Słowa"
},
"publii": {
"aboutPublii": "O Publii",
"currentPubliiVersion": "Wersja",
"accept": "Akceptuj",
"copyright": "Prawa autorskie 2026 TidyCustoms. Wszelkie prawa zastrzeżone.
Publii jest zaprojektowane i utrzymywane przez główny zespół i powstało dzięki projektowi Open Source Electron i innemu ",
"creditsIntro": "Publii korzysta z następującego oprogramowania Open Source stron trzecich:",
"dataCollectionInfo": "Nie zbieramy żadnych danych osobowych podczas korzystania z aplikacji Publii; również nie przechowujemy, nie śledzimy, nie pozwalamy osobom trzecim na zbieranie danych osobowych o Tobie. ",
"homepage": "Strona domowa",
"license": "Licencja",
"licensingInformation": "Informacje licencyjne",
"openSourceSoftware": "Oprogramowaniu Open Source",
"publiiLicenseAgreement": "Umowa licencyjna Publii.",
"publiiLicenseAgreementInfo": "To oprogramowanie jest na licencji GNU GPL w wersji 3.
Klikając \"Akceptuj\" godzisz się na"
},
"rendering": {
"errorDuringPreviewCreatingMsg": "Wystąpił błąd podczas tworzenia podglądu.",
"rendering": "Renderowanie...",
"renderingErrorText": "Wystąpił błąd podczas renderowania Twojej witryny.",
"renderingPleaseWait": "Proszę czekać, aż proces renderowania zostanie zakończony.",
"selectThemeBeforeCreatingPreviewMsg": "Musisz wybrać motyw, zanim spróbujesz utworzyć podgląd swojej witryny. Przejdź do ustawień strony i wybierz motyw."
},
"repeater": {
"addItem": "Dodaj element",
"duplicateItem": "Duplikuj element",
"emptyState": "Kliknij przycisk aby dodać pierwszy element",
"removeItem": "Usuń element"
},
"settings": {
"addGDPRCookieBanner": "Dodaj cookie banner (GDPR)",
"additionalValidElementsInWYSIWYGEditor": "Dodatkowe poprawne elementy w edytorze WYSIWYG",
"additionalValidElementsInWYSIWYGEditorInfo": "Jeśli edytor WYSIWYG usunie jakieś tagi z Twojego kodu HTML tutaj możesz podać dodatkowe elementy dozwolone.
Na przykład: v-select[*],v-dropdown[*] zezwoli na niestandardowe tagi v-select i v-dropdown z dowolnymi atrybutami.",
"advancedOptions": "Opcje zaawansowane",
"advancedPreviewDesc": "Zaawansowany podglad pozwala na renderowanie strony bez otwierania przeglądarki",
"alwaysAddIndexHTMLInURLs": "Zawsze dodawaj index.html w URLach",
"alwaysSaveSearchState": "Zawsze zapisuj stan wyszukiwania",
"anchorLink": "Link do kotwicy",
"appSettings": "Ustawienia aplikacji",
"appSettingsSavedMsg": "Ustawienia aplikacji zostały pomyślnie zapisane.",
"appSettingsSaveErrorMsg": "Wystąpił błąd podczas zapisywania ustawień aplikacji. Proszę spróbować ponownie.",
"appUIZoomLevel": "Dostosowanie skali interfejsu",
"appUIZoomLevelInfo": "Dostosuj skalę interfejsu użytkownika, aby zwiększyć widoczność i komfort podczas zarządzania treścią. Ta opcja pozwala dostosować rozmiar interfejsu użytkownika do preferowanego rozmiaru, zapewniając, że tekst, ikony i inne elementy UI są łatwo czytelne i dostępne.",
"ascending": "Rosnąco",
"authorPage": "Strona autora",
"authorPages": "Strony autora",
"authorPageTitleVariables": "Następujące zmienne mogą zostać użyte: %authorname, %sitename.",
"authorPrefix": "Prefiks Autora:",
"authorPrefixInfo": "Definiuje przedrostek, który pojawia się przed slugiem autora w adresie URL np. https://example.com/AUTHORS_PREFIX/author-slug.
",
"authorPrefixInfoExtended": "Definiuje przedrostek, który pojawia się przed slugiem autora w adresie URL np. https://example.com/POSTS_PREFIX/AUTHORS_PREFIX/author-slug.
",
"authorsPrefixAfterPostsPrefix": "Umieść prefiks autorów po prefiksie wpisów",
"authorsPrefixCannotBeEmpty": "Prefiks autorów nie może być pusty.",
"authorsPrefixCannotEqualTagsPrefix": "Prefiks autorów nie może być taki sam jak prefiks tagów.",
"backupLocation": "Lokalizacja kopii zapasowej",
"backupLocationChangedConfirmMsg": "Zmieniono lokalizację przechowywania kopii zapasowych. Wszystkie nowe kopie zapasowe będą przechowywane w tym katalogu. Jeśli potrzebujesz dostępu do wcześniejszych kopii zapasowych, możesz je ręcznie przenieść do nowego katalogu.",
"badge": "Badge",
"badgeAndCustomLink": "Badge + link niestandardowy",
"badgeLabel": "Etykieta plakietki",
"bannerPosition": "Pozycja bannera",
"basicSettings": "Ustawienia podstawowe",
"byIDAscending": "Według ID rosnąco",
"byIDDescending": "Według ID malejąco",
"cannotAddIndexHTMLInURLsInfo": "Włącz tę opcję jeśli nie możesz domyślnie włączyć ładowania plików index.html kiedy katalog na Twoim serwerze jest otwarty.",
"cardTypes": "Typy kart:",
"changeSitesLocationWithoutCopyingFiles": "Zmień lokalizację stron bez przenoszenia istniejących stron do nowego katalogu",
"closePostEditorOnSave": "Zamknij edytor wpisów po zapisie",
"codeEditor": "Edytor kodu (CodeMirror)",
"colorTheme": "Motyw kolorystyczny",
"content": "Treść",
"continueSync": "Kontynuuj i synchronizuj",
"continueSyncNoRemoteFiles": "Publii nie może znaleźć listy plików na twoim serwerze. Jeśli będziesz kontynuować proces synchronizacji, WSZYSTKIE wygenerowane pliki strony internetowej zostaną przesłane na twój serwer. Możesz anulować proces synchronizacji, aby sprawdzić przyczynę problemu, a następnie spróbować ponownie.",
"convertToWebp": "Konwertuj do WebP",
"convertToWebpInfo": "Włącz tę opcję, jeśli chcesz konwertować wszystkie grafiki w formatach JPG, JPEG oraz PNG do formatu WebP. Po włączeniu tej opcji konieczna jest ponowna regeneracja miniaturek. Opcja ta zadziała tylko gdy używasz biblioteki Sharp do tworzenia miniaturek.",
"convertToWebpJimpWarning": "Ta opcja nie działa z obecnie używanym silnikiem tworzenia miniaturek - Jimp. Proszę użyć silnika Sharp aby móc używać tej opcji.",
"cookieGroups": "Grupy plików cookies",
"cookieBanner": "Banner cookies",
"cookieBasic": "Podstawowy",
"cookieBasicDescription": "Ta sekcja zawiera ustawienia odpowiedzialne za wyświetlanie się banera plików cookie, który służy do poinformowania odwiedzających twoją witrynę o używaniu cookies.",
"cookieAdvanced": "Zaawansowany",
"cookieAdvancedDescription": "Ta sekcja zawiera opcje wyświetlania wyskakującego okienka z zaawansowanymi ustawieniami plików cookie, w którym użytkownik może zarządzać zgodami dla określonej grupy plików cookie.",
"createXMLSitemap": "Stwórz XML mapy strony",
"currentTheme": "Aktualny motyw:",
"currentThemeHasOverrides": "Wygląda na to, że nadpisujesz pliki motywu, a Twoje modyfikacje mogą nie być w pełni zgodne z jego nową wersją. Aktualizacja motywu wymaga przejrzenia i scalenia zawartości tych plików. Kliknij 'OK', aby kontynuować aktualizację lub 'Anuluj', aby najpierw przejrzeć swoje modyfikacje.",
"customElementsInWYSIWYGEditor": "Niestandardowe elementy dostępne w edytorze WYSIWYG",
"customElementsInWYSIWYGEditorInfo": "Jeśli edytor WYSIWYG automatycznie usuwa niektóre tagi z Twojego kodu HTML, możesz dodać je tutaj jako niestandardowe elementy.
Na przykład: v-select,v-dropdown",
"customFeedTitle": "Własny tytuł kanału",
"customLanguageCode": "Niestandardowy kod języka:",
"darkMode": "Tryb ciemny",
"defaultAuthorsOrdering": "Domyślna kolejność autorów:",
"defaultOrderingOnLists": "Domyślna kolejność na listach",
"defaultPagesOrdering": "Domyślna kolejność stron:",
"defaultPostsOrdering": "Domyślna kolejność wpisów:",
"defaultTagsOrdering": "Domyślna kolejność tagów:",
"descending": "Malejąco",
"disableAuthorsPagination": "Wyłącz stronicowanie autorów",
"disableAuthorsPaginationIndexing": "Wyłącz indeksowanie stronicowania autorów",
"disableAuthorsPaginationIndexingInfo": "Jeśli ta opcja jest włączona, pliki paginacji stron autorów zostaną wykluczone z mapy witryny i otrzymają noindex, follow metatag robotów.",
"disableAuthorsPaginationInfo": "Jeśli ta opcja jest włączona, paginacja autorów nie zostanie wygenerowana.",
"disableHomepagePagination": "Wyłącz stronicowanie strony głównej",
"disableHomepagePaginationInfo": "Jeśli ta opcja jest włączona, paginacja strony głównej nie zostanie wygenerowana.",
"disableHomepagePaginationIndexing": "Wyłącz indeksowanie paginacji strony głównej",
"disableTagsPagination": "Wyłącz stronicowanie tagów",
"disableTagsPaginationIndexing": "Wyłącz indeksowanie stronicowania tagów",
"disableTagsPaginationIndexingInfo": "Jeśli ta opcja jest włączona pliki z Twoimi tagami paginacji zostaną wykluczone z mapy witryny i otrzymają noindex, follow metatag robotów.",
"disableTagsPaginationInfo": "Jeśli ta opcja jest włączona, paginacja tagów nie zostanie wygenerowana.",
"displayEmptyAuthors": "Pokazuj autorów bez wpisów",
"displayEmptyAuthorsInfo": "Jeśli ta opcja jest włączona, autorzy bez przypisanych do nich wpisów nadal będą mieć utworzone swoje podstrony i pojawiać się na liście autorów.",
"displayEmptyTags": "Wyświetlaj tagi bez wpisów",
"displayEmptyTagsInfo": "Jeśli ta opcja jest włączona tagi bez przypisanych do nich wpisów nadal będa miały utworzone swoje podstrony i pokażą się na liście tagów.",
"dontIndexThisPage": "Poproś wyszukiwarkę, aby nie indeksowała całej witryny.",
"editorFontFamily": "Krój pisma",
"editorFontFamilySansSerif": "Bezszeryfowy",
"editorFontFamilySerif": "Szeryfowy",
"editorFontSize": "Rozmiar tekstu (px)",
"editors": "Edytory",
"embedConsents": "Zgody na osadzane treści",
"embedConsentsDescription": "Ta sekcja umożliwia blokowanie treści ładowanych w ramkach iframe od zewnętrznych dostawców treści, którzy mogą ustawiać pliki cookie. Podając domenę adresu URL iframe np. youtube.com, wiadomość, przycisk akceptacji i przypisujac do istniejącej grupy plików cookie, ramka iframe zostanie zastąpiona bannerem informującym odwiedzających, że treść jest zablokowana z powodu ich ustawień zgody (odwiedzający nie wyraził zgodę na rodzaje plików cookie używanych przez element iframe w banerze plików cookie).",
"embedVideos": "Osadzanie video",
"enableAdvancedPreview": "Włącz zaawansowany podgląd",
"enableAutoIndent": "Włącz automatyczne wcięcia",
"enableCSSCompression": "Włącz kompresję CSS",
"enableHTMLCompression": "Włącz kompresję HTML",
"enableJSONFeed": "Włącz kanał JSON",
"enableMediaLazyLoad": "Włącz lazy load dla mediów",
"enableMediaLazyLoadInfo": "Włącz tę opcję, jeśli chcesz używać natywnego lazy loading, które wolno ładuje obrazy, filmy i ramki iframe.",
"enableResponsiveImages": "Włącz responsywne obrazy",
"enableResponsiveImagesInfo": "Włącz tę opcję, jeśli chcesz dostarczać obrazy o różnych rozmiarach przy różnych rozdzielczościach ekranu w zależności od punktów przerwania zdefiniowanych w pliku config.json w folderze motywu.",
"enableRSSFeed": "Włącz kanał RSS",
"enableSharingButtons": "Włącz przyciski udostępniania",
"enableSpellchecker": "Włącz sprawdzanie pisowni",
"errorPage": "Strona błędu:",
"errorPageFilenameCannotBeEmpty": "Nazwa pliku strony błędu nie może być pusta.",
"errorPageFilenameCannotEqualSearchPageFilename": "Nazwa pliku strony błędu nie może być taka sama jak nazwa pliku strony wyszukiwania.",
"errorPageTitleVariables": "Następujące zmienne mogą zostać użyte: %sitename.",
"excludedFiles": "Wykluczone pliki",
"excludeFeaturedPosts": "Wyklucz wyróżnione wpisy",
"excludeFilesFromSitemapInfo": "Wpisz rozdzieloną przecinkami listę plików HTML lub katalogów, które mają być wykluczone z mapy witryny.
Na przykład: avoid-this-file.html,avoid-this-catalog-too.",
"experimentalFeaturesWarning": "Zawsze szukamy sposobów na ulepszenie naszej aplikacji. Ta sekcja zawiera eksperymentalne funkcje zaprojektowane w celu rozszerzenia funkcjonalności Publii. Nie możemy zagwarantować ich poprawnego działania; aktywujesz je na własne ryzyko.",
"experimentalFeatureAppAutoBeautifySourceCode": "Automatycznie upiększaj kod źródłowy w edytorze WYSIWYG",
"experimentalFeatureAppAutoBeautifySourceCodeDesc": "Ta funkcja włącza automatyczne upiększanie kodu w edytorze kodu źródłowego edytora WYSIWYG",
"experimentalFeatureAppFtpAlt": "Używaj alternatywnej biblioteki FTP do uploadu strony",
"experimentalFeatureAppFtpAltDesc": "Użyj tej opcji, szczególnie jeśli Twój hosting używa IPv6 do adresacji serwerów",
"experimentalFileManagerInSidebar": "Pokaż menadżer plików w pasku bocznym",
"externalImages": "Zewnętrzne obrazy",
"externalPage": "Strona zewnętrzna",
"facebook": "Facebook",
"facebookAppID": "ID Aplikacji z Facebook",
"facebookAppIDInfo": "Przeczytaj jak uzyskać Facebook App ID.",
"fallbackImage": "Obraz zastępczy",
"fallbackLogoImage": "Zastępczy obraz logo",
"fallbackLogoImageInfo": "Logo musi mieścić się w rozmiarze 60 × 600 pixeli.",
"featuredPostsOrderBy": "Sortuj wyróżnione wpisy po:",
"featuredPostsOrdering": "Sortowanie wyróżnionych wpisów:",
"feedsRelativeUrlsInfo": "Aby wyświetlić ustawienia kanałów RSS/JSON, wyłącz opcję 'Używaj relatywnych URLi' w ustawieniach serwera; w przeciwnym wypadku kanał nie zostanie wygenerowany",
"feedTitle": "Tytuł kanału:",
"feedUpdatedDateType": "Data aktualizacji wpisu ustawiana jako:",
"filesLocation": "Lokalizacja plików",
"footerText": "Tekst w stopce",
"frontpage": "Pierwsza strona",
"frontpagePageCannotBeEmpty": "Wybór strony głównej nie może być pusty.",
"gConsentModeDefaultState": "Stan domyślny",
"gConsentModeEnabled": "Włącz Google Consent Mode",
"gConsentMode": {
"addGroup": "Dodaj ustawienia grupy cookies",
"cookieGroup": "Grupa cookies",
"description": "Ta sekcja pozwala na określenie domyślnego stanu Google Consent Mode oraz określenie sygnałów, które będa wysyłane w momencie gdy konkretna grupa plików cookies zostanie zaakceptowana przez użytkownika. Użyj tych opcji jeśli potrzebujesz kompatybilności z Google Consent Mode. Jeśli nie używasz Google Analytics, Google Ads lub podobnych narzędzi, najprawdopodobniej nie potrzebujesz włączać tych funkcji.",
"title": "Google Consent Mode"
},
"GDPR": "Ustawienia prywatności",
"gdprBannerPosition": {
"centered": "Wycentrowany",
"left": "Z lewej",
"right": "Z prawej",
"bar": "Pasek"
},
"gdprAllowAdvancedConfiguration": "Włącz zaawansowaną konfigurację plików cookies",
"gdprAdvancedConfigurationLinkLabel": "Etykieta przycisku zaawansowanej konfiguracji",
"gdprAdvancedConfigurationLinkPlaceholder": "Zarządzaj preferencjami",
"gdprAdvancedConfigurationAcceptButtonLabel": "Etykieta przycisku akceptacji",
"gdprAdvancedConfigurationRejectButtonLabel": "Etykieta przycisku odrzucenia",
"gdprAdvancedConfigurationSaveButtonLabel": "Etykieta przycisku zapisu",
"gdprAdvancedConfigurationTitle": "Tytuł w popupie",
"gdprAdvancedConfigurationDescription": "Opis w popupie",
"gdprAdvancedConfigurationPrivacyLink": "Link do polityki prywatności",
"gdprAdvancedConfigurationPrivacyLinkDescription":"Wyświetl link do strony polityki prywatności w popupie. Jeśli opcja 'Pokaż link do polityki prywatności' w sekcji 'Podstawowy' jest wyłączona, link również nie zostanie wyświetlony w popupie.",
"gdprBehaviourInfo": "Pamiętaj o umieszczeniu linku z powyższą kotwicą w nawigacji Twojej strony lub w treści strony (np. Ustawienia plików cookies). W przeciwnym razie użytkownicy Twojej witryny mogą nie mieć możliwości zmiany swoich indywidualnych preferencji dotyczących plików cookie.",
"gdprCookieSettingsRevision": "Wersja ustawień",
"gdprCookieSettingsTTL": "Przechowuj ustawienia użytkownika przez X dni",
"gdprDebugMode": "Włącz tryb debugowania",
"gdprShowRejectButton": "Pokaż przycisk odrzucenia",
"gdprRejectButtonLabel": "Etykieta przycisku odrzucenia",
"gdprBannerTitle": "Tytuł banera",
"gdprBannerMessage": "Opis w banerze",
"generateOpenGraphTags": "Generuj tagi Open Graph",
"generateTwitterCards": "Generuj karty Twitter'a",
"googleAnalyticsTrackingID": "ID Google Analytics Tracking",
"hiddenPostsOrderBy": "Sortuj ukryte wpisy po:",
"hiddenPostsOrdering": "Sortowanie ukrytych wpisów:",
"hideCustomExcerptsOnPostPages": "Ukryj własne zajawki na stronach wpisów",
"hideCustomExcerptsOnPostPagesInfo": "Jeśli ta opcja jest włączona strony wpisów nie będą pokazywać tekstu umieszczonego nad elementem \"Czytaj więcej\" w edytorze wpisu.",
"hideCustomExcerptsOnPagePages": "Ukryj własne zajawki na stronach",
"hideCustomExcerptsOnPagePagesInfo": "Jeśli ta opcja jest włączona strony nie będą pokazywać tekstu umieszczonego nad elementem \"Czytaj więcej\" w edytorze strony.",
"homepage": "Strona główna",
"homepageNoIndexPagination": "Jeśli ta opcja jest włączona, pliki paginacji strony głównej zostaną wykluczone z mapy witryny i otrzymają noindex, follow metatag robotów.",
"homepagePagination": "Paginacja strony głównej",
"howToPrepareYourThemeForGDPRInfo": "Włączenie tej opcji spowoduje wyświetlenie banera plików cookie w Twojej witrynie. Aby uzyskać więcej informacji na temat prawidłowej konfiguracji banera zapoznaj się z następującym artykułem GDPR Cookie Banner Configuration ",
"howYtNoCookiesWorks": "Po włączeniu tej opcji, domena adresu URL umieszczonego filmu 'www.youtube.com' zostanie automatycznie zmieniona na 'www.youtube-nocookie.com', aby uniemożliwić personalizowanie sposobu przeglądania YouTube ani w tym odtwarzaczu, ani w samym serwisie, a także zapewni, że żadne dane nie są wykorzystywane do dostosowywania reklam wyświetlanych widzom poza Twoją witryną. Dowiedz się więcej o rozszerzonym trybie prywatności odwiedzając stronę pomocy YouTube..",
"howVimeoNoTrackWorks": "Po włączeniu tej opcji, dodatkowy parametr dnt=1 zostanie dodany do adresu URL umieszczonego odtwarzacza Vimeo (player.vimeo.com/video), aby uniemożliwić śledzenie jakichkolwiek danych sesji, w tym wszystkich plików cookie i danych analitycznych. Dowiedz się więcej o parametrach odtwarzacza Vimeo odwiedzając stronę pomocy Vimeo.",
"imageResizeEngineInfo": "Silnik zmiany rozmiaru obrazów The Sharp jest znacznie szybszy niż Jimp, ale może powodować problemy z niektórymi obrazami. Jeśli napotkasz problemy podczas tworzenia lub ponownego generowania miniatur, spróbuj przełączyć się na mechanizm zmiany rozmiaru Jimp. Jeśli chcesz używać obrazów WebP, musisz użyć mechanizmu zmiany rozmiaru Sharp.",
"imagesResizeEngine": "Silnik zmiany rozmiaru obrazów:",
"imageResizeEngineWarning": "Jeśli używany jest silnik Jimp, opcja wykorzystania grafik WebP nie będzie działać poprawnie. Upewnij się, że wszystkie Twoje strony mają opcję 'Szybkość strony / Konwertuj do WebP' wyłączoną i wygeneruj miniatury ponownie aby zapewnić poprawne wyświetlanie grafik.",
"indentSize": "Rozmiar wcięć (spacje)",
"internalPage": "Strona wewnętrzna",
"leaveBlankForDefaultBackupsDir": "Pozostaw puste, aby użyć domyślnego katalogu kopii zapasowych",
"leaveBlankForDefaultPreviewDirectory": "Pozostaw puste, aby użyć domyślnego katalogu dla podglądów",
"leaveBlankToUseDefaultPageTitle": "Pozostaw puste aby użyć domyślnego tytułu strony.",
"leaveBlankToUseDefaultSitesDir": "Pozostaw puste, aby użyć domyślnego katalogu witryn",
"lightMode": "Tryb jasny",
"linkedIn": "LinkedIn",
"linkLabel": "Etykieta linku",
"loadAtStart": "Załaduj na początku:",
"metaDescription": "Opis Meta:",
"metaRobots": "Meta Roboty:",
"noIndexForChatGPTBot": "Blokuj bota GPTBot",
"noIndexForChatGPTUser": "Blokuj bota ChatGPT-User",
"noIndexForChatGPTBotInfo": "Gdy ta opcja jest włączona, zapobiega indeksowaniu zawartości witryny przez bota GPTBot (używanego przez ChatGPT do indeksowania treści). Pamiętaj, że zadziała tylko wtedy, gdy nie używasz własnego pliku robots.txt.",
"noIndexForChatGPTUserInfo": "Gdy ta opcja jest włączona, zapobiega skanowaniu zawartości witryny przez bota ChatGPT-User (używanego przez wtyczki ChatGPT). Pamiętaj, że zadziała tylko wtedy, gdy nie używasz własnego pliku robots.txt.",
"noIndexForCommonCrawlBots": "Blokuj boty Common Crawl",
"noIndexForCommonCrawlBotsInfo": "Gdy ta opcja jest włączona, zapobiega indeksowaniu zawartości witryny przez boty Common Crawl. Pamiętaj, że zadziała tylko wtedy, gdy nie używasz własnego pliku robots.txt.",
"noIndexWebsite": "Nieindeksowanie strony",
"notSelected": "Nie wybrano",
"numberOfPostsInFeed": "Liczba wpisów w kanale",
"openDevtoolsInMainW": "Automatycznie otwórz DevTools w oknie głównym",
"openGraph": "Open Graph",
"openLastUsedWebsite": "Otwórz ostatnio używaną witrynę",
"openPopupWindowBy": "Otwórz banner w",
"optionsForDevelopers": "Opcje dla programistów",
"optionsForEditors": "Options for editors",
"optionsForExperimentalFeatures": "Funkcje eksperymentalne",
"ordering": {
"authorASC": "Po autorze (rosnąco)",
"authorDESC": "Po autorze (malejąco)",
"createdASC": "Po dacie utworzenia (rosnąco)",
"createdDESC": "Po dacie utworzenia (malejąco)",
"hierarchical": "Hierarchicznie",
"idASC": "Po ID (rosnąco)",
"idDESC": "Po ID (malejąco)",
"modifiedASC": "Po dacie modyfikacji (rosnąco)",
"modifiedDESC": "Po dacie modyfikacji (malejąco)",
"nameASC": "Po nazwie (rosnąco)",
"nameDESC": "Po nazwie (malejąco)",
"postsCounterASC": "Po liczbie wpisów (rosnąco)",
"postsCounterDESC": "Po liczbie wpisów (malejąco)",
"titleASC": "Po tytule (rosnąco)",
"titleDESC": "Po tytule (malejąco)"
},
"pageAsFrontpage": "Wybierz podstronę",
"pageTitle": "Tytuł Strony",
"pageTitleVariables": "Następujące zmienne mogą zostać użyte: %pagetitle, %sitename, %authorname",
"paginationPhrase": "Fraza paginacji:",
"paginationPhraseCannotBeEmpty": "Fraza paginacji nie może być pusta.",
"paginationPhraseInfo": "Definiuje frazę używaną przed numerem strony w adresie URL np. https://example.com/tags/tag-slug/page/2.
",
"password": {
"alwaysAskForPassword": "Zawsze proś o hasło",
"password": "Hasło",
"passwordFieldCantBeEmpty": "Pole hasła nie może być puste."
},
"pinterest": "Pinterest",
"postCreationDate": "Data utworzenia wpisu",
"postID": "ID wpisu",
"postModificationDate": "Data modyfikacji wpisu",
"postPageTitleVariables": "W tytule strony wpisu można użyć następujących zmiennych: %posttitle, %sitename, %authorname.",
"postsListing": "Lista wpisów",
"postsIndex": "Indeks wpisów",
"postsOrderBy": "Sortuj wpisy po:",
"postsOrdering": "Sortowanie wpisów:",
"postPrefixInfo": "Wprowadzony tutaj prefix zostanie dodany przed slugiem wpisu w URL. Na przykład: https://example.com/PREFIKS_POSTA/post-slug. Ta opcja jest konieczna, jeśli ustawisz podstronę jako stronę główną i potrzebujesz stronicowania wpisów. W tym przypadku, stronicowanie wpisów będzie dostępne pod adresem https://example.com/PREFIKS_POSTA/page/X. Dodatkowo, tagi będą renderowane pod adresem https://example.com/PREFIKS_POSTA/PREFIKS_TAGA/tag-slug.",
"postsPrefix": "Prefiks postów",
"postTitle": "Tytuł wpisu",
"previewLocation": "Lokalizacja podglądów",
"previewLocationChangedConfirmMsg": "Miejsce przechowywania podglądu zostało zmienione. Pamiętaj, że istniejące pliki w tym folderze zostaną usunięte po utworzeniu podglądu Twojej witryny.",
"privacyPolicyLinkLabel": "Etykieta linka polityki prywatności",
"privacyPolicyPage": "Wybierz stronę",
"privacyPolicyPageURL": "Wpisz adres URL strony",
"privacyPolicyURL": "Źródło linka polityki prywatności",
"provideFacebookAppID": "Proszę podać Facebook App ID",
"random": "Losowe",
"readAboutOurRecommendedServerSettings": "Dowiedz się więcej o zalecanych konfiguracjach serwerów odwiedzając oficjalną stronę dokumentacji.",
"relatedPostsOptions": "Opcje powiązanych wpisów",
"relatedPostsOptionsInfo": "Po włączeniu wpisy powiązane będą pobierane ze wszystkich tagów. Po wyłączeniu wpisy powiązane będą generowane tylko na podstawie tych samych tagów, co bieżący wpis.",
"relatedPostsOrdering": "Sortowanie powiązanych wpisów:",
"relatedPostsSelectionMechanism": "Mechanizm wyboru powiązanych wpisów:",
"removeHTMLComments": "Usuń komentarze HTML",
"responsiveImagesQuality": "Jakość responsywnych obrazów",
"responsiveImagesAlphaQuality": "Jakość alpha responsywnych obrazów (tylko WebP)",
"RSSJSONFeed": "Kanał RSS/JSON",
"saveButtonLabel": "Etykieta przycisku zapisu",
"saveSearchStateInfo": "Po włączeniu Publii zapisze bieżące wyniki wyszukiwania, nawet podczas tworzenia nowego wpisu, umożliwiając powrót do listy. Domyślnie Publii zapisuje wyniki wyszukiwania tylko podczas otwierania wpisu do edycji.",
"requiresRestartingApp": "Wymaga ponowengo uruchomienia aplikacji.",
"saveSettings": "Zapisz Ustawienia",
"searchPage": "Strona wyszukiwania:",
"searchPageFilenameCannotBeEmpty": "Nazwa pliku strony wyszukiwania nie może być pusta.",
"searchPageTitleVariables": "Następujące zmienne mogą zostać użyte: %sitename.",
"selectedDirInvalid": "Wybrana ścieżka nie istnieje.",
"selectPage": "Wybierz stronę",
"showFeaturedImage": "Pokaż wyróżniony obraz",
"showFeaturedImageInfo": "Wyświetl w kanale obraz wyróżniony wpisu.",
"showFullText": "Pokaż pełen tekst",
"showFullTextInFeedInfo": "Wyświetl w kanale pełny tekst wpisu.",
"showModificationDate": "Pokaż datę modyfikacji",
"showModificationDateAsColumn": "Pokaż datę modyfikacji jako kolumnę",
"showOnlyFeaturedPosts": "Pokaż tylko wyróżnione wpisy",
"showPostSlugsOnTheListing": "Pokaż slug na liście wpisów/stron",
"showPostTagsOnTheListing": "Pokaż tagi wpisu na liście",
"showPrivacyPolicyLink": "Pokaż link do polityki prywatności",
"sitemap": "Mapa witryny",
"sitemapLinkInfo": "Mapę XML można znaleźć tutaj: sitemap.xml",
"sitemapRelativeUrlsInfo": "Aby wyświetlić ustawienia mapy witryny, wyłącz opcję 'Używaj relatywnych URLi' w ustawieniach serwera; w przeciwnym wypadku mapa witryny nie zostanie wygenerowana",
"siteSettings": "Ustawienia strony",
"siteSettingsSaveDuplicateNameErrorMessage": "Podana nazwa witryny jest używana. Podaj inną nazwę.",
"siteSettingsSaveEmptyNameErrorMessage": "Nazwa witryny nie może być pusta. Podaj inną nazwę.",
"siteSettingsSaveNoKeyringErrorMessage": "Publii nie możne zapisać ustawień z powodu problemu z oprogramowaniem do bezpiecznego przechowywania haseł. Uruchom ponownie aplikację i spróbuj jeszcze raz. Jeśli problem będzie się powtarzał, zgłoś go naszemu zespołowi za pośrednictwem forum.",
"siteSettingsSaveNoKeyringErrorMessageLinux": "Publii nie możne zapisać ustawień, ponieważ nie jest zainstalowane żadne oprogramowanie do bezpiecznego przechowywania haseł. Postępuj zgodnie z instrukcjami instalacji dla Node Keytar via https://github.com/atom/node-keytar/ i spróbuj ponownie. Prawdopodobnie w Twoim systemie brakuje paczek libsecret-1-dev i gnome-keyring.",
"siteSettingsSaveSiteNotExistsErrorMessage": " nie istnieje. Uruchom ponownie aplikację.",
"siteSettingsSaveSuccessMessage": "Ustawienia witryny zostały pomyślnie zapisane.",
"sitesLocation": "Lokalizacja witryn",
"sitesLocationChangedConfirmMsg": "Zmieniono lokalizację witryn. Nowy folder docelowy zostanie wyczyszczony przed przeniesieniem tam plików witryn. Czy chcesz kontynuować?",
"spellcheckerDoesNotSupportLanguage": "Sprawdznie pisowni nie wspiera wybranego języka strony. Zalecamy wyłączenie tej funkcji.",
"system": "System",
"systemColors": "Użyj kolorów systemowych",
"tagPages": "Strony taga",
"tagPageTitleVariables": "Następujące zmienne mogą zostać użyte: %tagname, %sitename.",
"tagPrefix": "Prefiks Taga:",
"tagPrefixInfo": "Wprowadzone tutaj prefiksy zostaną dodane przed umieszczeniem tagu w adresie URL np. https://example.com/TAGS_PREFIX/tag-slug.
Ten prefiks jest również używany do generowania strony z listą tagów (jeśli jest obsługiwana w Twoim motywie) jako https://example.com/TAGS_PREFIX/index.html.",
"tagPrefixInfoExtended": "Wprowadzone tutaj prefiksy zostaną dodane przed umieszczeniem tagu w adresie URL np. https://example.com/POSTS_PREFIX/TAGS_PREFIX/tag-slug.
Ten prefiks jest również używany do generowania strony z listą tagów (jeśli jest obsługiwana w Twoim motywie) jako https://example.com/POSTS_PREFIX/TAGS_PREFIX/index.html.",
"tagsListPage": "Strona listy tagów",
"tagsListPageTitleVariables": "Następujące zmienne mogą zostać użyte: %sitename.",
"tagsPrefixAfterPostsPrefix": "Umieść prefix tagów po prefiksie wpisów",
"tagsPrefixCannotBeEmpty": "Prefiks tagów nie może być pusty, jeśli włączone są ładne adresy URL.",
"themeDoesNotHaveSupportedFeaturesList": "
Plik Twojego motywu config.json nie zawiera sekcji supportedFeatures. Proszę zaktualizować lub zmodyfikować motyw aby uzyskać dokładny komunikat o funkcjach, które nie są wspierane przez aktualnie używany motyw. Czytaj więcej o wspieranych funkcjach.
",
"themeDoesNotSupport404ErrorPage": "Twój motyw nie obsługuje strony błędu 404.",
"themeDoesNotSupportAuthorPages": "Twój motyw nie obsługuje stron autorów.",
"themeDoesNotSupportErrorPages": "Twój motyw nie obsługuje stron błędów.",
"themeDoesNotSupportSearchPages": "Twój motyw nie obsługuje stron wyszukiwania.",
"themeDoesNotSupportTagPages": "Twój motyw nie obsługuje stron tagów.",
"themeDoesNotSupportTagsListPage": "Twój motyw nie wspiera stron listy tagów.",
"themeDoesNotSupportEmbedConsents": "Twój motyw nie wspiera zgód dla osadzanych treści.",
"themePrimaryColor": "Kolor przewodni motywu",
"timeFormat": "Format czasu:",
"toViewSitemapEnableIndexingInfo": "Aby wyświetlić ustawienia mapy witryny, wyłącz opcję 'Poproś wyszukiwarki, aby nie indeksowały tej witryny' w zakładce Ustawienia SEO; w przeciwnym wypadku mapa witryny nie zostanie wygenerowana.",
"tumblr": "Tumblr",
"twitter": "Twitter",
"twitterCards": "Karty Twitter'a",
"twitterUsername": "Nazwa użytkownika na Twitter",
"twitterSummaryCard": "Karta podsumowania",
"twitterSummaryCardLargeImage": "Karta podsumowania z dużym obrazem",
"urls": "URLe",
"useAsTitlePageTitle": "Użyj tytułu strony jako tytułu",
"useAsTitlePageTitleInfo": "Kiedy ta opcja jest włączona, metatagi og:title i twitter:title będą zawierały tytuł strony zamiast tytułu wpisu, nazwy taga lub nazwy autora.",
"useGlobalConfiguration": "Użyj konfiguracji globalnej",
"useOnlyTags": "Używaj tylko tagów",
"useOnlyTitles": "Używaj tylko tytułów",
"usePrettyURLs": "Użyj ładnych URLi",
"usePrettyURLsInfo": "Jeśli ta opcja jest włączona URLe Twoich wspisów nie będą zawierały przyrostka np. URL https://example.com/post.html zostanie zamieniony na https://example.com/post/. Dla podstron hierarchia nie będzie uwzględniana w URL, jeśli ta opcja jest wyłączona.",
"usePageAsFrontpage": "Ustaw podstronę jako stronę główną",
"usePageAsFrontpageNotice": "Włączenie tej opcji spowoduje, że strona główna będzie wyświetlać zawartość wybranej podstrony. Wszystkie wpisy na stronie głównej zostaną zastąpione zawartością tej podstrony. Należy pamiętać, że pozostawienie pola Prefiks postów pustym spowoduje wyłączenie stronicowania wpisów.",
"useSiteGlobalSettings": "Użyj globalnych ustawień strony",
"useTitlesAndTags": "Używaj tytułów i tagów",
"useWideScrollbars": "Użyj szerszych pasków przewijania",
"versionParameter": "Parametr wersji",
"versionParameterInfo": "Dodaj parametr wersji w adresach URL plików CSS/JS, aby pominąć pamięć podręczną przeglądarki. Ta opcja może spowodować, że podczas wdrażania konieczne będzie zsynchronizowanie większej liczby plików niż zwykle.",
"vimeoNoTrack": "Włącz tryb 'Bez śledzenia' dla video z Vimeo",
"websiteName": "Nazwa witryny",
"websiteSpeed": "Szybkość witryny",
"webpLossless": "Włącz bezstratną kompresję dla grafik w formacie WebP",
"whatsApp": "WhatsApp",
"youMustReviewGdprSettings": "Powinieneś sprawdzić swoje ustawienia Prywatności (poprzednio GDPR) ze względu na istotne zmiany w Publii v.0.40. Czytaj więcej",
"ytNoCookies": "Włącz tryb rozszerzonej prywatności dla video z YouTube"
},
"site": {
"addNewWebsite": "Dodaj nową stronę internetową",
"cloneWebsite": "Klonuj stronę internetową",
"cloneWebsiteSuccessMsg": "Witryna została sklonowana. Przełączono na: ",
"createNewWebsite": "Utwórz nową stronę",
"createWebsite": "Utwórz stronę",
"createYourFirstWebsite": "Utwórz swoją pierwszą stronę",
"creationInProgress": "Trwa tworzenie...",
"deleteWebsite": "Usuń stronę internetową",
"deleteWebsiteConfirmMsg": "Czy na pewno chcesz usunąć tę witrynę? Tej czynności nie można cofnąć.",
"deleteWebsiteCSuccessMsg": "Witryna została usunięta.",
"deleteWebsiteSuccessMsg": "Witryna została usunięta. Przełączono na: ",
"duplicateWebsite": "Duplikuj stronę internetową",
"erroOcurredDuringSiteDatabaseCreationInfo": "Wystąpił błąd poczas tworzenia bazy danych dla strony. Sprawdź swój program antywirusowy i spróbuj ponownie. Możliwe, że musisz również usunąć niepoprawny katalog strony z katalogu stron Publii.",
"installFromBackup": "Zainstaluj z kopii zapasowej",
"removeWebsite": "Usuń stronę internetową",
"restoreFromBackup": {
"createWebsite": "Utwórz stronę",
"invalidBackupContent": "Wybrany plik nie jest poprawnym plikiem kopii zapasowej.",
"invalidSiteData": "Wybrana kopia zapasowa jest uszkodzona.",
"iWantChangeName": "Zmień nazwę",
"restoreFailed": "Wystapił błąd podczas tworzenia strony z kopii zapasowej. Spróbuj ponownie.",
"selectSiteName": "Wybierz nazwę strony",
"siteExistsWantOverride": "W katalogu o wybranej nazwie istnieje już strona. Czy chcesz kontynuować? UTRACISZ dane poprzedniej strony i dane strony z kopii zapasowej NADPISZĄ istniejącą stronę",
"siteNameCannotBeEmpty": "Nazwa strony nie może być pusta",
"unsupportedFormat": "Niewspierany format - proszę użyć kopii zapasowej w formacie TAR.",
"unpackError": "Wystapił błąd podczas wypakowywania kopii zapasowej - spróbuj ponownie.",
"yesPleaseOverride": "Tak, nadpisz"
},
"selectedBackupFile": "Wybrano plik kopii zapasowej: ",
"siteDescription": "Opis strony (wewnętrzny):",
"siteLoadingErrorMsg": "Wystąpił błąd podczas ładowania wybranej witryny. Sprawdź pliki witryny i spróbuj ponownie.",
"siteName": "Nazwa strony:",
"siteSettingsSaveSuccessMsg": "Ustawienia witryny zostały pomyślnie zapisane.",
"siteWithThisNameExists": "Strona o podanej nazwie już istnieje!",
"specifyNameForWebsiteDuplicate": "Podaj nową nazwę duplikatu witryny:",
"websiteAuthorRequired": "nazwa autora strony jest wymagana i powinna zawierać litery",
"websiteName": "Nazwa strony",
"websiteNameAlreadyInUseMsg": "Wybrana nazwa jest używana przez inną stronę internetową. Proszę spróbować ponownie.",
"websiteNameCantBeEmpty": "Nazwa witryny nie może być pusta. Proszę spróbować ponownie.",
"websiteNameRequired": "nazwa strony jest wymagana",
"websiteNotFound": "Nie znaleziono strony internetowej"
},
"supportedFeatures": {
"featureNames": {
"authorImages": "wyróżnione grafiki autorów",
"authorPages": "podstrony autorów",
"blockEditor": "edytor blokowy",
"customComments": "systemy komentarzy",
"customSearch": "wyszukiwarki",
"errorPage": "podstrona błędów",
"searchPage": "podstrona wyszukiwania",
"tagImages": "wyróżnione grafiki tagów",
"tagsList": "podstrona listy tagów",
"tagPages": "podstrony tagów"
},
"yourThemeDoNotSupport": "Twój obecnie używany motyw nie wspiera wymaganej funkcji: {featureName}"
},
"sync": {
"accessID": "ID dostępowe",
"accessIDFieldCantBeEmpty": "Pole ID dostępowe nie może być puste",
"acl": "ACL",
"afterInitialSyncSiteWillBeAvailableOnline": "Po początkowej synchronizacji Twoja witryna będzie dostępna online",
"allFilesUploadedPart1": "Wszystkie pliki zostały pomyślnie wysłane na Twój serwer. ",
"allFilesUploadedPart2": "Aby odwiedzić stronę, kliknij przycisk poniżej.",
"apiRateLimiting": "Ograniczenie szybkości interfejsu API",
"apiRateLimitingNote": "Wyłącz tę opcję tylko wtedy, gdy używasz Github Enterprise z wyłączonym ograniczaniem szybkości interfejsu API. W przeciwnym razie wyłączenie tej opcji może spowodować błędy wdrażania.",
"apiServer": "Serwer API",
"apiServerNote": "Zmień tę wartość tylko wtedy, gdy korzystasz z własnej instancji GitHub (wersja Enterprise).",
"authenticationMethod": "Metoda uwierzytelnienia",
"branch": "Gałąź",
"branchExampleGitNote": "Przykłady: main, gh-pages or docs.",
"branchExampleGitHubNote": "Przykłady: gh-pages, docs lub main.",
"branchExampleGitLabeNote": "Przykład: main.",
"branchFieldCantBeEmpty": "Pole gałęzi nie może być puste",
"bucket": "Bucket",
"bucketFieldCantBeEmpty": "Pole bucket nie może być puste",
"certificates": "Certyfikaty",
"changeServerType": "Zmień rodzaj serwera",
"checkingConnection": "Sprawdzanie połączenia...",
"clickToChangeDeploymentMethod": "Kliknij, aby zmienić aktualnie używaną metodę wdrażania",
"commitAuthor": "Autor zmian",
"commitAuthorFieldCantBeEmpty": "Pole autora zmian nie może być puste",
"commitEmail": "Adres e-mail autora zmian",
"commitMessage": "Opis zmian",
"commitMessageFieldCantBeEmpty": "Pole opisu zmian nie może być puste",
"configureServer": "Skonfiguruj serwer",
"connectedToServer": "Połączono z serwerem",
"connectingToServer": "Łączenie z serwerem...",
"connectionToServerErrorAdditionalMessage": "Wystąpił błąd podczas łączenia się z serwerem: ",
"connectionToServerErrorMessage": "Wystąpił błąd podczas łączenia się z serwerem. Proszę sprawdzić ustawienia serwera i spróbować ponownie.",
"connectionToServerErrorText": "Wystąpił błąd podczas łączenia się z serwerem...",
"connectToServerCantStoreFilesErrorMsg": "Błąd! Aplikacja mogła połączyć się z Twoim serwerem, ale nie mogła zapisać plików. Sprawdź uprawnienia do plików na Twoim serwerze",
"connectToServerErrorMsg": "Błąd! Aplikacja nie mogła połączyć się z Twoim serwerem.",
"connectToServerSuccessMsg": "Sukces! Aplikacja mogła połączyć się z Twoim serwerem.",
"deploymentMethodFilesPubliiMsg": "Wybrana metoda synchronizacji korzysta z pliku files.publii.json do synchronizacji. Rozważ ochronę dostępu do tego pliku w swojej konfiguracji serwera, jeśli jest to potrzebne - dowiedz się więcej",
"deploymentMethodFtpMsg": "Protokół FTP wykorzystuje transmisję nieszyfrowaną, co oznacza, że wszelkie dane przesyłane za jego pośrednictwem, w tym nazwa użytkownika i hasło, mogą zostać odczytane przez każdego, kto może przechwycić Twoją transmisję. Zdecydowanie zalecamy korzystanie z protokołów FTPS lub SFTP, jeśli to możliwe.",
"deploymentMethodGitMsg": "Aby uzyskać szczegółowe informacje o tym, jak skonfigurować stronę internetową za pomocą Git, zobacz dokumentację online.",
"deploymentMethodGithubPagesMsg": "Aby uzyskać szczegółowe informacje o tym, jak skonfigurować stronę internetową za pomocą Stron Github, zobacz dokumentację online.",
"deploymentMethodGitNote": "Pamiętaj, że w wypadku korzystania z własnej domeny, musisz umieścić plik CNAME w menadżerze plików w katalogu głównym",
"deploymentMethodGithubPagesNote": "To będzie ścieżka Twojego repozytorium Github, która powinna mieć następujący format: NAZWA_UZYTKOWNIKA.github.io/NAZWA_REPOZYTORIUM.
Jeśli używasz niestandardowej nazwy domeny, ustaw w tym polu tylko niestandardową nazwę domeny.",
"deploymentMethodGitlabPagesMsg": "Aby uzyskać szczegółowe informacje o tym, jak skonfigurować stronę internetową za pomocą Stron Gitlab, zobacz dokumentację online.",
"deploymentMethodGoogleCloudMsg": "Aby uzyskać szczegółowe informacje o tym, jak skonfigurować stronę internetową za pomocą Chmury Google, zobacz dokumentację online.",
"deploymentMethodNetlifyMsg": "Aby uzyskać szczegółowe informacje o tym, jak skonfigurować stronę internetową za pomocą Netlify, zobacz dokumentację online.",
"deploymentMethodS3Msg": "Aby uzyskać szczegółowe informacje o tym, jak skonfigurować stronę internetową za pomocą S3, zobacz dokumentację online.",
"deploymentSettingDatHyperIpfsProtocolNote": "Protokół \"dat://\", \"hyper://\", \"dweb://\" i \"ipfs://\" jest przydatny tylko wtedy, gdy planujesz korzystać ze swojej witryny w sieciach P2P. Przeczytaj więcej o dat://, hyper://, dweb:// i IPFS",
"deploymentSettingDoubleSlashProtocolNote": "Uwaga: poczas korzystania z \"//\" jako protokołu, niektóre funkcje, takie jak tagi Open Graph, przyciski udostępniania itp., nie działają poprawnie.",
"deploymentSettingFileProtocolNote": "Protokół \"file://\" jest przydatny tylko wtedy, gdy korzystasz z ręcznej metody wdrażania dla witryn intranetowych.",
"deploymentSettingRelativeUrlsNote": "Uwaga: podczas korzystania ze względnych URLi, niektóre funkcje, takie jak tagi Open Graph, mapy witryn, kanały RSS, kanały JSON itp., zostaną wyłączone.",
"deprecated": "Przestarzałe",
"destinationServerNotConfiguredErrorMessage": "Twoja witryna nie może być obecnie zsynchronizowana, ponieważ serwer docelowy nie został poprawnie skonfigurowany.
Sprawdź ustawienia serwera, aby upewnić się, że wprowadzono prawidłowe informacje.",
"destinationServerNotConfiguredErrorText": "Upewnij się, że serwer docelowy jest poprawnie skonfigurowany.",
"domainNameNotSetErrorMessage": "Twoja witryna nie może być obecnie zsynchronizowana, ponieważ wygląda na to, że w ustawieniach brakuje nazwy domeny.
Sprawdź ustawienia serwera, aby upewnić się, że wprowadzono nazwę domeny.",
"domainNameNotSetErrorText": "Upewnij się, że nazwa domeny jest ustawiona.",
"duringSyncYouCantChangeFilesLocation": "W trakcie synchronizacji nie możesz zmienić lokalizacji plików.",
"fieldIsCaseSensitive": "W tym polu rozróżniana jest wielkość liter.",
"filesNotSyncedErrorMessage": "Proszę sprawdzić plik hard-upload-errors-log.txt przy pomocy narzędzia Narzędzia -> Przeglądarka logów.",
"filesNotSyncedErrorText": "Niektóre pliki nie zostały poprawnie zsynchronizowane.",
"ftp": "FTP",
"ftps": "FTPS",
"ftpWithSSLTLS": "FTP z SSL/TLS",
"generatePreviewFiles": "Wygeneruj pliki podglądu",
"getWebsiteFiles": "Pobierz pliki strony",
"git": "Git",
"github": "GitHub",
"githubPages": "Strony GitHub",
"githubSyncedPart1": "Zmiany na Github Pages mogą być widoczne po kilku minutach od wysłania, ",
"githubSyncedPart2": "zatem należy odczekać chwilę przed weryfikacją zmian.",
"gitlabPages": "Strony Gitlab",
"gitlabSyncedPart1": "Zmiany na Gitlab Pages mogą być widoczne po kilku minutach od wysłania, ",
"gitlabSyncedPart2": "zatem należy odczekać chwilę przed weryfikacją zmian.",
"gitPassword": "Hasło / Token",
"gitPasswordNote": "Jeśli używasz 2FA aby chronić swoje konto, zamiast hasła musisz użyć uprzednio wygenerowanego tokenu dostępowego",
"googleCloud": "Chmura Google",
"googleCloudPrefixNote": "Możesz umieścić swoją stronę internetową w podkatalogu. Unikaj ukośnika na początku (np. /blog/) - spowoduje to utworzenie dodatkowego katalogu z pustą nazwą. Przykład prawidłowego prefiksu: blog.",
"goToAppSettings": "Idź do ustawień aplikacji",
"goToSettings": "Idź do ustawień",
"htmlCacheControl": "Nagłówek Cache-Control dla plików HTML",
"keyFile": "Plik klucza",
"lastRendered": "Ostatnie renderowanie",
"lastSync": "Ostatnia synchronizacja",
"leaveBlankToUseDefaultOutputDirectory": "Pozostaw puste aby użyć domyślnego katalogu docelowego",
"manualDeployment": "Wdrażanie ręczne",
"manualOutputFieldCantBeEmpty": "Ręczny wybór wyjścia nie może być pusty",
"ManualUpload": "Przesyłanie ręczne",
"netlify": "Netlify",
"netlifyToken": "Token Netlify",
"nonCompressedCatalog": "Katalog nieskompresowany",
"note": "Uwaga:",
"operationsDone": "wykonanych operacji",
"otherCacheControl": "Nagłówek Cache-Control dla innych plików",
"outputDirectory": "Katalog docelowy",
"outputDirectoryNote": "W wybranym katalogu zostanie utworzony katalog/plik {siteName}-files. Jeśli już istnieje - zostanie zastąpiony nowymi plikami.",
"outputType": "Typ wyjścia",
"outputTypeNote": "Publii wygeneruje katalog lub archiwum ZIP/TAR z Twoją stroną internetową. Następnie możesz ręcznie przesłać te pliki na dowolny serwer docelowy.",
"parallelUploads": "Przesyłanie równoległe",
"parallelUploadsNote": "Więcej równoległych operacji może prowadzić do błędów przesyłania przy wolnych połączeniach internetowych lub błędu 403 z powodu limitów szybkości interfejsu API.",
"passphraseForKey": "Hasło do klucza",
"passphraseForKeyNote": "Użyj tego pola tylko wtedy, gdy Twój klucz wymaga hasła",
"port": "Port",
"portFormatNote": "Pole portu nie może być puste i musi być dodatnią liczbą całkowitą między 1 i 65535.",
"prefix": "Prefiks",
"preparationError": "Błąd przygotowania",
"preparedToUpload": "Gotowe do wysłania na serwer",
"preparingFiles": "Przygotowywanie plików",
"previewCatalogDoesNotExistInfo": "Katalog do podglądu nie istnieje. Wybierz katalog do podglądów strony w ustawieniach aplikacji. ",
"previewChanges": "Zobacz swoje zmiany",
"provideAccessData": "Podaj dane dostępu",
"provideFTPPasswordFor": "Proszę podać hasło FTP dla ",
"provideFTPPasswordForServer": "Proszę podać hasło FTP dla następującego serwera: ",
"region": "Region",
"regionFieldCantBeEmpty": "Pole regiony nie może byc puste",
"remotePath": "Ścieżka zdalna",
"remotePathMatchServerOrRootPathNote": "Ścieżka powinna pasować do ścieżki serweranp. public_html/, public_html/blog/ lub ścieżce głównej np. /home/username/public_html/.",
"remotePathMatchServerRootPathNote": "Ścieżka powinna odpowiadać ścieżce głównej serwera np. /public_html/, /public_html/blog/.",
"repository": "Repozytorium",
"repositoryFieldCantBeEmpty": "Pole repozytorium nie może być puste",
"repositoryUrl": "URL repozytorium",
"repositoryUrlFieldCantBeEmpty": "Adres URL repozytorium nie może być pusty",
"repositoryUrlNote": "URL do Twojego repozytorium Git przechowującego pliki strony",
"requireCertificateForConnection": "Do połączenia wymagaj ważnego certyfikatu",
"requireFTPPassAlwaysOnSync": "Wymagaj hasła FTP przy każdej synchronizacji witryny",
"s3CompatibleStorage": "Pamięć kompatybilna z S3",
"s3PrefixNote": "Możesz umieścić swoją stronę internetową w podkatalogu. Unikaj ukośnika na początku (np. /blog/) - spowoduje to utworzenie dodatkowego katalogu z pustą nazwą. Przykład prawidłowego prefiksu: blog/.",
"s3ProviderEndpoint": "Endpoint dostawcy S3",
"s3ProviderEndpointNote": "Niestandardowy endpoint nie może być pusty, gdy opcja „Użyj niestandardowego dostawcy S3” jest ustawiona na \"tak\"",
"secretKey": "Tajny klucz",
"secretKeyFieldCantBeEmpty": "Pole klucza tajnego nie może być puste",
"selectServerType": "Wybierz rodzaj serwera:",
"serverFieldCantBeEmpty": "Pole serwera nie może być puste.",
"serverGitLabNote": "Zmień tę wartość tylko wtedy, gdy używasz własnej instancji GitLab.",
"serverSettingsSaveErrorMsg": "Publii nie może zapisać ustawień z powodu problemu z oprogramowaniem do bezpiecznego przechowywania haseł. Uruchom ponownie aplikację i spróbuj ponownie. Jeśli problem będzie się powtarzał, zgłoś go naszemu zespołowi za pośrednictwem forum.",
"serverSettingsSaveLinuxErrorMsg": "Publii nie może zapisać ustawień, ponieważ nie jest zainstalowane żadne oprogramowanie do bezpiecznego przechowywania haseł. Postępuj zgodnie z instrukcjami instalacji dla Node Keytar via https://github.com/atom/node-keytar/ i spróbuj ponownie. Najprawdopodobniej w Twoim systemie brakuje paczek libsecret-1-dev i gnome-keyring packages.",
"serverSettingsSaveSuccessMsg": "Ustawienia serwera zostały pomyślnie zapisane.",
"settings": "Ustawienia",
"sftp": "SFTP",
"sftpKeyNote": "Proszę wybrać plik klucza",
"sftpWithKey": "SFTP (z kluczem)",
"sftpWithPassword": "SFTP (z hasłem)",
"siteFieldCantBeEmpty": "Pole ID strony nie może być puste",
"siteID": "ID strony",
"siteIsInSync": "Strona zsynchronizowana",
"syncFTPNoPasswordMsg": "Bez hasła nie można zsynchronizować witryny. Proszę spróbować ponownie",
"syncInProgress": "Trwa synchronizacja",
"syncInProgressMessage": "Podczas procesu synchronizacji nie możesz zmienić nazwy strony.",
"syncYourWebsite": "Synchronizuj stronę",
"tarArchive": "Archiwum TAR",
"testConnection": "Testuj połączenie",
"testConnectionNoPasswordMsg": "Bez hasła nie można przetestować połączenia. Proszę spróbuj ponownie",
"token": "Token",
"tokenFieldCantBeEmpty": "Pole tokena nie może być puste",
"uploadingWebsite": "Przesyłanie strony internetowej",
"useCustomS3Provider": "Użyj niestandardowego dostawcy S3",
"useCustomS3ProviderNote": "Uwaga: AWS jest domyślnym dostawcą S3. Korzystając z alternatywnego dostawcy, musisz wypełnić pole „Endpoint dostawcy S3”.",
"useFtps": "Stosuj FTP z SSL/TLS",
"useRelativeURLs": "Użyj względnych URLi",
"username": "Nazwa użytkownika",
"usernameFieldCantBeEmpty": "Pole nazwy użytkownika nie może być puste.",
"usernameOrganization": "Nazwa użytkownika / organizacji",
"visitWebsite": "Odwiedź stronę",
"visitYourWebsite": "Odwiedź swoją stronę",
"websiteFilesPreparedInfo": "Twoja strona internetowa została przygotowana. Użyj poniższego przycisku \"Pobierz pliki strony\"
aby uzyskać pliki w celu ich ręcznego umieszczenia na serwerze.",
"websiteLinkInvalidMsg": "Przepraszamy! Link do witryny wydaje się być nieprawidłowy.",
"websiteSynchronization": "Synchronizacja strony internetowej",
"websiteSynchronizationInfo": "Wszelkie zduplikowane pliki lub nazwy plików już istniejące w lokalizacji docelowej
, które pasują do plików generowanych przez Publii, zostaną nadpisane.",
"websiteURL": "URL strony internetowej",
"youHaventSelectedAnyThemeInfo": "Nie wybrano żadnego motywu. Najpierw wybierz motyw w ustawieniach.",
"yourJSONKey": "Twój klucz JSON",
"yourJSONKeyFieldCantBeEmpty": "Pole klucza JSON nie może być puste",
"yourPrivateKey": "Twój klucz prywatny",
"yourWebsiteIsInSync": "Twoja witryna jest teraz zsynchronizowana",
"zipArchive": "Archiwum ZIP"
},
"tag": {
"addNewTag": "Dodaj nowy tag",
"addThisAsNewTag": "Dodaj jako nowy tag",
"createFirstTag": "Nie masz jeszcze żadnych tagów. Utwórzmy pierwszy!",
"editTag": "Edytuj tag",
"filterOrSearchTags": "Filtruj lub wyszukaj tagi...",
"hideTag": "Ukryj tag",
"leaveBlankToUseDefaultTagPageURL": "Pozostaw puste aby użyć domyślnego URL dla strony taga.",
"mainTag": "Główny tag",
"newTagHasBeenCreated": "Nowy tag został utworzony",
"noMainTagForPostMsg": "Jeśli wpis ma tagi, ale nie ustawiono głównego tagu, domyślnie zostanie użyty pierwszy tag w kolejności alfabetycznej.",
"noSupportFoFeaturedImagesForTags": "Twój motyw nie wspiera wyróżnionych obrazków dla tagów.",
"noTagsAvailable": "Brak dostępnych tagów",
"noTagsMatchingYourCriteria": "Brak tagów spełniających Twoje kryteria.",
"removeTagMessage": "Na pewno chcesz usunąć wybrane tagi?",
"removeTagSuccessMessage": "Wybrane tagi zostały usunięte",
"themeDoesNotSupportForTagPagesInTheme": "Opcja \"Zapis i Podgląd\" nie jest dostępna z powodu braku wsparcia dla stron tagów w Twoim motywie.",
"selectTag": "Wybierz tag",
"selectTagPage": "Wybierz stronę taga",
"tag": "Tag",
"tagDataParsingErrorMessage": "Wystąpił błąd podczas parsowania danych taga dla ID: ",
"tagHasBeenEdited": "Tag został przeedytowany",
"tagIsNotAllowed": "Ten tag nie jest dozwolony",
"tagLink": "Link do taga",
"tagName": "Nazwa taga:",
"tagNameCannotBeEmptyErrorMessage": "Nazwa taga nie może być pusta. Proszę podać inną nazwę.",
"tagNameInUseErrorMessage": "Podana nazwa taga jest już używana. Proszę podać inną nazwę.",
"tagNameNotAllowedErrorMessage": "Podana nazwa taga/slug nie jest dozwolona.",
"tagNameSimilarInUseErrorMessage": "Podobna nazwa taga (bez rozróżniania wielkości liter) jest już używana. Proszę podać inną nazwę.",
"tagPage": "Strona taga",
"tagsListLink": "Link do listy tagów",
"tagStatusChangeSuccessMessage": "Status wybranych tagów został zmieniony",
"tagWillNotAppearInGeneratedTagLists": "Tag nie pojawi się na żadnej z wygenerowanych list tagów takich jak strona wpisu lub taga.",
"thisTagIsHidden": "Ten tag jest ukryty",
"toUseThisOptionEnableIndexingTagPages": "Aby użyć tej opcji najpierw włącz, w ustawieniach SEO, indeksowanie stron tagów.",
"url": "URL"
},
"theme": {
"addThemeSuccessMessage": "Motyw został dodany.",
"authorOptions": "Opcje autorów",
"authorOptionsInfo": "Sekcja opcji autora pozwala na ustawienie globalnych opcji dla dodatkowych informacji zawartych w autorach. Zmiany wrpowadzone w tej sekcji będą miały wpływ na wszystkich autorów na Twojej stronie ale możesz również, jeśli tego potrzebujesz, nadpisać ustawienia aplikacji, dla każdego z autorów osobno, w widoku edycji autora.",
"authorsPostsPerPage": "Autorzy na stronie:",
"authorsPostsPerPageInfo": "Podaj wartość -1 jeśli chcesz wyświetlać wszystkich autorów na stronie.",
"changeAppTheme": "Zmień motyw aplikacji",
"customSettings": "Ustawienia własne",
"defaultPageTemplate": "Domyślny szablon podstrony",
"defaultPostTemplate": "Domyślny szablon wpisu",
"defaultTemplate": "Szablon domyślny",
"deleteTheme": "Usuń motyw",
"dropYourThemeHere": "Upuść tutaj swój motyw",
"excerptLength": "Długość zajawki:",
"getMoreThemes": "Pobierz więcej motywów",
"goToThemesManager": "Przejdż do menadżera motywów",
"installTheme": "Zainstaluj motyw",
"leaveBlankToUseDefault": "Pozostaw puste aby użyć wartości domyślnej",
"newVersionAvailable": "Dostępna jest nowa wersja",
"pageOptions": "Opcje stron",
"pageOptionsInfo": "Sekcja opcji stron pozwala na ustawienie globalnych opcji dla dodatkowych informacji zawartych w stronach. Zmiany wrpowadzone w tej sekcji będą miały wpływ na wszystkie strony na Twojej stronie ale możesz również, jeśli tego potrzebujesz, nadpisać ustawienia aplikacji, dla każdej ze stron osobno, w widoku edycji strony.",
"postOptions": "Opcje wpisów",
"postOptionsInfo": "Sekcja opcji wpisu pozwala na ustawienie globalnych opcji dla dodatkowych informacji zawartych we wpisach. Zmiany wrpowadzone w tej sekcji będą miały wpływ na wszystkie wpisy na Twojej stronie ale możesz również, jeśli tego potrzebujesz, nadpisać ustawienia aplikacji, dla każdego z wpisów osobno, w widoku edycji wpisu.",
"postsPerPage": "Wpisy na stronie:",
"postsPerPageInfo": "Podaj wartość -1 jeśli chcesz wyświetlać wszystkie wpisy na stronie.",
"removeThemeMessage": "Czy na pewno chcesz usunąć motyw {themeName}?",
"removeThemeSuccessMessage": "Motyw został usunięty.",
"resetThemeSettings": "Resetuj ustawienia motywu",
"saveSettingsSuccessMessage": "Ustawienia motywu zosały zapisane.",
"selectTheme": "Wybierz motyw",
"settingsResetMessage": "Na pewno chcesz zresetować ustawienia motywu?",
"settingsResetSuccessMessage": "Ustawienia motywu zostały zresetowane",
"tagOptions": "Opcje tagów",
"tagOptionsInfo": "Sekcja opcji tagu pozwala na ustawienie globalnych opcji dla dodatkowych informacji zawartych w tagach. Zmiany wrpowadzone w tej sekcji będą miały wpływ na wszystkie tagi na Twojej stronie ale możesz również, jeśli tego potrzebujesz, nadpisać ustawienia aplikacji, dla każdego z tagów osobno, w widoku edycji tagu.",
"tagsPostsPerPage": "Tagi na stronie:",
"tagsPostsPerPageInfo": "Podaj wartość -1 jeśli chcesz wyświetlać wszystkie tagi na stronie.",
"themes": "Motywy",
"themeSettings": "Ustawienia Motywu",
"translations": "Tłumaczenia",
"translationsInfo": "Jeśli chcesz przetłumaczyć frazy motywu na język inny niż angielski poczytaj najpierw o API Tłumaczeń w naszej dokumentacji.
",
"updateThemeSuccessMessage": "Motyw został zaktualizowany.",
"uploadThemeErrorMessage": "Przesłane pliki są niepoprawne. Proszę przesłać katalog motywu lub plik ZIP motywu.",
"websiteLogo": "Logo strony:"
},
"tools": {
"css": {
"customCSS": "Niestandardowy CSS",
"customCSSSaveSuccessMsg": "Niestandardowy kod CSS zpsatł zapisany.",
"normal": "Normalny",
"putCustomCSSComment": "Tutaj umieść swój niestandardowy kod CSS"
},
"customHTML": "Niestandardowy HTML",
"find": "Znajdź:",
"findAndReplace": "Znajdź i zastąp:",
"findAndReplaceShortcut": "Ctrl + Alt + F",
"findAndReplaceShortcutMac": "Cmd + Alt + F",
"findShortcut": "Ctrl + F",
"findShortcutMac": "Cmd + F",
"goToTools": "Idź do narzędzi",
"logFileEmpty": "Ten plik logów jest pusty...",
"logViewer": "Przeglądarka logów",
"pluginActivationError": "Nie udało się aktywować wtyczki - spróbuj ponownie",
"pluginDeactivationError": "Nie udało się deaktywować wtyczki - spróbuj ponownie",
"selectFileToLoad": "Wybierz plik do załadowania",
"thumbnails": {
"listRegeneratedFiles": "Lista zregenerowanych plików:",
"processingRegenerateThumbnailsInfo": "Naciśnięcie przycisku Regeneruj miniatury rozpocznie generowanie nowych rozmiarów obrazów zdefiniowanych przez Twój nowy motyw.",
"progress": "Postęp: ",
"regenerateThumbnails": "Regeneruj miniatury",
"regenerateThumbnailsInfo": "Jeśli zmieniłeś motyw lub masz problemy z responsywnymi obrazami, możesz je ponownie wygenerować za pomocą przycisku poniżej. Może to chwilę potrwać, jeśli Twoja witryna zawiera dużo obrazów, więc prosimy o cierpliwość.",
"regenerateThumbnailsNotNecessaryInfo": "Obecnie nie masz wybranego motywu dla tej witryny. Regeneracja miniatur nie jest konieczna.",
"regeneratingThumbnails": "Regenerowanie miniatur...",
"skipRegeneration": "Pomiń regenrację",
"themeOrThumbnailsSettingsChanged": "Twój motyw lub ustawienia miniatur zostały zmienione.",
"thumbnailsCreated": "Wszystkie miniatury zostały utworzone.",
"thumbnailsRegenerationCancelled": "Regeneracja miniatur została anulowana."
},
"wpImport": {
"addTagsToContentAutomatically": "Automatycznie dodaj tagi i
do treści wpisu",
"categories": "Kategorie",
"checkingWXRFile": "Sprawdzanie wybranego pliku WXR",
"contentFormatting": "Formatowanie treści:",
"duringWXRAnalyzeWeHaveFound": "Podczas anlizy WXR znaleźliśmy",
"importAuthors": "Importuj autorów",
"importData": "Importuj dane",
"importingData": "Importowanie danych",
"importNote": "Wpisy zostaną zaimportowane jako zgodne z edytorem WYSIWYG.",
"importSelectedTypesOfPosts": "Importuj wybrane rodzaje wpisów:",
"pages": "strony",
"postAuthors": "Autorzy wpisów",
"selectWXRFileLabel": "Proszę wybrać plik WXR:",
"selectWXRFilePlaceholder": "Wybierz plik WXR do zaimportowania",
"usedTaxonomyForPosts": "Taksonomia używana dla wpisów:",
"useMainAuthor": "Użyj głównego autora z Publii",
"wpImporter": "Importer WP",
"wpImportGoToRegenerateMsg": "Twoje dane WordPress zostały zaimportowane. Regeneracja miniatur może być konieczna, jeśli wcześniej wybrałeś motyw."
}
},
"toolsPlugin": {
"pluginSettingsLoadError": "Wystąpił błąd podczas wczytywania ustawień wtyczki",
"pluginSettingsSaveSuccess": "Ustawienia wtyczki zostały zapisane",
"pluginSettingsSaveError": "Wystąpił błąd podczas zapisu ustawień wtyczki",
"tabsLabel": "Ustawienia wtyczki",
"thisPluginHasNoOptions": "Ta wtyczka nie ma dodatkowych opcji..."
},
"ui": {
"aboutPublii": "O Publii",
"alternativeText": "Tekst alternatywny",
"appConfiguration": "Konfiguracja aplikacji",
"appIsUnableToGetNotifications": "Nie udało się pobrać powiadomień. Spróbuj ponownie później. Błąd: ",
"applyChanges": "Zatwierdź zmiany",
"authors": "Autorzy",
"backToTools": "Wróć do narzędzi",
"backToPages": "Strony",
"backToPosts": "Posty",
"basicInformation": "Informacje podstawowe",
"beautifyCode": "Upiększ kod",
"blogIndexLink": "Link do listy wpisów",
"cancel": "Anuluj",
"cancelWarningMsg": "Utracisz wszystkie niezapisane zmiany – czy chcesz kontynuować?",
"canonicalURL": "Kanoniczny URL",
"caption": "Podpis",
"checkDocumentation": "Sprawdź dokumentację Publii",
"close": "Zamknij",
"copyToClipboard": "Skopiuj do schowka",
"credits": "Uznania",
"customLink": "Link własny",
"customTemplate": "Własny szablon",
"delete": "Usuń",
"description": "Opis",
"donate": "Przekaż darowiznę",
"edit": "Edytuj",
"enablePrettyURLs": "Enable pretty URLs",
"featuredImage": "Obrazek wyróżniony",
"fillAllRequiredFields": "Proszę uzupełnić wszystkie wymagane pola",
"frontpageLink": "Link do strony startowej",
"gdprBreakingChangesConfirmMsg": "Wprowadziliśmy istotne zmiany w sekcji Ustawienia Prywatności (poprzednio GDPR). Zalecamy sprawdzenie ustawień i ponowne ich zapisanie.",
"githubRepository": "Repozytorium Github",
"goBack": "Wróć",
"goToPluginCustomOptions": "Ukryj dodatkowe opcje",
"goToPluginStandardOptions": "Pokaż dodatkowe opcje",
"goToSettings": "Idź do ustawień Prywatności",
"help": "Pomoc",
"hide": "Ukryj",
"hideThisNotification": "Schowaj to powiadominie",
"id": "ID",
"ifCanonicalUrlIsSetMetaRobotsTagIsIgnored": "Jeśłi kanoiczny URL jest ustawiony, tagi meta robotów są ignorowane.",
"indexFollow": "index, follow",
"indexNofollow": "index, nofollow",
"indexFollowNoArchive": "index, follow, noarchive",
"indexNofollowNoArchive": "index, nofollow, noarchive",
"iUnderstand": "OK, rozumiem",
"lastModified": "Ostatnia modyfikacja",
"learnMore": "Więcej informacji",
"leaveBlankToUseDefaultPageTitle": "Pozostaw puste aby zastosować domyślny tytuł strony",
"linkTarget": "Otwórz w ",
"loading": "Ładowanie...",
"menus": "Menu",
"metaDescription": "Meta opisy",
"metaRobotsIndex": "Index meta robotów",
"minimize": "Zminimalizuj",
"more": "Więcej",
"moreInformationOnPublii": "Więcej informacji o Publii",
"moreItems": "Więcej elementów",
"name": "Nazwa",
"newWindow": "Nowym oknie",
"noindexFollow": "noindex, follow",
"noindexNofollow": "noindex, nofollow",
"none": "None",
"notAvailableInYourTheme": "Niedostępne w Twoim motywie",
"notSet": "Nie ustawiono",
"of": "z",
"ok": "OK",
"otherOptions": "Inne opcje",
"pages": "Strony",
"pagesSupportNotEnabledMessage": "Twój obecny motyw nie obsługuje stron. Proszę wybierz motyw z wbudowaną obsługą stron lub zmodyfikuj obecnie używany. Szczegółowe informacje na temat implementacji obsługi stron w motywie znajdziesz po kliknięciu przycisku 'Więcej informacji'",
"pageTitle": "Tytuł Strony",
"pleaseFillAllRequiredFields": "Proszę wypełnić wszystkie wymagane pola",
"posts": "Wpisy",
"preview": "Podgląd",
"previewFrontPageOnly": "Podejrzyj tylko stronę główną",
"previewFullWebsite": "Podejrzyj całą stronę",
"publiiOnGithub": "Zobacz Publii na Github",
"publishAndClose": "Opublikuj i zamknij",
"publishPost": "Opublikuj wpis",
"reloadFile": "Wczytaj ponownie plik",
"renderFrontPageOnly": "Renderuj tylko stronę główną",
"renderFullWebsite": "Renderuj całą stronę",
"reportBugInSupportDesk": "Zgłoś błąd na forum",
"reportIssue": "Zgłoś problem",
"sameWindow": "Tym samym oknie",
"save": "Zapisz",
"saveAndClose": "Zapisz i zamknij",
"saveAndPreview": "Zapisz i podejrzyj",
"saveAndRender": "Zapisz i renderuj",
"saveAsDraft": "Zapisz jako szkic",
"saveChanges": "Zapisz zmiany",
"saveDraft": "Zapisz szkic",
"saveDraftAndClose": "Zapisz szkic i zamknij",
"search": "Szukaj...",
"selectOption": "Wybierz opcję",
"selectWebsite": "Wybierz witrynę",
"seo": "SEO",
"server": "Serwer",
"show": "Pokaż",
"slug": "Slug",
"supportPublii": "Wspieraj Publii i przekaż darowiznę już dzisiaj!",
"tags": "Tagi",
"theme": "Motywy",
"tools": "Narzędzia & Pluginy",
"unhide": "Odkryj",
"updateSlug": "Zaktualizuj slug",
"uploadInProgress": "Trwa przesyłanie...",
"whatsNew": "Co się zmieniło?"
}
}
================================================
FILE: app/default-files/default-languages/pl/wysiwyg.json
================================================
{
"Action": "Akcja",
"Activity": "Aktywność",
"Address": "Adres",
"Advanced": "Zaawansowane",
"Align": "Wyrównaj",
"Align center": "Wyrównaj do środka",
"Align left": "Wyrównaj do lewej",
"Align right": "Wyrównaj do prawej",
"Alignment": "Wyrównanie",
"All": "Wszystkie",
"Alternative source": "Alternatywne źródło",
"Alternative source URL": "Alternatywny URL źródła",
"Anchor": "Kotwica",
"Anchor...": "Kotwica",
"Anchors": "Kotwice",
"Animals and Nature": "Zwierzęta i natura",
"Arrows": "Strzałki",
"B": "B",
"Background color": "Kolor tła",
"Black": "Czarny",
"Block": "Zablokuj",
"Blockquote": "Blok cytatu",
"Blue": "Niebieski",
"Body": "Treść",
"Bold": "Pogrubienie",
"Border": "Ramka",
"Border color": "Kolor ramki",
"Border style": "Styl ramki",
"Border width": "Grubość ramki",
"Bottom": "Dół",
"Browse for an image": "Przeglądaj zdjęcia",
"Bullet list": "Lista wypunktowana",
"Cancel": "Anuluj",
"Capitalization": "Jak w zdaniu",
"Caption": "Tytuł",
"Cell": "Komórka",
"Cell padding": "Dopełnienie komórki",
"Cell properties": "Właściwości komórki",
"Cell spacing": "Odstępy komórek",
"Cell type": "Typ komórki",
"Center": "Środek",
"Characters": "Znaki",
"Characters (no spaces)": "Znaki (bez spacji)",
"Circle": "Kółko",
"Class": "Klasa CSS",
"Clear formatting": "Wyczyść formatowanie",
"Close": "Zamknij",
"Code": "Kod",
"Code sample": "Przykład kodu źródłowego",
"Color": "Kolor",
"Color Picker": "Selektor kolorów",
"Color swatch": "Próbka koloru",
"Cols": "Kol.",
"Column": "Kolumna",
"Column group": "Grupa kolumn",
"Constrain proportions": "Zachowaj proporcje",
"Copy": "Kopiuj",
"Copy row": "Kopiuj wiersz",
"Could not find the specified string.": "Nie znaleziono poszukiwanego tekstu.",
"Could not load emoticons": "Nie można załadować emoji",
"Count": "Liczba",
"Currency": "Waluta",
"Current window": "Bieżące okno",
"Custom color": "Kolor niestandardowy",
"Custom...": "Niestandardowy...",
"Cut": "Wytnij",
"Cut row": "Wytnij wiersz",
"Dark Blue": "Ciemnoniebieski",
"Dark Gray": "Ciemnoszary",
"Dark Green": "Ciemnozielony",
"Dark Orange": "Ciemnopomarańczowy",
"Dark Purple": "Ciemnopurpurowy",
"Dark Red": "Ciemnoczerwony",
"Dark Turquoise": "Ciemnoturkusowy",
"Dark Yellow": "Ciemnożółty",
"Date/time": "Data/Czas",
"Decrease indent": "Zmniejsz wcięcie",
"Default": "Domyślne",
"Delete column": "Usuń kolumnę",
"Delete row": "Usuń wiersz",
"Delete table": "Usuń tabelę",
"Dimensions": "Wymiary",
"Disc": "Dysk",
"Div": "Div",
"Document": "Dokument",
"Document properties": "Właściwości dokumentu",
"Drop an image here": "Upuść obraz tutaj",
"Edit": "Edycja",
"Edit image": "Edytuj obrazek",
"Embed": "Osadź",
"Emoticons": "Emoji",
"Emoticons...": "Emoji",
"Error": "Błąd",
"Extended Latin": "Rozszerzony łaciński",
"Failed to upload image: {0}": "Nie udało się przesłać obrazu: {0}",
"Find": "Znajdź",
"Find and replace": "Znajdź i zamień",
"Find and replace...": "Znajdź i zamień...",
"Find whole words only": "Znajdź tylko całe wyrazy",
"Finish": "Zakończ",
"Flags": "Flagi",
"Font": "Font",
"Font Sizes": "Rozmiar fontu",
"Fonts": "Fonty",
"Food and Drink": "Jedzenie i picie",
"Footer": "Stopka",
"Format": "Format",
"Format Painter": "Malarz formatów",
"Formats": "Formaty",
"Fullscreen": "Pełny ekran",
"G": "G",
"General": "Ogólne",
"Gray": "Szary",
"Green": "Zielony",
"H Align": "Wyrównanie w pionie",
"Header": "Nagłówek",
"Header 1": "Nagłówek H1",
"Header 2": "Nagłówek H2",
"Header 3": "Nagłówek H3",
"Header 4": "Nagłówek H4",
"Header 5": "Nagłówek H5",
"Header 6": "Nagłówek H6",
"Header cell": "Komórka nagłówka",
"Headers": "Nagłówki",
"Heading 1": "Nagłówek H1",
"Heading 2": "Nagłówek H2",
"Heading 3": "Nagłówek H3",
"Heading 4": "Nagłówek H4",
"Heading 5": "Nagłówek H5",
"Heading 6": "Nagłówek H6",
"Headings": "Nagłówki",
"Height": "Wysokość",
"Help": "Pomoc",
"Horizontal line": "Pozioma linia",
"Horizontal space": "Odstęp poziomy",
"Id": "Identyfikator",
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Identyfikator powinien zaczynać się zawsze literą, dozwolone są litery, numery, ukośniki, kropki, dwukropki i podłogi",
"Ignore": "Ignoruj",
"Ignore all": "Ignoruj wszystko",
"Image": "Obraz",
"Image description": "Opis obrazka",
"Image list": "Lista obrazków",
"Image options": "Opcje obrazu",
"Image title": "Tytuł obrazu",
"Image...": "Obraz",
"Increase indent": "Zwiększ wcięcie",
"Inline": "W tekście",
"Insert": "Wstaw",
"Insert column after": "Wstaw kolumnę po",
"Insert column before": "Wstaw kolumnę przed",
"Insert date/time": "Wstaw datę/czas",
"Insert image": "Wstaw obrazek",
"Insert link": "Wstaw link",
"Insert row after": "Wstaw wiersz po",
"Insert row before": "Wstaw wiersz przed",
"Insert table": "Wstaw tabelę",
"Insert video": "Wstaw wideo",
"Insert/Edit Link": "Wstaw/Edytuj link",
"Insert/edit iframe": "Wstaw/edytuj iframe",
"Insert/edit image": "Wstaw lub zmień obrazek",
"Insert/edit link": "Wstaw/edytuj link",
"Insert/edit media": "Wstaw/Edytuj media",
"Insert/edit video": "Wstaw/edytuj wideo",
"Italic": "Kursywa",
"Justify": "Wyjustuj",
"Keyboard Navigation": "Nawigacja za pomocą klawiatury",
"Language": "Język",
"Left": "Lewo",
"Left to right": "Od lewej do prawej",
"Light Blue": "Jasnoniebieski",
"Light Gray": "Jasnoszary",
"Light Green": "Jasnozielony",
"Light Purple": "Jasnopurpurowy",
"Light Red": "Jasnoczerwony",
"Light Yellow": "Jasnożółty",
"Link": "Adres linku",
"Link list": "Lista linków",
"Link...": "Link...",
"Loading emoticons...": "Ładowanie emoji...",
"Lower Alpha": "Małe litery",
"Lower Greek": "Małe greckie",
"Lower Roman": "Małe rzymskie",
"Match case": "Dopasuj wielkość liter",
"Mathematical": "Matematyczne",
"Media": "Media",
"Media poster (Image URL)": "Okładka (URL obrazu)",
"Media...": "Multimedia...",
"Medium Blue": "średnioniebieski",
"Medium Gray": "Średnioszary",
"Medium Purple": "średniopurpurowy",
"Merge cells": "Połącz komórki",
"Middle": "Środek",
"Midnight Blue": "Nocny błękit",
"More...": "Więcej...",
"Name": "Nazwa",
"Navy Blue": "Ciemnoniebieski",
"New window": "Nowe okno",
"Next": "Nast.",
"No": "Nie",
"No color": "Bez koloru",
"Nonbreaking space": "Niełamliwa spacja",
"None": "Brak",
"Numbered list": "Lista numerowana",
"OR": "LUB",
"Objects": "Obiekty",
"Ok": "Ok",
"Open help dialog": "Otwórz okno dialogowe pomocy",
"Open link in...": "Otwórz link w...",
"Orange": "Pomarańczowy",
"Page break": "Podział strony",
"Paragraph": "Akapit",
"Paste": "Wklej",
"Paste as text": "Wklej jako zwykły tekst",
"Paste or type a link": "Wklej lub wpisz adres linka",
"Paste row after": "Wklej wiersz po",
"Paste row before": "Wklej wiersz przed",
"Paste your embed code below:": "Wklej tutaj kod do osadzenia:",
"People": "Ludzie",
"Permanent Pen Properties": "Właściwości markera",
"Permanent pen properties...": "Właściwości markera...",
"Poster": "Okładka",
"Powered by {0}": "Powered by {0}",
"Pre": "Tekst preformatowany",
"Preferences": "Ustawienia",
"Preformatted": "Wstępne formatowanie",
"Prev": "Poprz.",
"Preview": "Podgląd",
"Previous": "Poprzedni",
"Print": "Drukuj",
"Print...": "Drukuj...",
"Purple": "Purpurowy",
"Quotations": "Cudzysłowy",
"R": "R",
"Red": "Czerwony",
"Redo": "Powtórz",
"Remove color": "Usuń kolor",
"Remove link": "Usuń link",
"Replace": "Zamień",
"Replace all": "Zamień wszystko",
"Replace with": "Zamień na",
"Restore last draft": "Przywróć ostatni szkic",
"Rich Text Area. Press ALT-0 for help.": "Obszar tekstu sformatowanego. Naciśnij ALT-0, aby uzyskać pomoc.",
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Obszar Edycji. ALT-F9 - menu. ALT-F10 - pasek narzędzi. ALT-0 - pomoc",
"Right": "Prawo",
"Right to left": "Od prawej do lewej",
"Row": "Wiersz",
"Row group": "Grupa wierszy",
"Row properties": "Właściwości wiersza",
"Row type": "Typ wiersza",
"Rows": "Wiersz.",
"Save": "Zapisz",
"Scope": "Kontekst",
"Search": "Wyszukaj",
"Select all": "Zaznacz wszystko",
"Select...": "Wybierz...",
"Selection": "Zaznaczenie",
"Shortcut": "Skrót",
"Show caption": "Pokaż podpis",
"Show invisible characters": "Pokaż niewidoczne znaki",
"Size": "Rozmiar",
"Source": "Kod HTML",
"Source code": "Kod źródłowy",
"Special character": "Znak specjalny",
"Special character...": "Znak specjalny",
"Spellcheck": "Sprawdzanie pisowni",
"Split cell": "Podziel komórki",
"Square": "Kwadrat",
"Strikethrough": "Przekreślenie",
"Style": "Styl",
"Subscript": "Indeks dolny",
"Superscript": "Indeks górrny",
"Switch to or from fullscreen mode": "Włącz lub wyłącz tryb pełnoekranowy",
"Symbols": "Symbole",
"System Font": "Font systemowy",
"Table": "Tabela",
"Table of Contents": "Spis treści",
"Table properties": "Właściwości tabeli",
"Target": "Cel",
"Text": "Tekst",
"Text color": "Kolor tekstu",
"Text to display": "Tekst do wyświetlenia",
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Wprowadzony adres wygląda na adres e-mail. Czy chcesz dodać mailto: jako prefiks?",
"The URL you entered seems to be an external link. Do you want to add the required http:// prefix?": "Wprowadzony adres wygląda na link zewnętrzny. Czy chcesz dodać http:// jako prefiks?",
"Title Case": "Jak Nazwy Własne",
"To open the popup, press Shift+Enter": "Aby otworzyć okienko, naciśnij Shift+Enter",
"Tools": "Narzędzia",
"Top": "Góra",
"Travel and Places": "Podróże i miejsca",
"Turquoise": "Turkusowy",
"UPPERCASE": "WIELKIE LITERY",
"Underline": "Podkreślenie",
"Undo": "Cofnij",
"Update": "Aktualizuj",
"Upload": "Prześlij",
"Upper Alpha": "Wielkie litery",
"Upper Roman": "Wielkie rzymskie",
"Url": "URL",
"User Defined": "Własny",
"V Align": "Wyrównanie w poziomie",
"Valid": "Prawidłowe",
"Version": "Wersja",
"Vertical space": "Odstęp pionowy",
"View": "Widok",
"Warn": "Ostrzeżenie",
"White": "Biały",
"Whole words": "Całe słowa",
"Width": "Szerokość",
"Word count": "Liczba słów",
"Words": "Słowa",
"Words: {0}": "Słów: {0}",
"Yellow": "Żółty",
"Yes": "Tak",
"You have unsaved changes are you sure you want to navigate away?": "Masz niezapisane zmiany. Czy na pewno chcesz opuścić ten widok?",
"alignment": "wyrównanie",
"comments": "komentarze",
"example": "przykład",
"formatting": "formatowanie",
"history": "historia",
"indentation": "wcięcie",
"lowercase": "małe litery",
"permanent pen": "marker",
"styles": "style",
"{0} characters": "{0} znaków",
"{0} words": "{0} słów"
}
================================================
FILE: app/default-files/default-themes/simple/404.hbs
================================================
{{> head}}
{{> navbar}}
{{> footer}}
================================================
FILE: app/default-files/default-themes/simple/CHANGELOG.md
================================================
# Changelog
## [3.2.1.0] - 2026-01-06
### Fixed
- Fixed an issue where the search popup would not open if the input element was missing
## [3.2.0.0] - 2025-11-04
### Added
- Added new variable fonts
### Improved
- Improved videos/iframe handling
## [3.1.4.0] - 2025-10-15
### Improved
- Adjust textarea gap and author date margin for improved layout
## [3.1.3.0] - 2025-04-26
### Added
- Added support for post prefix page. A dedicated posts.hbs template is now used when a post prefix path (e.g., /blog/) is defined, instead of falling back to the homepage index.hbs. This improves consistency and provides a clearer separation between homepage and post prefix listings.
## [3.1.2.0] - 2025-02-08
### Improved
- Enhanced post image styling (margins) and add blog index body class
### Removed
- Removed unnecessary onclick attribute from back to top button in footer
## [3.1.1.0] - 2025-01-21
### Improved
- Some UI improvements
### Fixed
- Resolved issue with horizontal scrollbar on Windows OS,
### Removed
- Removed unnecessary gallery CSS rule
## [3.1.0.0] - 2024-12-10
### Removed
- Removed built-in gallery to support external gallery plugins
## [3.0.0.0] - 2024-07-07
### Added
- Added support for italic fonts
- Redesigned the theme
## [2.9.0.0] - 2024-06-30
### Added
- Added support for Pages
- Added new typography options: now you can adjust letter spacing or line height for both body and heading elements.
- Added a new baseline option to defines a core vertical rhythm unit for consistent spacing across the website
### Improved
- Minor CSS enhancements
## [2.8.3.0] - 2023-11-03
### Fixed
- Resolved issue with missing the responsive thumbnails on the post page
## [2.8.2.0] - 2023-10-25
### Fixed
- Resolved checkIf function issue caused by parsing error in Handlebars, occurring when SocialSharing plugin was missing
### Updated
- Updated X Twitter icon
## [2.8.1.0] - 2023-10-21
### Fixed
- Fixed the CSS error related to the missing ‘gray-2’ CSS variable
## [2.8.0.0] - 2023-10-20
**Note:** The new features and enhancements require at least Publii version 0.43.1!
### Added
- Added a ‘customSocialSharing’ custom HTML position to support the Social Sharing plugin
## [2.7.0.0] - 2023-10-03
### Added
- Added more variable fonts
### Improved
- Made minor CSS improvements
## [2.6.2.0] - 2023-04-17
### Added
- Added option to disable tag counter on Tags page
### Improved
- Minor CSS enhancements
## [2.6.1.0] - 2023-04-03
### Changed
- Reorganized and renamed theme options to improve navigation and readability
## [2.6.0.0] - 2023-03-29
**Note:** The new features and enhancements require at least Publii version 0.42.x!
### Added
- Implemented support for new tag and author options
- Added support for new extended menu assignment options
- Removed AMP-related files
- Added the NoScript tag to handle images when JavaScript is disabled
### Improved
- Made minor CSS improvements
## [2.5.0.0] - 2022-07-07
**Note:** The new features and enhancements require at least Publii version 0.40.x!
### Added
- Added support for Search plugins
- Added a script to calculate the aspect ratio of the iframes automatically
- Added support for Emended Content Consent
- Updated menu script
- Updated supportedFeatures section
## [2.4.1.0] - 2022-03-20
### Adjusted
- Slight Dark mode CSS adjustment
## [2.4.0.0] - 2022-03-16
**Note:** The new features and enhancements require at least Publii version 0.39.x!
### Changed
- Changed how Google fonts are handled, from loading them from a CDN to hosting them locally
### Added
- Added Dark Mode (now it supports light, dark, and auto mode)
- Added support for Comment plugins
- Updated Facebook social icon
- Updated avatar code markup
- Changed the way the “Back to top” button works
## [2.3.3.0] - 2021-11-07
### Fixed
- Fixed Photoswipe script to open gallery image in the pop-up window directly by firing image URL
- Updated Disqus script (now uses an Intersection Observer to detect / load comment section)
- Updated menu script
### Improved
- Improved accessibility of the navigation menu
### Changed
- Changed the way CSS variables work in the theme (now uses theme-variables.js)
- Small CSS improvements
## [2.3.0.0] - 2020-09-25
**Note:** The new features and enhancements require Publii version 0.37.x!
### Added
- Added support for tags page
- Added support for tag featured image
- Added support for author featured image
- Added support for author website field
- Added supported features flags
- Added option to define the number of related posts
- Updated Disqus script
## [2.2.3.0] - 2020-06-16
### Updated
- Updated menu script to support the anchors in mobile view
### Fixed
- Fixed mobile menu styling
## [2.2.2.0] - 2020-06-04
### Added
- Added aria-label to the search input
### Fixed
- Fixed zoom/in/out gallery option
- Updated font.hbs file
- Fixed WhatsApp share button
## [2.2.1.0] - 2020-05-25
**Note:** Before installing, make sure you have installed Publii at least version 0.36.0! If you need to keep using Publii 0.35.3 you can always download the previous version of the theme from [here](https://cdn.getpublii.com/themes/simple_2.1.0.0.zip).
### Added
- Added support for „Enable Responsive Images” option
- Added support for native Lazy Loading
### Adjusted
- Typo adjustment
### Updated
- Updated Photoswipe gallery to 4.1.3 version
### Fixed
- Fixed gallery UI buttons behavior on hover
### Rewritten
- Rewritten to use CSS variables
## [2.1.0.0] - 2020-01-13
### Added
- Added Block editor support
## [2.0.4.0] - 2019-11-27
**Note:** Before installing, make sure you have installed Publii at least version 35.3
### Added
- Added support for better display of SVG images
## [2.0.3.0] - 2019-08-04
### Optimized
- Optimized image lazyload for the smoothest, fastest experience possible
### Fixed
- Fixed page scrolling when the mobile menu is opened (iOS only)
### Added
- Added WhatsApp share button
## [2.0.2.1] - 2019-05-25
### Fixed
- Fixed display of the image in the post content
## [2.0.2.0] - 2019-05-13
### Improved
- Improved the way the first menu level is displayed; now the menu items break down on the next line when it is needed
### Fixed
- Fixed the hero section by removing the space between the image and the right side of the browser window
## [2.0.1.0] - 2019-05-09
### Rewritten
- A minor redesign, with a rewritten code to make it more efficient
### Added
- An option for displaying a featured image on post list pages
- Overhauled menu system! New scripts, two mobile menu styles (Sidebar and overlay), and a reactive submenu that shifts position when it gets too close to the edge of the browser window
- Responsive iframes (for things like videos, maps etc…)
- No more jQuery; now Simple uses Vanilla scripts
- Expanded hero section controls
- New font selection options
- New ‘Back to Top’ option
- A new gallery style and optimized image lazyload for the smoothest, fastest experience possible
## [1.7.2.0] - 2019-03-28
### Added
- Added option to change the overlay of hero section; now it supports gradient or solid color
## [1.7.1.0] - 2019-03-25
### Removed
- If the menu is unassigned to any menu position, its HTML markup is no longer displayed
- Removed Google+ service due to its shutdown on April 2
## [1.7.0.0] - 2019-03-02
### Changed
- Gallery styling has been changed
### Centered
- Centered caption in a gallery lightbox
### Fixed
- Fixed pagination ordering
- Fixed Pinterest share button
## [1.6.1.0] - 2018-12-12
### Added
- Added support for a table of content
- Updated the lazysizes script to v. 1.4.5
- Added preload option to an image gallery
- jQuery JavaScript library is now served locally
## [1.6.0.0] - 2018-10-22
### Changed
- Changed the CSS style of the
tag
- Moved share icons to the bottom of article
- Updated StumbleUpon share button, now it’s Mix.com
### Fixed
- Fixed the image logo, now it looks well on the mobile devices too
### Removed
- Removed the lazyload from the hero image to speed up its loading
================================================
FILE: app/default-files/default-themes/simple/assets/css/editor.css
================================================
/*
* Add your own CSS code for the WYSIWYG editor
*/
================================================
FILE: app/default-files/default-themes/simple/assets/css/main.css
================================================
*,
*:before,
*:after {
-webkit-box-sizing: border-box;
box-sizing: border-box;
margin: 0;
padding: 0;
}
article,
aside,
footer,
header,
hgroup,
main,
nav,
section {
display: block;
}
li {
list-style: none;
}
img {
height: auto;
max-width: 100%;
vertical-align: top;
}
button,
input,
select,
textarea {
font: inherit;
}
address {
font-style: normal;
}
::-moz-selection {
background: var(--color);
color: var(--white);
}
::selection {
background: var(--color);
color: var(--white);
}
:focus-visible {
outline: 2px solid var(--color) !important;
outline-offset: 2px;
}
html {
font-size: var(--font-size);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
scroll-behavior: smooth;
scrollbar-gutter: stable;
}
html.no-scroll {
overflow: hidden;
position: fixed;
}
body {
background: var(--page-bg);
color: var(--text-color);
font-family: var(--body-font);
font-variation-settings: "wght" var(--font-weight-normal);
letter-spacing: var(--letter-spacing);
line-height: var(--line-height);
-ms-scroll-chaining: none;
overscroll-behavior: none;
}
a {
text-decoration: none;
}
a {
color: var(--link-color);
-webkit-transition: all 0.24s ease-out;
transition: all 0.24s ease-out;
}
a:hover {
color: var(--link-color-hover);
}
a:active {
color: var(--link-color-hover);
}
a:focus {
outline: none;
}
.invert {
color: var(--link-color-hover);
-webkit-transition: all 0.24s ease-out;
transition: all 0.24s ease-out;
}
.invert:hover {
color: var(--link-color);
}
.invert:active {
color: var(--link-color);
}
.invert:focus {
outline: none;
}
p,
ul,
ol,
dl {
margin-top: calc(var(--baseline) * 4 + 0.25vw);
}
blockquote,
figure,
hr,
pre,
table {
margin-top: calc(var(--baseline) * 6 + 0.5vw);
margin-bottom: calc(var(--baseline) * 6 + 0.5vw);
}
h1,
h2,
h3,
h4,
h5,
h6 {
color: var(--headings-color);
font-family: var(--heading-font);
font-variation-settings: "wght" var(--headings-weight);
font-style: var(--headings-style);
-ms-hyphens: manual;
hyphens: manual;
letter-spacing: var(--headings-letter-spacing);
line-height: var(--headings-line-height);
margin-top: calc(var(--baseline) * 6 + 1vw);
text-transform: var(--headings-transform);
}
h1,
.h1 {
font-size: clamp(1.5710900065rem, 1.5710900065rem + 1.424540906 * (100vw - 20rem) / 70, 2.9956309125rem);
font-family: var(--heading-font);
}
h2,
.h2 {
font-size: clamp(1.3808408252rem, 1.3808408252rem + 0.9332127447 * (100vw - 20rem) / 70, 2.3140535699rem);
}
h3,
.h3 {
font-size: clamp(1.2136296308rem, 1.2136296308rem + 0.4621997101 * (100vw - 20rem) / 70, 1.6758293408rem);
}
h4,
.h4 {
font-size: clamp(1.1377777785rem, 1.1377777785rem + 0.1567604947 * (100vw - 20rem) / 70, 1.2945382732rem);
}
h5,
.h5 {
font-size: clamp(1.066666667rem, 1.066666667rem + 0.0711111115 * (100vw - 20rem) / 70, 1.1377777785rem);
}
h6,
.h6 {
font-size: clamp(1rem, 1rem + 0 * (100vw - 20rem) / 70, 1rem);
}
h2 + *,
h3 + *,
h4 + *,
h5 + *,
h6 + * {
margin-top: calc(var(--baseline) * 2 + 0.25vw);
}
b,
strong {
font-variation-settings: "wght" var(--font-weight-bold);
}
blockquote {
border-top: 2px solid var(--dark);
border-bottom: 2px solid var(--dark);
color: var(--headings-color);
font-family: var(--heading-font);
font-style: italic;
font-variation-settings: "wght" var(--font-weight-bold);
padding: calc(var(--baseline) * 6 + 1vw) 2rem;
font-size: clamp(1.1377777785rem, 1.1377777785rem + 0.1567604947 * (100vw - 20rem) / 70, 1.2945382732rem);
}
blockquote > :nth-child(1) {
margin-top: 0;
}
ul,
ol {
margin-left: 3ch;
}
ul > li,
ol > li {
list-style: inherit;
padding: 0 0 var(--baseline) 1ch;
}
dl dt {
font-variation-settings: "wght" var(--font-weight-bold);
}
pre {
background-color: var(--lighter);
font-size: 0.8239746086rem;
padding: calc(var(--baseline) * 6);
white-space: pre-wrap;
word-wrap: break-word;
}
pre > code {
color: var(--text-color);
display: inline-block;
font-size: inherit;
padding: 0;
}
code {
background-color: var(--lighter);
color: var(--color);
font-size: 0.8239746086rem;
font-family: Menlo, Monaco, Consolas, Courier New, monospace;
}
table {
border: 1px solid var(--light);
border-collapse: collapse;
border-spacing: 0;
vertical-align: top;
text-align: left;
width: 100%;
}
@media all and (max-width: 37.4375em) {
table {
display: block;
overflow-x: auto;
}
}
table th {
font-variation-settings: "wght" var(--font-weight-bold);
padding: calc(var(--baseline) * 2.5) calc(var(--baseline) * 4);
}
table td {
border-top: 1px solid var(--light);
padding: calc(var(--baseline) * 2.5) calc(var(--baseline) * 4);
}
.table-striped tr:nth-child(2n) {
background: var(--lighter);
}
.table-bordered th,
.table-bordered td {
border: 1px solid var(--light);
}
.table-title th {
background: var(--lighter);
}
figcaption {
clear: both;
color: var(--gray);
font-style: italic;
font-size: 0.7241964329rem;
padding: calc(var(--baseline) * 3) 0 0;
text-align: center;
}
kbd {
background: var(--dark);
border-radius: 2px;
color: var(--white);
font-family: Menlo, Monaco, Consolas, Courier New, monospace;
font-size: 0.8789062495rem;
padding: calc(var(--baseline) * 0.5) calc(var(--baseline) * 1.5);
}
sub,
sup {
font-size: 65%;
}
small {
font-size: 0.8789062495rem;
}
hr,
.separator {
background: none;
border: none;
height: auto;
line-height: 1;
max-width: none;
text-align: center;
}
hr::before,
.separator::before {
content: "•••";
color: var(--dark);
font-size: 1rem;
font-variation-settings: "wght" var(--font-weight-bold);
letter-spacing: 1.1377777785rem;
padding-left: 1.1377777785rem;
}
.separator--dot::before {
content: "•";
color: var(--dark);
font-size: 1rem;
font-variation-settings: "wght" var(--font-weight-bold);
letter-spacing: 1.1377777785rem;
padding-left: 1.1377777785rem;
}
.separator--long-line {
position: relative;
}
.separator--long-line::before {
content: "";
height: 1rem;
}
.separator--long-line::after {
border-top: 1px solid var(--light);
content: "";
height: 1px;
position: absolute;
width: 100%;
top: 50%;
left: 0;
}
.btn, [type=button],
[type=submit],
button {
align-items: center;
background: none;
border: 1px solid var(--dark);
border-radius: calc(var(--border-radius) * 10);
color: var(--dark);
cursor: pointer;
display: inline-flex;
font-family: var(--menu-font);
font-size: 0.8239746086rem;
font-variation-settings: "wght" var(--font-weight-bold);
overflow: hidden;
padding: calc(var(--baseline) * 2) calc(var(--baseline) * 4);
text-align: center;
-webkit-transition: all 0.24s ease-out;
transition: all 0.24s ease-out;
vertical-align: middle;
will-change: transform;
}
@media all and (max-width: 19.9375em) {
.btn, [type=button],
[type=submit],
button {
width: 100%;
}
}
.btn:hover, [type=button]:hover,
[type=submit]:hover,
button:hover, .btn:active, [type=button]:active,
[type=submit]:active,
button:active, .btn:focus, [type=button]:focus,
[type=submit]:focus,
button:focus {
background-color: var(--dark);
color: var(--helper);
}
.btn--icon {
gap: 0.3rem;
justify-content: center;
}
.btn--icon svg {
stroke: currentColor;
}
@media all and (min-width: 20em) {
.btn + .btn, [type=button] + .btn,
[type=submit] + .btn,
button + .btn, .btn + [type=button], [type=button] + [type=button],
[type=submit] + [type=button],
button + [type=button],
.btn + [type=submit],
[type=button] + [type=submit],
[type=submit] + [type=submit],
button + [type=submit],
.btn + button,
[type=button] + button,
[type=submit] + button,
button + button {
margin-left: calc(var(--baseline) * 2);
}
}
@media all and (max-width: 37.4375em) {
.btn + .btn, [type=button] + .btn,
[type=submit] + .btn,
button + .btn, .btn + [type=button], [type=button] + [type=button],
[type=submit] + [type=button],
button + [type=button],
.btn + [type=submit],
[type=button] + [type=submit],
[type=submit] + [type=submit],
button + [type=submit],
.btn + button,
[type=button] + button,
[type=submit] + button,
button + button {
margin-bottom: calc(var(--baseline) * 2);
}
}
.btn:disabled, [type=button]:disabled,
[type=submit]:disabled,
button:disabled, .btn[disabled], [disabled][type=button],
[disabled][type=submit],
button[disabled] {
background-color: var(--light);
border-color: var(--light);
color: var(--gray);
cursor: not-allowed;
pointer-events: none;
}
[type=button],
[type=submit],
button {
-webkit-appearance: none;
-moz-appearance: none;
}
::-webkit-search-cancel-button {
-webkit-appearance: none;
}
fieldset {
border: 1px solid var(--light);
margin: calc(var(--baseline) * 6 + 1vw) 0 0;
padding: calc(var(--baseline) * 6);
}
fieldset > legend {
margin-left: -1rem;
padding: 0 1rem;
}
legend {
font-variation-settings: "wght" 500;
padding: 0;
}
label {
font-variation-settings: "wght" 500;
margin: 0 calc(var(--baseline) * 4) calc(var(--baseline) * 3) 0;
}
[type=text],
[type=url],
[type=tel],
[type=number],
[type=email],
[type=search],
textarea,
select {
background-color: var(--page-bg);
border: none;
border: 1px solid var(--light);
color: var(--text-color);
font-size: 1rem;
outline: none;
padding: calc(var(--baseline) * 1.2) calc(var(--baseline) * 3);
vertical-align: middle;
width: 100%;
-webkit-appearance: none;
-moz-appearance: none;
}
@media all and (min-width: 37.5em) {
[type=text],
[type=url],
[type=tel],
[type=number],
[type=email],
[type=search],
textarea,
select {
width: auto;
}
}
[type=text]:focus,
[type=url]:focus,
[type=tel]:focus,
[type=number]:focus,
[type=email]:focus,
[type=search]:focus,
textarea:focus,
select:focus {
border-color: var(--dark);
}
input[type=checkbox],
input[type=radio] {
opacity: 0;
position: absolute;
}
input[type=checkbox] + label,
input[type=radio] + label {
position: relative;
margin-left: -1px;
cursor: pointer;
padding: 0;
}
input[type=checkbox] + label:before,
input[type=radio] + label:before {
background-color: var(--white);
border: 1px solid var(--light);
border-radius: 2px;
content: "";
display: inline-block;
height: calc(var(--baseline) * 5);
line-height: calc(var(--baseline) * 5);
margin-right: calc(var(--baseline) * 4);
vertical-align: middle;
text-align: center;
width: calc(var(--baseline) * 5);
}
input[type=checkbox]:checked + label:before,
input[type=radio]:checked + label:before {
content: "";
background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 8'%3e%3cpolygon points='9.53 0 4.4 5.09 1.47 2.18 0 3.64 2.93 6.54 4.4 8 5.87 6.54 11 1.46 9.53 0' fill='%23d73a42'/%3e%3c/svg%3e");
background-repeat: no-repeat;
background-size: 11px 8px;
background-position: 50% 50%;
}
input[type=radio] + label:before {
border-radius: 50%;
}
input[type=radio]:checked + label:before {
background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3ccircle cx='4' cy='4' r='4' fill='%23d73a42'/%3e%3c/svg%3e");
}
[type=file] {
margin-bottom: calc(var(--baseline) * 6);
width: 100%;
}
select {
max-width: 100%;
width: auto;
position: relative;
}
select:not([multiple]) {
background: url('data:image/svg+xml;utf8,') no-repeat 90% 50%;
background-size: 8px;
padding-right: calc(var(--baseline) * 12);
}
select[multiple] {
border: 1px solid var(--light);
padding: calc(var(--baseline) * 6);
width: 100%;
}
select[multiple]:hover {
border-color: var(--light);
}
select[multiple]:focus {
border-color: var(--dark);
}
select[multiple]:disabled {
background-color: var(--light);
cursor: not-allowed;
}
select[multiple]:disabled:hover {
border-color: var(--light);
}
textarea {
display: block;
overflow: auto;
resize: vertical;
max-width: 100%;
}
.top {
align-items: center;
display: flex;
height: var(--navbar-height);
position: relative;
padding: 0 var(--page-margin);
-webkit-transition: background 0.5s ease;
transition: background 0.5s ease;
width: 100%;
z-index: 2;
}
@media all and (min-width: 56.25em) {
.top {
justify-content: space-between;
height: var(--navbar-height);
}
}
.top.sticky {
background: var(--page-bg);
position: sticky;
top: -100px;
-webkit-animation: slideDown 0.5s cubic-bezier(0.17, 0.67, 0, 1) forwards;
animation: slideDown 0.5s cubic-bezier(0.17, 0.67, 0, 1) forwards;
}
@-webkit-keyframes slideDown {
from {
opacity: 0;
top: -100px;
}
to {
opacity: 1;
top: 0;
}
}
@keyframes slideDown {
from {
opacity: 0;
top: -100px;
}
to {
opacity: 1;
top: 0;
}
}
.logo {
color: var(--logo-color) !important;
font-size: 1.2136296308rem;
font-family: var(--logo-font);
font-variation-settings: "wght" var(--font-weight-bold);
margin-right: auto;
order: 1;
}
.logo > img {
height: var(--navbar-height);
-o-object-fit: contain;
object-fit: contain;
padding: calc(var(--baseline) * 2) 0;
width: auto;
}
.search {
order: 2;
}
@media all and (min-width: 56.25em) {
.search {
order: 3;
}
}
.search__btn {
border-color: var(--light);
margin: 0;
height: 2.2rem;
padding: 0;
width: 2.2rem;
}
@media all and (min-width: 56.25em) {
.search__btn {
margin-left: 2rem;
}
}
.search__btn:hover, .search__btn:focus {
border-color: var(--dark);
}
.search__form {
display: flex;
justify-content: space-between;
width: 100%;
}
.search__form button {
width: auto;
flex-shrink: 0;
}
.search__input {
background: none;
border: none;
border-bottom: 1px solid var(--dark);
display: block;
font-family: var(--heading-font);
padding: 0;
width: 90%;
}
.search__input:focus-visible {
outline: none !important;
}
.search__overlay {
background-color: var(--page-bg);
-webkit-box-shadow: 0 3px 30px rgba(0, 0, 0, 0.05);
box-shadow: 0 3px 30px rgba(0, 0, 0, 0.05);
left: 0;
opacity: 0;
position: fixed;
-webkit-transition: all 0.24s ease-out;
transition: all 0.24s ease-out;
top: 0;
visibility: hidden;
width: 100%;
z-index: 2005;
}
.search__overlay-inner {
-webkit-animation: slideininput 0.24s 1s forwards;
animation: slideininput 0.24s 1s forwards;
align-items: center;
display: flex;
height: calc(var(--navbar-height) * 3);
justify-content: space-between;
padding: 0 var(--page-margin);
opacity: 0;
scale: 0.9;
}
@-webkit-keyframes slideininput {
60% {
opacity: 0;
scale: 0.9;
}
100% {
opacity: 1;
scale: 1;
}
}
@keyframes slideininput {
60% {
opacity: 0;
scale: 0.9;
}
100% {
opacity: 1;
scale: 1;
}
}
.search__overlay.expanded {
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
opacity: 1;
display: block;
visibility: visible;
}
.navbar {
order: 3;
}
.navbar .navbar__menu {
display: flex;
flex-wrap: wrap;
list-style: none;
margin: 0;
padding: 0;
}
@media all and (max-width: 56.1875em) {
.navbar .navbar__menu {
display: none;
}
}
.navbar .navbar__menu li {
font-family: var(--menu-font);
display: block;
font-size: 0.8789062495rem;
line-height: var(--line-height);
font-variation-settings: "wght" 500;
padding: 0;
position: relative;
width: auto;
}
.navbar .navbar__menu li a,
.navbar .navbar__menu li span[aria-haspopup=true] {
color: var(--nav-link-color);
display: block;
padding: 0 0.6rem;
-webkit-transition: all 0.24s ease-out;
transition: all 0.24s ease-out;
}
.navbar .navbar__menu li a:active, .navbar .navbar__menu li a:focus, .navbar .navbar__menu li a:hover,
.navbar .navbar__menu li span[aria-haspopup=true]:active,
.navbar .navbar__menu li span[aria-haspopup=true]:focus,
.navbar .navbar__menu li span[aria-haspopup=true]:hover {
color: var(--nav-link-color-hover);
}
.navbar .navbar__menu li span {
color: var(--nav-link-color);
cursor: default;
display: block;
padding: 0 0.6rem;
}
.navbar .navbar__menu > li:hover > a, .navbar .navbar__menu > li:hover > span[aria-haspopup=true] {
color: var(--nav-link-color-hover);
}
.navbar .has-submenu:active > .navbar__submenu,
.navbar .has-submenu:focus > .navbar__submenu,
.navbar .has-submenu:hover > .navbar__submenu {
left: 0;
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
visibility: visible;
margin-top: 0.8rem;
}
.navbar .has-submenu:active > .navbar__submenu:before,
.navbar .has-submenu:focus > .navbar__submenu:before,
.navbar .has-submenu:hover > .navbar__submenu:before {
content: "";
height: 1rem;
left: 0;
position: absolute;
width: 100%;
top: -1rem;
}
.navbar .has-submenu:active > .navbar__submenu.is-right-submenu,
.navbar .has-submenu:focus > .navbar__submenu.is-right-submenu,
.navbar .has-submenu:hover > .navbar__submenu.is-right-submenu {
left: auto;
right: 0;
-webkit-transform-origin: right top;
transform-origin: right top;
}
.navbar .has-submenu .has-submenu:active > .navbar__submenu,
.navbar .has-submenu .has-submenu:focus > .navbar__submenu,
.navbar .has-submenu .has-submenu:hover > .navbar__submenu {
top: 0;
margin-top: 0;
}
.navbar .has-submenu .has-submenu:active > .navbar__submenu.is-right-submenu,
.navbar .has-submenu .has-submenu:focus > .navbar__submenu.is-right-submenu,
.navbar .has-submenu .has-submenu:hover > .navbar__submenu.is-right-submenu {
top: 0;
margin-top: 0;
}
.navbar .navbar__submenu {
background: var(--lighter);
border-radius: calc(var(--border-radius) * 4);
left: -9999px;
list-style-type: none;
margin: 0;
padding: 1rem 0.85rem;
position: absolute;
visibility: hidden;
white-space: nowrap;
z-index: 1;
opacity: 0;
-webkit-transform: scale(0.8);
transform: scale(0.8);
-webkit-transform-origin: 0 top;
transform-origin: 0 top;
-webkit-transition: opacity 0.15s, -webkit-transform 0.3s cubic-bezier(0.275, 1.375, 0.8, 1);
transition: opacity 0.15s, -webkit-transform 0.3s cubic-bezier(0.275, 1.375, 0.8, 1);
transition: opacity 0.15s, transform 0.3s cubic-bezier(0.275, 1.375, 0.8, 1);
transition: opacity 0.15s, transform 0.3s cubic-bezier(0.275, 1.375, 0.8, 1), -webkit-transform 0.3s cubic-bezier(0.275, 1.375, 0.8, 1);
}
.navbar .navbar__submenu__submenu {
z-index: 2;
}
.navbar .navbar__submenu li {
line-height: 1.5;
font-size: 0.8789062495rem;
}
.navbar .navbar__submenu li a,
.navbar .navbar__submenu li span[aria-haspopup=true] {
border-radius: calc(var(--border-radius) * 3);
color: var(--nav-link-color-hover);
padding: 0.5rem 1rem;
-webkit-transition: all 0.24s ease;
transition: all 0.24s ease;
}
.navbar .navbar__submenu li a:active, .navbar .navbar__submenu li a:focus, .navbar .navbar__submenu li a:hover,
.navbar .navbar__submenu li span[aria-haspopup=true]:active,
.navbar .navbar__submenu li span[aria-haspopup=true]:focus,
.navbar .navbar__submenu li span[aria-haspopup=true]:hover {
background: var(--page-bg);
color: var(--nav-link-color);
}
.navbar .navbar__submenu li span {
color: var(--nav-link-color-hover) !important;
padding: 0.5rem 1rem;
}
.navbar .navbar__submenu li:hover > a, .navbar .navbar__submenu li:hover > span[aria-haspopup=true] {
color: var(--nav-link-color);
}
.navbar .navbar__toggle {
background: var(--black);
-webkit-box-shadow: none;
box-shadow: none;
border: none;
cursor: pointer;
display: block;
line-height: 1;
margin: 0;
overflow: visible;
padding: 0;
position: relative;
right: 0;
margin-left: 0.75rem;
text-transform: none;
z-index: 2004;
height: 3.2rem;
padding: 0;
width: 3.2rem;
}
@media all and (min-width: 56.25em) {
.navbar .navbar__toggle {
display: none;
}
}
.navbar .navbar__toggle:hover, .navbar .navbar__toggle:focus {
-webkit-box-shadow: none;
box-shadow: none;
outline: none;
-webkit-transform: none;
transform: none;
}
.navbar .navbar__toggle-box {
width: 20px;
height: 14px;
display: inline-block;
position: relative;
}
.navbar .navbar__toggle-inner {
display: block;
top: 50%;
text-indent: -9999999em;
}
.navbar .navbar__toggle-inner::before {
content: "";
display: block;
top: -5px;
}
.navbar .navbar__toggle-inner::after {
content: "";
display: block;
bottom: -5px;
}
.navbar .navbar__toggle-inner, .navbar .navbar__toggle-inner::before, .navbar .navbar__toggle-inner::after {
width: 20px;
height: 1px;
background-color: var(--white);
position: absolute;
-webkit-transition: opacity 0.14s ease-out, -webkit-transform;
transition: opacity 0.14s ease-out, -webkit-transform;
transition: transform, opacity 0.14s ease-out;
transition: transform, opacity 0.14s ease-out, -webkit-transform;
}
.navbar .navbar__toggle-inner {
-webkit-transition-duration: 0.075s;
transition-duration: 0.075s;
-webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.navbar .navbar__toggle-inner::before {
-webkit-transition: top 0.075s ease 0.12s, opacity 0.075s ease;
transition: top 0.075s ease 0.12s, opacity 0.075s ease;
}
.navbar .navbar__toggle-inner::after {
-webkit-transition: bottom 0.075s ease 0.12s, -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
transition: bottom 0.075s ease 0.12s, -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
transition: bottom 0.075s ease 0.12s, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
transition: bottom 0.075s ease 0.12s, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.navbar .navbar__toggle.is-active .navbar__toggle-inner {
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
-webkit-transition-delay: 0.12s;
transition-delay: 0.12s;
-webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.navbar .navbar__toggle.is-active .navbar__toggle-inner::before {
top: 0;
opacity: 0;
-webkit-transition: top 0.075s ease, opacity 0.075s ease 0.12s;
transition: top 0.075s ease, opacity 0.075s ease 0.12s;
}
.navbar .navbar__toggle.is-active .navbar__toggle-inner::after {
bottom: 0;
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg);
-webkit-transition: bottom 0.075s ease, -webkit-transform 0.075s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
transition: bottom 0.075s ease, -webkit-transform 0.075s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
transition: bottom 0.075s ease, transform 0.075s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
transition: bottom 0.075s ease, transform 0.075s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s, -webkit-transform 0.075s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
}
.navbar_mobile_overlay {
background: var(--page-bg);
height: calc(100vh - 4.4rem);
left: 0;
opacity: 1;
overflow: auto;
pointer-events: auto;
position: fixed;
top: 4.4rem;
-webkit-transition: all 0.3s cubic-bezier(0, 0, 0.3, 1);
transition: all 0.3s cubic-bezier(0, 0, 0.3, 1);
width: 100%;
z-index: 1001;
}
.navbar_mobile_overlay.is-hidden {
opacity: 0;
pointer-events: none;
}
.navbar_mobile_overlay .navbar__menu {
margin: 24px;
}
.navbar_mobile_overlay .navbar__menu li {
list-style: none;
margin: 0;
padding: 0;
text-align: center;
}
.navbar_mobile_overlay .navbar__menu li a,
.navbar_mobile_overlay .navbar__menu li span {
color: var(--dark);
display: block;
padding: calc(var(--baseline) * 2);
position: relative;
}
.navbar_mobile_overlay .navbar__menu li a:active, .navbar_mobile_overlay .navbar__menu li a:focus, .navbar_mobile_overlay .navbar__menu li a:hover,
.navbar_mobile_overlay .navbar__menu li span:active,
.navbar_mobile_overlay .navbar__menu li span:focus,
.navbar_mobile_overlay .navbar__menu li span:hover {
color: var(--dark);
}
.navbar_mobile_overlay .navbar__menu li a[aria-haspopup=true]::after,
.navbar_mobile_overlay .navbar__menu li span[aria-haspopup=true]::after {
content: "";
width: 0;
height: 0;
border-style: solid;
border-width: 5px 5px 0 5px;
border-color: currentColor transparent transparent transparent;
left: calc(var(--baseline) * 2);
top: 15px;
position: relative;
}
.navbar_mobile_overlay .navbar__submenu {
margin: 0;
padding: 0;
visibility: hidden;
}
.navbar_mobile_overlay .navbar__submenu[aria-hidden=false] {
visibility: visible;
}
.navbar_mobile_overlay .navbar__submenu_wrapper {
height: 0;
opacity: 0;
overflow: hidden;
-webkit-transition: all 0.3s cubic-bezier(0.275, 1.375, 0.8, 1);
transition: all 0.3s cubic-bezier(0.275, 1.375, 0.8, 1);
}
.navbar_mobile_overlay .navbar__submenu_wrapper.is-active {
height: auto;
opacity: 1;
}
.navbar_mobile_sidebar {
background: var(--page-bg);
-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
height: 100vh;
left: 0;
max-width: 400px;
overflow: auto;
position: fixed;
top: 0;
-webkit-transition: all 0.3s cubic-bezier(0, 0, 0.3, 1);
transition: all 0.3s cubic-bezier(0, 0, 0.3, 1);
width: 80%;
z-index: 1001;
}
.navbar_mobile_sidebar.is-hidden {
left: -400px;
}
.navbar_mobile_sidebar .navbar__menu {
margin: 24px;
}
.navbar_mobile_sidebar .navbar__menu li {
font-family: var(--menu-font);
font-size: 16px;
list-style: none;
line-height: 1.3;
margin: 0;
padding: 0;
}
.navbar_mobile_sidebar .navbar__menu li a,
.navbar_mobile_sidebar .navbar__menu li .is-separator {
color: var(--dark);
display: block;
padding: 10px 20px 10px 0;
position: relative;
}
.navbar_mobile_sidebar .navbar__menu li a:active, .navbar_mobile_sidebar .navbar__menu li a:focus, .navbar_mobile_sidebar .navbar__menu li a:hover,
.navbar_mobile_sidebar .navbar__menu li .is-separator:active,
.navbar_mobile_sidebar .navbar__menu li .is-separator:focus,
.navbar_mobile_sidebar .navbar__menu li .is-separator:hover {
color: var(--dark);
}
.navbar_mobile_sidebar .navbar__menu li a[aria-haspopup=true]::after,
.navbar_mobile_sidebar .navbar__menu li .is-separator[aria-haspopup=true]::after {
content: "";
width: 0;
height: 0;
border-style: solid;
border-width: 5px 5px 0 5px;
border-color: currentColor transparent transparent transparent;
right: 0;
top: 18px;
position: absolute;
}
.navbar_mobile_sidebar .navbar__submenu {
margin: 0 0 0 24px;
padding: 0;
visibility: hidden;
}
.navbar_mobile_sidebar .navbar__submenu[aria-hidden=false] {
visibility: visible;
}
.navbar_mobile_sidebar .navbar__submenu_wrapper {
height: 0;
opacity: 0;
overflow: hidden;
-webkit-transition: all 0.3s cubic-bezier(0.275, 1.375, 0.8, 1);
transition: all 0.3s cubic-bezier(0.275, 1.375, 0.8, 1);
}
.navbar_mobile_sidebar .navbar__submenu_wrapper.is-active {
height: auto;
opacity: 1;
}
.navbar_mobile_sidebar__overlay {
background: rgba(0, 0, 0, 0.5);
height: 100%;
opacity: 1;
pointer-events: auto;
position: fixed;
top: 0;
-webkit-transition: all 0.3s cubic-bezier(0, 0, 0.3, 1);
transition: all 0.3s cubic-bezier(0, 0, 0.3, 1);
width: 100%;
z-index: 10;
}
.navbar_mobile_sidebar__overlay.is-hidden {
opacity: 0;
pointer-events: none;
}
.wrapper {
-webkit-box-sizing: content-box;
box-sizing: content-box;
max-width: var(--page-width);
margin-left: auto;
margin-right: auto;
padding-left: var(--page-margin);
padding-right: var(--page-margin);
}
.entry-wrapper {
-webkit-box-sizing: content-box;
box-sizing: content-box;
max-width: var(--entry-width);
margin-left: auto;
margin-right: auto;
padding-left: var(--page-margin);
padding-right: var(--page-margin);
}
.hero {
position: relative;
z-index: 1;
}
.hero--noimage::after {
background: var(--dark);
content: "";
display: block;
height: 1px;
bottom: 0;
width: calc(100% - var(--page-margin) * 2);
z-index: -1;
max-width: var(--page-width);
position: absolute;
left: 50%;
-webkit-transform: translate(-50%, 0);
transform: translate(-50%, 0);
}
.hero__content {
padding-bottom: calc(var(--baseline) * 6 + 1.5vw);
}
.hero__content h1 > sup {
font-size: 1.066666667rem;
vertical-align: top;
}
.hero__content--centered {
text-align: center;
}
.hero__content--centered .content__meta {
justify-content: center;
}
.hero__cta {
margin-top: calc(var(--baseline) * 6);
}
.hero__image {
margin: 0 var(--page-margin);
}
.hero__image-wrapper {
position: relative;
background: var(--lighter);
border-radius: calc(var(--border-radius) * 4);
}
@media all and (min-width: 56.25em) {
.hero__image-wrapper {
height: var(--hero-height);
}
}
.hero__image-wrapper img {
border-radius: inherit;
display: block;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
width: 100%;
}
@media all and (min-width: 56.25em) {
.hero__image-wrapper img {
height: var(--hero-height);
}
}
.hero__image > figcaption {
background: var(--page-bg);
}
@media all and (min-width: 56.25em) {
.hero__image > figcaption {
text-align: right;
}
}
.feed__item {
display: flex;
flex-wrap: wrap;
gap: calc(2rem + 2vw);
margin-top: calc(var(--baseline) * 12 + 2vw);
}
@media all and (min-width: 37.5em) {
.feed__item {
flex-wrap: nowrap;
}
}
.feed__item--centered {
justify-content: center;
}
.feed__content {
max-width: var(--entry-width);
}
.feed__image {
background: var(--lighter);
border-radius: calc(var(--border-radius) * 4);
flex-shrink: 0;
height: 100%;
margin: 0;
width: 100%;
}
@media all and (min-width: 37.5em) {
.feed__image {
height: calc(var(--feed-image-size) + 4vw);
width: calc(var(--feed-image-size) + 4vw);
}
}
.feed__image > img {
border-radius: inherit;
display: inline-block;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
width: 100%;
}
.feed__image--wide {
max-width: var(--page-width);
}
.feed__meta {
align-items: center;
color: var(--gray);
display: flex;
font-size: 0.8239746086rem;
gap: 0.8rem;
margin-bottom: calc(var(--baseline) * 3);
}
.feed__author {
font-family: var(--menu-font);
font-variation-settings: "wght" var(--font-weight-bold);
text-decoration: none;
}
.feed__author-thumb {
border-radius: 50%;
height: 1.7rem;
margin-right: -0.2rem;
width: 1.7rem;
}
.feed__date {
color: var(--gray);
font-style: italic;
}
.feed__author + .feed__date::before {
content: "";
background: var(--light);
display: inline-block;
height: 1px;
margin-right: 4px;
width: 1rem;
vertical-align: middle;
}
.feed__readmore {
margin-top: calc(var(--baseline) * 4 + 0.25vw);
}
.feed__title {
margin-top: 0;
}
.feed--grid {
margin: 0;
}
@media all and (min-width: 37.5em) {
.feed--grid {
display: grid;
grid-template-columns: 100%;
gap: 0 3rem;
}
}
@media all and (min-width: 56.25em) {
.feed--grid {
grid-template-columns: repeat(2, 1fr);
}
}
.feed--grid h2 {
margin-top: 0;
}
.feed--grid sup {
font-size: 1.066666667rem;
vertical-align: top;
}
.feed--grid li {
align-items: center;
list-style: none;
gap: 2rem;
padding: 0;
}
.content {
overflow: hidden;
}
.content__meta {
margin-top: calc(var(--baseline) * 4 + 0.25vw);
margin-bottom: 0;
}
.content__meta--centered {
justify-content: center;
}
.content__entry {
margin-top: calc(var(--baseline) * 6 + 1.5vw);
overflow-wrap: break-word;
}
.content__entry > :nth-child(1) {
margin-top: 0;
}
.content__entry a:not(.btn):not([type=button]):not([type=submit]):not(button):not(.post__toc a):not(.gallery__item a) {
color: var(--link-color-hover);
text-decoration: underline;
text-decoration-thickness: 1px;
text-underline-offset: 0.2em;
-webkit-text-decoration-skip: ink;
text-decoration-skip-ink: auto;
}
.content__entry a:not(.btn):not([type=button]):not([type=submit]):not(button):not(.post__toc a):not(.gallery__item a):hover, .content__entry a:not(.btn):not([type=button]):not([type=submit]):not(button):not(.post__toc a):not(.gallery__item a):active, .content__entry a:not(.btn):not([type=button]):not([type=submit]):not(button):not(.post__toc a):not(.gallery__item a):focus {
color: var(--link-color);
}
.content__entry--nospace {
margin-top: 0;
}
.content__avatar-thumbs {
border-radius: 50%;
height: 4.5rem;
width: 4.5rem;
}
.content__footer {
margin-top: calc(var(--baseline) * 9 + 1vw);
}
.content__updated {
color: var(--gray);
font-size: 0.8789062495rem;
font-style: italic;
}
.content__actions {
align-items: baseline;
display: flex;
flex-basis: auto;
gap: 2rem;
justify-content: space-between;
margin-top: calc(var(--baseline) * 4 + 0.25vw);
position: relative;
}
.content__share {
flex-shrink: 0;
}
.content__share-button {
border-color: var(--light);
}
.content__share-popup {
background: var(--lighter);
border-radius: calc(var(--border-radius) * 4);
bottom: 140%;
display: none;
padding: 1rem 0.85rem;
position: absolute;
right: 0;
text-align: left;
z-index: 1;
}
.content__share-popup.is-visible {
-webkit-animation: share-popup 0.48s cubic-bezier(0.17, 0.67, 0.6, 1.34) backwards;
animation: share-popup 0.48s cubic-bezier(0.17, 0.67, 0.6, 1.34) backwards;
display: block;
}
@-webkit-keyframes share-popup {
from {
-webkit-transform: scale(0.9);
transform: scale(0.9);
}
to {
-webkit-transform: scale(1);
transform: scale(1);
}
}
@keyframes share-popup {
from {
-webkit-transform: scale(0.9);
transform: scale(0.9);
}
to {
-webkit-transform: scale(1);
transform: scale(1);
}
}
.content__share-popup > a {
border-radius: calc(var(--border-radius) * 3);
color: var(--text-color);
display: block;
font-family: var(--menu-font);
font-size: 0.8239746086rem;
padding: 0.4rem 0.8rem;
}
.content__share-popup > a:hover {
background: var(--page-bg);
color: var(--text-color);
text-decoration: none;
}
.content__share-popup > a > svg {
fill: var(--text-color);
display: inline-block;
height: 0.9rem;
margin-right: 0.5666666667rem;
pointer-events: none;
vertical-align: middle;
width: 0.9rem;
}
.content__tag {
margin: 0;
font-family: var(--menu-font);
font-size: 0.8239746086rem;
}
.content__tag > li {
display: inline-flex;
margin: 0.3rem 0.3rem 0.3rem 0;
padding: 0;
}
.content__tag > li > a {
border: 1px solid var(--light);
border-radius: calc(var(--border-radius) * 10);
color: var(--dark);
font-size: 0.7241964329rem;
font-variation-settings: "wght" var(--font-weight-normal);
padding: calc(var(--baseline) * 1) calc(var(--baseline) * 2.5);
}
.content__tag > li > a:hover {
border-color: var(--dark);
}
.content__bio {
display: flex;
margin: calc(var(--baseline) * 12 + 1vw) 0;
}
@media all and (min-width: 37.5em) {
.content__bio {
align-items: center;
}
}
@media all and (min-width: 37.5em) {
.content__bio::before {
content: "";
border-top: 1px solid var(--light);
height: 1px;
margin-right: 2rem;
width: 30%;
}
}
.bio__avatar {
border-radius: 50%;
flex-shrink: 0;
height: 2.5rem;
margin-right: 1.2rem;
width: 2.5rem;
}
@media all and (min-width: 37.5em) {
.bio__avatar {
height: 4rem;
margin-right: 2rem;
width: 4rem;
}
}
.bio__name {
margin: 0;
}
.bio__desc {
font-family: var(--body-font);
font-size: 0.8789062495rem;
line-height: 1.5;
}
.bio__desc > :nth-child(1) {
margin-top: calc(var(--baseline) * 2);
}
.bio__desc a {
text-decoration: underline;
text-decoration-thickness: 1px;
text-underline-offset: 0.2em;
-webkit-text-decoration-skip: ink;
text-decoration-skip-ink: auto;
}
.bio__desc a {
color: var(--link-color-hover);
-webkit-transition: all 0.24s ease-out;
transition: all 0.24s ease-out;
}
.bio__desc a:hover {
color: var(--link-color);
}
.bio__desc a:active {
color: var(--link-color);
}
.bio__desc a:focus {
outline: none;
}
.content__nav {
margin-top: calc(var(--baseline) * 16 + 1vw);
}
.content__nav-inner {
border-top: 1px solid var(--dark);
border-bottom: 1px solid var(--dark);
padding: calc(var(--baseline) * 16) 0;
}
@media all and (min-width: 37.5em) {
.content__nav-inner {
display: flex;
gap: 1rem;
justify-content: space-between;
}
}
@media all and (min-width: 56.25em) {
.content__nav-inner {
gap: 2rem;
}
}
@media all and (max-width: 37.4375em) {
.content__nav-prev + .content__nav-next {
margin-top: calc(var(--baseline) * 6 + 1vw);
}
}
@media all and (min-width: 37.5em) {
.content__nav-next {
margin-left: auto;
text-align: right;
}
}
.content__nav-link {
font-family: var(--heading-font);
font-variation-settings: "wght" var(--font-weight-bold);
font-style: italic;
height: 100%;
line-height: 1.5;
display: flex;
gap: 1rem;
justify-content: space-between;
align-items: center;
}
@media all and (min-width: 37.5em) {
.content__nav-link {
gap: 2rem;
}
}
.content__nav-link > div {
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
}
@media all and (min-width: 56.25em) {
.content__nav-link > div {
-webkit-line-clamp: 4;
}
}
.content__nav-link span {
color: var(--gray);
display: block;
font-size: 0.7724761953rem;
font-family: var(--menu-font);
font-style: normal;
font-variation-settings: "wght" var(--font-weight-normal);
margin-bottom: var(--baseline);
}
.content__nav-image {
flex: 1 0 4rem;
margin: 0;
height: 4rem;
}
@media all and (min-width: 37.5em) and (max-width: 56.1875em) {
.content__nav-image {
flex-basis: 6rem;
height: 6rem;
}
}
@media all and (min-width: 56.25em) {
.content__nav-image {
flex-basis: 8rem;
height: 8rem;
}
}
.content__nav-image > img {
border-radius: calc(var(--border-radius) * 4);
display: block;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
width: 100%;
}
.content__related {
background: var(--lighter);
margin-top: calc(var(--baseline) * 16 + 1vw);
padding: calc(var(--baseline) * 12 + 3vw) 0;
}
.related__title {
margin-top: 0;
}
.content__comments {
margin-top: calc(var(--baseline) * 9);
overflow: hidden;
}
.post__image:not(.post__image--wide):not(.post__image--full) {
display: inline-block;
margin-bottom: calc(var(--baseline) * 2 + 0.25vw);
}
.post__image a,
.post__image img {
border-radius: calc(var(--border-radius) * 4);
display: inline-block;
}
.post__image > figcaption {
background-color: var(--page-bg);
}
.post__image--left {
float: left;
margin-right: 2rem;
max-width: 50%;
}
.post__image--right {
float: right;
margin-left: 2rem;
max-width: 50%;
}
.post__image--center {
display: block;
margin-left: auto;
margin-right: auto;
text-align: center;
}
.post__image--wide {
display: block;
}
@media all and (min-width: 56.25em) {
.post__image--wide {
margin-left: calc(-50vw + 50%);
margin-right: calc(-50vw + 50%);
padding: 0 var(--page-margin);
text-align: center;
}
.post__image--wide a,
.post__image--wide img {
display: block;
height: auto;
margin: auto;
max-width: var(--page-width);
width: 100%;
}
}
.post__image--full {
background-color: var(--lighter);
display: block;
margin-left: calc(-50vw + 50%);
margin-right: calc(-50vw + 50%);
text-align: center;
}
.post__image--full a,
.post__image--full img {
border-radius: 0;
display: block;
height: auto;
width: 100%;
}
.post__video, .post__iframe {
display: block;
margin-top: calc(var(--baseline) * 6 + 0.5vw);
margin-bottom: calc(var(--baseline) * 6 + 0.5vw);
overflow: hidden;
padding: 0;
position: relative;
width: 100%;
}
.post__video::before, .post__iframe::before {
display: block;
content: "";
padding-top: var(--embed-aspect-ratio);
}
.post__video iframe[height*="%"][width*="%"],
.post__video video[height*="%"][width*="%"],
.post__video iframe[height]:not([height*="%"])[width]:not([width*="%"]),
.post__video video[height]:not([height*="%"])[width]:not([width*="%"]), .post__iframe iframe[height*="%"][width*="%"],
.post__iframe video[height*="%"][width*="%"],
.post__iframe iframe[height]:not([height*="%"])[width]:not([width*="%"]),
.post__iframe video[height]:not([height*="%"])[width]:not([width*="%"]) {
border: none;
height: 100%;
left: 0;
position: absolute;
top: 0;
bottom: 0;
width: 100%;
}
.post__video:has(iframe:not([height]))::before, .post__video:has(iframe:not([width]))::before, .post__video:has(video:not([height]))::before, .post__video:has(video:not([width]))::before, .post__iframe:has(iframe:not([height]))::before, .post__iframe:has(iframe:not([width]))::before, .post__iframe:has(video:not([height]))::before, .post__iframe:has(video:not([width]))::before {
display: none;
}
.post__toc {
margin-top: calc(var(--baseline) * 6 + 0.5vw);
}
.post__toc h3 {
border-bottom: 1px solid var(--dark);
font-size: 1rem;
margin: 0;
padding-bottom: calc(var(--baseline) * 2 + 0.25vw);
}
.post__toc ul {
counter-reset: item;
list-style: decimal;
margin: calc(var(--baseline) * 3 + 0.25vw) 0 0 3ch;
}
.post__toc ul li {
counter-increment: item;
padding: 0;
}
.post__toc ul ul {
margin-top: 0;
}
.post__toc ul ul li {
display: block;
}
.post__toc ul ul li:before {
content: counters(item, ".") ". ";
margin-left: -3ch;
}
.banner {
text-align: center;
}
.banner--after-content {
margin-top: calc(var(--baseline) * 9 + 1vw);
}
.page__desc a {
text-decoration: underline;
text-decoration-thickness: 1px;
text-underline-offset: 0.2em;
-webkit-text-decoration-skip: ink;
text-decoration-skip-ink: auto;
}
@media all and (min-width: 37.5em) {
.page--author__wrapper {
display: flex;
gap: 2rem;
}
}
@media all and (min-width: 56.25em) {
.page--author__wrapper {
gap: 3rem;
}
}
.page--author__avatar {
border-radius: 50%;
height: calc(var(--baseline) * 10 + 2vw);
margin-top: calc(var(--baseline) * 6 + 1vw);
width: calc(var(--baseline) * 10 + 2vw);
}
.page--author__website {
margin-top: calc(var(--baseline) * 4 + 0.25vw);
}
.page--search form {
align-items: flex-start;
display: flex;
flex-wrap: wrap;
}
@media all and (max-width: 37.4375em) {
.page--search input {
margin-bottom: calc(var(--baseline) * 2);
}
}
@media all and (min-width: 20em) {
.page--search input {
flex: 1 0 auto;
margin-right: calc(var(--baseline) * 2);
}
}
@media all and (max-width: 37.4375em) {
.page--search button {
width: 100%;
}
}
.subpages__title {
border-top: 1px solid var(--light);
padding-top: calc(var(--baseline) * 6 + 0.5vw);
}
.subpages__list {
list-style: initial;
margin-left: 2ch;
}
.subpages__list ul {
list-style: initial;
margin: 0 0 0 2ch;
}
.subpages__list li {
padding-bottom: 0;
}
.readmore {
display: inline-block;
color: var(--gray);
font-size: 0.9374999997rem;
font-style: italic;
text-decoration: underline;
-webkit-text-decoration-skip: ink;
text-decoration-skip-ink: auto;
}
.align-left {
text-align: left;
}
.align-right {
text-align: right;
}
.align-center {
text-align: center;
}
.align-justify {
text-align: justify;
}
.msg {
background-color: var(--lighter);
border-left: 3px solid var(--light);
font-size: 0.9374999997rem;
padding: calc(var(--baseline) * 4) calc(var(--baseline) * 6);
position: relative;
}
.msg--highlight {
border-left-color: var(--highlight-color);
}
.msg--info {
border-left-color: var(--info-color);
}
.msg--success {
border-left-color: var(--success-color);
}
.msg--warning {
border-left-color: var(--warning-color);
}
.ordered-list {
counter-reset: listCounter;
}
.ordered-list li {
counter-increment: listCounter;
list-style: none;
padding-left: 0.3rem;
position: relative;
}
.ordered-list li::before {
color: var(--color);
content: counter(listCounter, decimal-leading-zero) ".";
font-variation-settings: "wght" var(--font-weight-bold);
left: -2rem;
position: absolute;
}
.dropcap:first-letter {
color: var(--headings-color);
float: left;
font-size: 3.6355864383rem;
line-height: 0.7;
margin-right: 0.6rem;
padding: calc(var(--baseline) * 2) calc(var(--baseline) * 2) calc(var(--baseline) * 2) 0;
}
.pec-wrapper {
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
}
.pec-overlay {
align-items: center;
background-color: var(--lighter);
font-size: 14px;
display: none;
height: inherit;
justify-content: center;
line-height: 1.4;
padding: 1rem;
position: relative;
text-align: center;
}
@media all and (min-width: 37.5em) {
.pec-overlay {
font-size: 16px;
line-height: var(--line-height);
padding: 1rem 2rem;
}
}
.pec-overlay.is-active {
display: flex;
}
.pec-overlay-inner p {
margin: 0 0 1rem;
}
.pagination {
display: flex;
gap: calc(var(--baseline) * 2);
justify-content: center;
margin-top: calc(var(--baseline) * 12 + 1vw);
}
@media all and (min-width: 56.25em) {
.pagination {
margin-top: calc(var(--baseline) * 18 + 1vw);
}
}
/* Footer ------------------------ */
.footer {
border-top: 1px solid var(--light);
font-size: 0.9374999997rem;
padding: calc(var(--baseline) * 9 + 1vw) 0 calc(var(--baseline) * 6 + 1vw);
margin: calc(var(--baseline) * 12 + 1vw) auto 0;
max-width: var(--page-width);
text-align: center;
}
.footer--glued {
border: none;
padding-top: 0;
}
.footer__nav ul {
list-style: none;
margin: 0;
}
.footer__nav ul li {
display: inline-block;
padding: var(--baseline) 0.5rem;
}
* + .footer__social {
margin-top: calc(var(--baseline) * 6 + 0.5vw);
}
.footer__social svg {
fill: var(--dark);
height: 1rem;
margin: 0 0.5rem;
-webkit-transition: all 0.12s linear 0s;
transition: all 0.12s linear 0s;
width: 1rem;
}
.footer__social svg:hover {
fill: var(--gray);
}
.footer__copyright {
font-size: 0.8239746086rem;
margin-top: var(--baseline);
}
.footer__copyright > *:first-child {
margin: 0;
}
.footer__bttop {
background: var(--page-bg);
bottom: calc(var(--baseline) * 5);
border-radius: 50%;
border-color: var(--light);
line-height: 1;
opacity: 0;
padding: calc(var(--baseline) * 2);
position: fixed;
right: 2rem;
text-align: center;
width: auto !important;
visibility: hidden;
z-index: 999;
}
@media all and (min-width: 56.25em) {
.footer__bttop {
bottom: calc(var(--baseline) * 10);
}
}
.footer__bttop:hover {
border-color: var(--dark);
opacity: 1;
}
.footer__bttop.is-visible {
visibility: visible;
opacity: 1;
}
.gallery {
margin: calc(var(--baseline) * 6 + 1vw) calc(var(--gallery-gap) * -1);
}
@media all and (min-width: 20em) {
.gallery {
display: flex;
flex-wrap: wrap;
}
}
@media all and (min-width: 56.25em) {
.gallery-wrapper--wide {
display: flex;
justify-content: center;
margin-left: calc(-50vw + 50%);
margin-right: calc(-50vw + 50%);
padding: 0 var(--page-margin);
}
.gallery-wrapper--wide .gallery {
max-width: var(--page-width);
}
}
@media all and (min-width: 56.25em) {
.gallery-wrapper--full {
margin-left: calc(-50vw + 50%);
margin-right: calc(-50vw + 50%);
padding: 0 var(--page-margin);
}
}
@media all and (min-width: 20em) {
.gallery[data-columns="1"] .gallery__item {
flex: 1 0 100%;
}
}
@media all and (min-width: 30em) {
.gallery[data-columns="2"] .gallery__item {
flex: 1 0 50%;
}
}
@media all and (min-width: 37.5em) {
.gallery[data-columns="3"] .gallery__item {
flex: 1 0 33.333%;
}
}
@media all and (min-width: 56.25em) {
.gallery[data-columns="4"] .gallery__item {
flex: 0 1 25%;
}
}
@media all and (min-width: 56.25em) {
.gallery[data-columns="5"] .gallery__item {
flex: 0 1 20%;
}
}
@media all and (min-width: 56.25em) {
.gallery[data-columns="6"] .gallery__item {
flex: 0 1 16.666%;
}
}
@media all and (min-width: 56.25em) {
.gallery[data-columns="7"] .gallery__item {
flex: 1 0 14.285%;
}
}
@media all and (min-width: 56.25em) {
.gallery[data-columns="8"] .gallery__item {
flex: 1 0 12.5%;
}
}
.gallery__item {
margin: 0;
padding: var(--gallery-gap);
position: relative;
}
@media all and (min-width: 20em) {
.gallery__item {
flex: 1 0 50%;
}
}
@media all and (min-width: 30em) {
.gallery__item {
flex: 1 0 33.333%;
}
}
@media all and (min-width: 37.5em) {
.gallery__item {
flex: 1 0 25%;
}
}
.gallery__item a {
border-radius: calc(var(--border-radius) * 4);
display: block;
height: 100%;
width: 100%;
}
.gallery__item a::after {
background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0)));
background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
border-radius: inherit;
bottom: var(--gallery-gap);
content: "";
display: block;
opacity: 0;
left: var(--gallery-gap);
height: calc(100% - var(--gallery-gap) * 2);
position: absolute;
right: var(--gallery-gap);
top: var(--gallery-gap);
-webkit-transition: all 0.24s ease-out;
transition: all 0.24s ease-out;
width: calc(100% - var(--gallery-gap) * 2);
}
.gallery__item a:hover::after {
opacity: 1;
}
.gallery__item img {
border-radius: inherit;
display: block;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
width: 100%;
}
.gallery__item figcaption {
bottom: 1.2rem;
color: var(--white);
left: 50%;
opacity: 0;
position: absolute;
text-align: center;
-webkit-transform: translate(-50%, 1.2rem);
transform: translate(-50%, 1.2rem);
-webkit-transition: all 0.24s ease-out;
transition: all 0.24s ease-out;
}
.gallery__item:hover figcaption {
opacity: 1;
-webkit-transform: translate(-50%, 0);
transform: translate(-50%, 0);
}
================================================
FILE: app/default-files/default-themes/simple/assets/css/style.css
================================================
@font-face{font-family:Lora;src:url('../dynamic/fonts/lora/lora.woff2') format('woff2');font-weight:400 700;font-display:swap;font-style:normal}@font-face{font-family:Lora;src:url('../dynamic/fonts/lora/lora-italic.woff2') format('woff2');font-weight:400 700;font-display:swap;font-style:italic}:root{--page-margin:6vw;--page-width:66rem;--entry-width:42rem;--navbar-height:4.4rem;--border-radius:3px;--baseline:0.28333rem;--gallery-gap:calc(var(--baseline) * 1.5);--body-font:'Lora',serif;--heading-font:'Lora',serif;--logo-font:var(--body-font);--menu-font:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Fira Sans","Droid Sans","Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";--font-size:clamp(1.1rem, 1.1rem + (0.09999999999999987 * ((100vw - 20rem) / 70)), 1.2rem);--font-weight-normal:400;--font-weight-bold:600;--line-height:1.7;--letter-spacing:0em;--headings-weight:500;--headings-transform:none;--headings-style:normal;--headings-letter-spacing:0em;--headings-line-height:1.2;--hero-height:50vh;--feed-image-size:8rem;--white:#FFFFFF;--black:#17181E;--helper:#FFFFFF;--dark:#17181E;--gray:#57585a;--light:#CACBCF;--lighter:#F3F3F3;--page-bg:#FFFFFF;--color:#D73A42;--text-color:#17181E;--headings-color:#17181E;--link-color:#17181E;--link-color-hover:#D73A42;--nav-link-color:#17181E;--nav-link-color-hover:#17181E;--logo-color:#17181E;--highlight-color:#FFC700;--info-color:#67B1F3;--success-color:#00A563;--warning-color:#EE4E4E}@media all and (min-width:56.25em){:root{--navbar-height:6rem}}@media (prefers-color-scheme:dark){:root{--white:#FFFFFF;--black:#1e1e1e;--helper:#1e1e1e;--dark:#CECBCB;--gray:#9D9D9D;--light:#373737;--lighter:#1e1e1e;--page-bg:#181818;--color:#FFC074;--text-color:#BFBFBF;--headings-color:#EEEDED;--link-color:#EEEDED;--link-color-hover:#FFC074;--nav-link-color:rgba(255,255,255,1);--nav-link-color-hover:rgba(255,255,255,.7);--logo-color:#FFFFFF;--highlight-color:#F6DC90;--info-color:#5B9ED5;--success-color:#54A468;--warning-color:#FB6762}}*,:after,:before{-webkit-box-sizing:border-box;box-sizing:border-box;margin:0;padding:0}article,aside,footer,header,hgroup,main,nav,section{display:block}li{list-style:none}img{height:auto;max-width:100%;vertical-align:top}button,input,select,textarea{font:inherit}address{font-style:normal}::-moz-selection{background:var(--color);color:var(--white)}::selection{background:var(--color);color:var(--white)}:focus-visible{outline:2px solid var(--color)!important;outline-offset:2px}html{font-size:var(--font-size);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;scroll-behavior:smooth}html.no-scroll{overflow:hidden;position:fixed}body{background:var(--page-bg);color:var(--text-color);font-family:var(--body-font);font-variation-settings:"wght" var(--font-weight-normal);letter-spacing:var(--letter-spacing);line-height:var(--line-height);-ms-scroll-chaining:none;overscroll-behavior:none}a{text-decoration:none}a{color:var(--link-color);-webkit-transition:all .24s ease-out;transition:all .24s ease-out}a:hover{color:var(--link-color-hover)}a:active{color:var(--link-color-hover)}a:focus{outline:0}.invert{color:var(--link-color-hover);-webkit-transition:all .24s ease-out;transition:all .24s ease-out}.invert:hover{color:var(--link-color)}.invert:active{color:var(--link-color)}.invert:focus{outline:0}dl,ol,p,ul{margin-top:calc(var(--baseline) * 4 + .25vw)}blockquote,figure,hr,pre,table{margin-top:calc(var(--baseline) * 6 + .5vw);margin-bottom:calc(var(--baseline) * 6 + .5vw)}h1,h2,h3,h4,h5,h6{color:var(--headings-color);font-family:var(--heading-font);font-variation-settings:"wght" var(--headings-weight);font-style:var(--headings-style);-ms-hyphens:manual;hyphens:manual;letter-spacing:var(--headings-letter-spacing);line-height:var(--headings-line-height);margin-top:calc(var(--baseline) * 6 + 1vw);text-transform:var(--headings-transform)}.h1,h1{font-size:clamp(1.5710900065rem, 1.5710900065rem + 1.424540906 * (100vw - 20rem) / 70, 2.9956309125rem);font-family:var(--heading-font)}.h2,h2{font-size:clamp(1.3808408252rem, 1.3808408252rem + .9332127447 * (100vw - 20rem) / 70, 2.3140535699rem)}.h3,h3{font-size:clamp(1.2136296308rem, 1.2136296308rem + .4621997101 * (100vw - 20rem) / 70, 1.6758293408rem)}.h4,h4{font-size:clamp(1.1377777785rem, 1.1377777785rem + .1567604947 * (100vw - 20rem) / 70, 1.2945382732rem)}.h5,h5{font-size:clamp(1.066666667rem, 1.066666667rem + .0711111115 * (100vw - 20rem) / 70, 1.1377777785rem)}.h6,h6{font-size:clamp(1rem, 1rem + 0 * (100vw - 20rem) / 70, 1rem)}h2+*,h3+*,h4+*,h5+*,h6+*{margin-top:calc(var(--baseline) * 2 + .25vw)}b,strong{font-variation-settings:"wght" var(--font-weight-bold)}blockquote{border-top:2px solid var(--dark);border-bottom:2px solid var(--dark);color:var(--headings-color);font-family:var(--heading-font);font-style:italic;font-variation-settings:"wght" var(--font-weight-bold);padding:calc(var(--baseline) * 6 + 1vw) 2rem;font-size:clamp(1.1377777785rem, 1.1377777785rem + .1567604947 * (100vw - 20rem) / 70, 1.2945382732rem)}blockquote>:first-child{margin-top:0}ol,ul{margin-left:3ch}ol>li,ul>li{list-style:inherit;padding:0 0 var(--baseline) 1ch}dl dt{font-variation-settings:"wght" var(--font-weight-bold)}pre{background-color:var(--lighter);font-size:.8239746086rem;padding:calc(var(--baseline) * 6);white-space:pre-wrap;word-wrap:break-word}pre>code{color:var(--text-color);display:inline-block;font-size:inherit;padding:0}code{background-color:var(--lighter);color:var(--color);font-size:.8239746086rem;font-family:Menlo,Monaco,Consolas,Courier New,monospace}table{border:1px solid var(--light);border-collapse:collapse;border-spacing:0;vertical-align:top;text-align:left;width:100%}@media all and (max-width:37.4375em){table{display:block;overflow-x:auto}}table th{font-variation-settings:"wght" var(--font-weight-bold);padding:calc(var(--baseline) * 2.5) calc(var(--baseline) * 4)}table td{border-top:1px solid var(--light);padding:calc(var(--baseline) * 2.5) calc(var(--baseline) * 4)}.table-striped tr:nth-child(2n){background:var(--lighter)}.table-bordered td,.table-bordered th{border:1px solid var(--light)}.table-title th{background:var(--lighter)}figcaption{clear:both;color:var(--gray);font-style:italic;font-size:.7241964329rem;padding:calc(var(--baseline) * 3) 0 0;text-align:center}kbd{background:var(--dark);border-radius:2px;color:var(--white);font-family:Menlo,Monaco,Consolas,Courier New,monospace;font-size:.8789062495rem;padding:calc(var(--baseline) * .5) calc(var(--baseline) * 1.5)}sub,sup{font-size:65%}small{font-size:.8789062495rem}.separator,hr{background:0 0;border:none;height:auto;line-height:1;max-width:none;text-align:center}.separator::before,hr::before{content:"•••";color:var(--dark);font-size:1rem;font-variation-settings:"wght" var(--font-weight-bold);letter-spacing:1.1377777785rem;padding-left:1.1377777785rem}.separator--dot::before{content:"•";color:var(--dark);font-size:1rem;font-variation-settings:"wght" var(--font-weight-bold);letter-spacing:1.1377777785rem;padding-left:1.1377777785rem}.separator--long-line{position:relative}.separator--long-line::before{content:"";height:1rem}.separator--long-line::after{border-top:1px solid var(--light);content:"";height:1px;position:absolute;width:100%;top:50%;left:0}.btn,[type=button],[type=submit],button{align-items:center;background:0 0;border:1px solid var(--dark);border-radius:calc(var(--border-radius) * 10);color:var(--dark);cursor:pointer;display:inline-flex;font-family:var(--menu-font);font-size:.8239746086rem;font-variation-settings:"wght" var(--font-weight-bold);overflow:hidden;padding:calc(var(--baseline) * 2) calc(var(--baseline) * 4);text-align:center;-webkit-transition:all .24s ease-out;transition:all .24s ease-out;vertical-align:middle;will-change:transform}@media all and (max-width:19.9375em){.btn,[type=button],[type=submit],button{width:100%}}.btn:active,.btn:focus,.btn:hover,[type=button]:active,[type=button]:focus,[type=button]:hover,[type=submit]:active,[type=submit]:focus,[type=submit]:hover,button:active,button:focus,button:hover{background-color:var(--dark);color:var(--helper)}.btn--icon{gap:.3rem;justify-content:center}.btn--icon svg{stroke:currentColor}@media all and (min-width:20em){.btn+.btn,.btn+[type=button],.btn+[type=submit],.btn+button,[type=button]+.btn,[type=button]+[type=button],[type=button]+[type=submit],[type=button]+button,[type=submit]+.btn,[type=submit]+[type=button],[type=submit]+[type=submit],[type=submit]+button,button+.btn,button+[type=button],button+[type=submit],button+button{margin-left:calc(var(--baseline) * 2)}}@media all and (max-width:37.4375em){.btn+.btn,.btn+[type=button],.btn+[type=submit],.btn+button,[type=button]+.btn,[type=button]+[type=button],[type=button]+[type=submit],[type=button]+button,[type=submit]+.btn,[type=submit]+[type=button],[type=submit]+[type=submit],[type=submit]+button,button+.btn,button+[type=button],button+[type=submit],button+button{margin-bottom:calc(var(--baseline) * 2)}}.btn:disabled,.btn[disabled],[disabled][type=button],[disabled][type=submit],[type=button]:disabled,[type=submit]:disabled,button:disabled,button[disabled]{background-color:var(--light);border-color:var(--light);color:var(--gray);cursor:not-allowed;pointer-events:none}[type=button],[type=submit],button{-webkit-appearance:none;-moz-appearance:none}::-webkit-search-cancel-button{-webkit-appearance:none}fieldset{border:1px solid var(--light);margin:calc(var(--baseline) * 6 + 1vw) 0 0;padding:calc(var(--baseline) * 6)}fieldset>legend{margin-left:-1rem;padding:0 1rem}legend{font-variation-settings:"wght" 500;padding:0}label{font-variation-settings:"wght" 500;margin:0 calc(var(--baseline) * 4) calc(var(--baseline) * 3) 0}[type=email],[type=number],[type=search],[type=tel],[type=text],[type=url],select,textarea{background-color:var(--page-bg);border:none;border:1px solid var(--light);color:var(--text-color);font-size:1rem;outline:0;padding:calc(var(--baseline) * 1.2) calc(var(--baseline) * 3);vertical-align:middle;width:100%;-webkit-appearance:none;-moz-appearance:none}@media all and (min-width:37.5em){[type=email],[type=number],[type=search],[type=tel],[type=text],[type=url],select,textarea{width:auto}}[type=email]:focus,[type=number]:focus,[type=search]:focus,[type=tel]:focus,[type=text]:focus,[type=url]:focus,select:focus,textarea:focus{border-color:var(--dark)}input[type=checkbox],input[type=radio]{opacity:0;position:absolute}input[type=checkbox]+label,input[type=radio]+label{position:relative;margin-left:-1px;cursor:pointer;padding:0}input[type=checkbox]+label:before,input[type=radio]+label:before{background-color:var(--white);border:1px solid var(--light);border-radius:2px;content:"";display:inline-block;height:calc(var(--baseline) * 5);line-height:calc(var(--baseline) * 5);margin-right:calc(var(--baseline) * 4);vertical-align:middle;text-align:center;width:calc(var(--baseline) * 5)}input[type=checkbox]:checked+label:before,input[type=radio]:checked+label:before{content:"";background-image:url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 8'%3e%3cpolygon points='9.53 0 4.4 5.09 1.47 2.18 0 3.64 2.93 6.54 4.4 8 5.87 6.54 11 1.46 9.53 0' fill='%23d73a42'/%3e%3c/svg%3e");background-repeat:no-repeat;background-size:11px 8px;background-position:50% 50%}input[type=radio]+label:before{border-radius:50%}input[type=radio]:checked+label:before{background-image:url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3ccircle cx='4' cy='4' r='4' fill='%23d73a42'/%3e%3c/svg%3e")}[type=file]{margin-bottom:calc(var(--baseline) * 6);width:100%}select{max-width:100%;width:auto;position:relative}select:not([multiple]){background:url('data:image/svg+xml;utf8,') no-repeat 90% 50%;background-size:8px;padding-right:calc(var(--baseline) * 12)}select[multiple]{border:1px solid var(--light);padding:calc(var(--baseline) * 6);width:100%}select[multiple]:hover{border-color:var(--light)}select[multiple]:focus{border-color:var(--dark)}select[multiple]:disabled{background-color:var(--light);cursor:not-allowed}select[multiple]:disabled:hover{border-color:var(--light)}textarea{display:block;overflow:auto;resize:vertical;max-width:100%}.top{align-items:center;display:flex;height:var(--navbar-height);position:relative;padding:0 var(--page-margin);-webkit-transition:background .5s ease;transition:background .5s ease;width:100%;z-index:2}@media all and (min-width:56.25em){.top{justify-content:space-between;height:var(--navbar-height)}}.top.sticky{background:var(--page-bg);position:sticky;top:-100px;-webkit-animation:slideDown .5s cubic-bezier(.17,.67,0,1) forwards;animation:slideDown .5s cubic-bezier(.17,.67,0,1) forwards}@-webkit-keyframes slideDown{from{opacity:0;top:-100px}to{opacity:1;top:0}}@keyframes slideDown{from{opacity:0;top:-100px}to{opacity:1;top:0}}.logo{color:var(--logo-color)!important;font-size:1.2136296308rem;font-family:var(--logo-font);font-variation-settings:"wght" var(--font-weight-bold);margin-right:auto;order:1}.logo>img{height:var(--navbar-height);-o-object-fit:contain;object-fit:contain;padding:calc(var(--baseline) * 2) 0;width:auto}.search{order:2}@media all and (min-width:56.25em){.search{order:3}}.search__btn{border-color:var(--light);margin:0;height:2.2rem;padding:0;width:2.2rem}@media all and (min-width:56.25em){.search__btn{margin-left:2rem}}.search__btn:focus,.search__btn:hover{border-color:var(--dark)}.search__form{display:flex;justify-content:space-between;width:100%}.search__form button{width:auto;flex-shrink:0}.search__input{background:0 0;border:none;border-bottom:1px solid var(--dark);display:block;font-family:var(--heading-font);padding:0;width:90%}.search__input:focus-visible{outline:0!important}.search__overlay{background-color:var(--page-bg);-webkit-box-shadow:0 3px 30px rgba(0,0,0,.05);box-shadow:0 3px 30px rgba(0,0,0,.05);left:0;opacity:0;position:fixed;-webkit-transition:all .24s ease-out;transition:all .24s ease-out;top:0;visibility:hidden;width:100%;z-index:2005}.search__overlay-inner{-webkit-animation:slideininput .24s 1s forwards;animation:slideininput .24s 1s forwards;align-items:center;display:flex;height:calc(var(--navbar-height) * 3);justify-content:space-between;padding:0 var(--page-margin);opacity:0;scale:0.9}@-webkit-keyframes slideininput{60%{opacity:0;scale:0.9}100%{opacity:1;scale:1}}@keyframes slideininput{60%{opacity:0;scale:0.9}100%{opacity:1;scale:1}}.search__overlay.expanded{-webkit-transform:translate(0,0);transform:translate(0,0);opacity:1;display:block;visibility:visible}.navbar{order:3}.navbar .navbar__menu{display:flex;flex-wrap:wrap;list-style:none;margin:0;padding:0}@media all and (max-width:56.1875em){.navbar .navbar__menu{display:none}}.navbar .navbar__menu li{font-family:var(--menu-font);display:block;font-size:.8789062495rem;line-height:var(--line-height);font-variation-settings:"wght" 500;padding:0;position:relative;width:auto}.navbar .navbar__menu li a,.navbar .navbar__menu li span[aria-haspopup=true]{color:var(--nav-link-color);display:block;padding:0 .6rem;-webkit-transition:all .24s ease-out;transition:all .24s ease-out}.navbar .navbar__menu li a:active,.navbar .navbar__menu li a:focus,.navbar .navbar__menu li a:hover,.navbar .navbar__menu li span[aria-haspopup=true]:active,.navbar .navbar__menu li span[aria-haspopup=true]:focus,.navbar .navbar__menu li span[aria-haspopup=true]:hover{color:var(--nav-link-color-hover)}.navbar .navbar__menu li span{color:var(--nav-link-color);cursor:default;display:block;padding:0 .6rem}.navbar .navbar__menu>li:hover>a,.navbar .navbar__menu>li:hover>span[aria-haspopup=true]{color:var(--nav-link-color-hover)}.navbar .has-submenu:active>.navbar__submenu,.navbar .has-submenu:focus>.navbar__submenu,.navbar .has-submenu:hover>.navbar__submenu{left:0;opacity:1;-webkit-transform:scale(1);transform:scale(1);visibility:visible;margin-top:.8rem}.navbar .has-submenu:active>.navbar__submenu:before,.navbar .has-submenu:focus>.navbar__submenu:before,.navbar .has-submenu:hover>.navbar__submenu:before{content:"";height:1rem;left:0;position:absolute;width:100%;top:-1rem}.navbar .has-submenu:active>.navbar__submenu.is-right-submenu,.navbar .has-submenu:focus>.navbar__submenu.is-right-submenu,.navbar .has-submenu:hover>.navbar__submenu.is-right-submenu{left:auto;right:0;-webkit-transform-origin:right top;transform-origin:right top}.navbar .has-submenu .has-submenu:active>.navbar__submenu,.navbar .has-submenu .has-submenu:focus>.navbar__submenu,.navbar .has-submenu .has-submenu:hover>.navbar__submenu{top:0;margin-top:0}.navbar .has-submenu .has-submenu:active>.navbar__submenu.is-right-submenu,.navbar .has-submenu .has-submenu:focus>.navbar__submenu.is-right-submenu,.navbar .has-submenu .has-submenu:hover>.navbar__submenu.is-right-submenu{top:0;margin-top:0}.navbar .navbar__submenu{background:var(--lighter);border-radius:calc(var(--border-radius) * 4);left:-9999px;list-style-type:none;margin:0;padding:1rem .85rem;position:absolute;visibility:hidden;white-space:nowrap;z-index:1;opacity:0;-webkit-transform:scale(.8);transform:scale(.8);-webkit-transform-origin:0 top;transform-origin:0 top;-webkit-transition:opacity .15s,-webkit-transform .3s cubic-bezier(.275, 1.375, .8, 1);transition:opacity .15s,-webkit-transform .3s cubic-bezier(.275, 1.375, .8, 1);transition:opacity .15s,transform .3s cubic-bezier(.275, 1.375, .8, 1);transition:opacity .15s,transform .3s cubic-bezier(.275, 1.375, .8, 1),-webkit-transform .3s cubic-bezier(.275, 1.375, .8, 1)}.navbar .navbar__submenu__submenu{z-index:2}.navbar .navbar__submenu li{line-height:1.5;font-size:.8789062495rem}.navbar .navbar__submenu li a,.navbar .navbar__submenu li span[aria-haspopup=true]{border-radius:calc(var(--border-radius) * 3);color:var(--nav-link-color-hover);padding:.5rem 1rem;-webkit-transition:all .24s ease;transition:all .24s ease}.navbar .navbar__submenu li a:active,.navbar .navbar__submenu li a:focus,.navbar .navbar__submenu li a:hover,.navbar .navbar__submenu li span[aria-haspopup=true]:active,.navbar .navbar__submenu li span[aria-haspopup=true]:focus,.navbar .navbar__submenu li span[aria-haspopup=true]:hover{background:var(--page-bg);color:var(--nav-link-color)}.navbar .navbar__submenu li span{color:var(--nav-link-color-hover)!important;padding:.5rem 1rem}.navbar .navbar__submenu li:hover>a,.navbar .navbar__submenu li:hover>span[aria-haspopup=true]{color:var(--nav-link-color)}.navbar .navbar__toggle{background:var(--black);-webkit-box-shadow:none;box-shadow:none;border:none;cursor:pointer;display:block;line-height:1;margin:0;overflow:visible;padding:0;position:relative;right:0;margin-left:.75rem;text-transform:none;z-index:2004;height:3.2rem;padding:0;width:3.2rem}@media all and (min-width:56.25em){.navbar .navbar__toggle{display:none}}.navbar .navbar__toggle:focus,.navbar .navbar__toggle:hover{-webkit-box-shadow:none;box-shadow:none;outline:0;-webkit-transform:none;transform:none}.navbar .navbar__toggle-box{width:20px;height:14px;display:inline-block;position:relative}.navbar .navbar__toggle-inner{display:block;top:50%;text-indent:-9999999em}.navbar .navbar__toggle-inner::before{content:"";display:block;top:-5px}.navbar .navbar__toggle-inner::after{content:"";display:block;bottom:-5px}.navbar .navbar__toggle-inner,.navbar .navbar__toggle-inner::after,.navbar .navbar__toggle-inner::before{width:20px;height:1px;background-color:var(--white);position:absolute;-webkit-transition:opacity .14s ease-out,-webkit-transform;transition:opacity .14s ease-out,-webkit-transform;transition:transform,opacity .14s ease-out;transition:transform,opacity .14s ease-out,-webkit-transform}.navbar .navbar__toggle-inner{-webkit-transition-duration:75ms;transition-duration:75ms;-webkit-transition-timing-function:cubic-bezier(0.55,0.055,0.675,0.19);transition-timing-function:cubic-bezier(0.55,0.055,0.675,0.19)}.navbar .navbar__toggle-inner::before{-webkit-transition:top 75ms ease .12s,opacity 75ms ease;transition:top 75ms ease .12s,opacity 75ms ease}.navbar .navbar__toggle-inner::after{-webkit-transition:bottom 75ms ease .12s,-webkit-transform 75ms cubic-bezier(.55, .055, .675, .19);transition:bottom 75ms ease .12s,-webkit-transform 75ms cubic-bezier(.55, .055, .675, .19);transition:bottom 75ms ease .12s,transform 75ms cubic-bezier(.55, .055, .675, .19);transition:bottom 75ms ease .12s,transform 75ms cubic-bezier(.55, .055, .675, .19),-webkit-transform 75ms cubic-bezier(.55, .055, .675, .19)}.navbar .navbar__toggle.is-active .navbar__toggle-inner{-webkit-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition-delay:0.12s;transition-delay:0.12s;-webkit-transition-timing-function:cubic-bezier(0.215,0.61,0.355,1);transition-timing-function:cubic-bezier(0.215,0.61,0.355,1)}.navbar .navbar__toggle.is-active .navbar__toggle-inner::before{top:0;opacity:0;-webkit-transition:top 75ms ease,opacity 75ms ease .12s;transition:top 75ms ease,opacity 75ms ease .12s}.navbar .navbar__toggle.is-active .navbar__toggle-inner::after{bottom:0;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);-webkit-transition:bottom 75ms ease,-webkit-transform 75ms cubic-bezier(.215, .61, .355, 1) .12s;transition:bottom 75ms ease,-webkit-transform 75ms cubic-bezier(.215, .61, .355, 1) .12s;transition:bottom 75ms ease,transform 75ms cubic-bezier(.215, .61, .355, 1) .12s;transition:bottom 75ms ease,transform 75ms cubic-bezier(.215, .61, .355, 1) .12s,-webkit-transform 75ms cubic-bezier(.215, .61, .355, 1) .12s}.navbar_mobile_overlay{background:var(--page-bg);height:calc(100vh - 4.4rem);left:0;opacity:1;overflow:auto;pointer-events:auto;position:fixed;top:4.4rem;-webkit-transition:all .3s cubic-bezier(0, 0, .3, 1);transition:all .3s cubic-bezier(0, 0, .3, 1);width:100%;z-index:1001}.navbar_mobile_overlay.is-hidden{opacity:0;pointer-events:none}.navbar_mobile_overlay .navbar__menu{margin:24px}.navbar_mobile_overlay .navbar__menu li{list-style:none;margin:0;padding:0;text-align:center}.navbar_mobile_overlay .navbar__menu li a,.navbar_mobile_overlay .navbar__menu li span{color:var(--dark);display:block;padding:calc(var(--baseline) * 2);position:relative}.navbar_mobile_overlay .navbar__menu li a:active,.navbar_mobile_overlay .navbar__menu li a:focus,.navbar_mobile_overlay .navbar__menu li a:hover,.navbar_mobile_overlay .navbar__menu li span:active,.navbar_mobile_overlay .navbar__menu li span:focus,.navbar_mobile_overlay .navbar__menu li span:hover{color:var(--dark)}.navbar_mobile_overlay .navbar__menu li a[aria-haspopup=true]::after,.navbar_mobile_overlay .navbar__menu li span[aria-haspopup=true]::after{content:"";width:0;height:0;border-style:solid;border-width:5px 5px 0 5px;border-color:currentColor transparent transparent transparent;left:calc(var(--baseline) * 2);top:15px;position:relative}.navbar_mobile_overlay .navbar__submenu{margin:0;padding:0;visibility:hidden}.navbar_mobile_overlay .navbar__submenu[aria-hidden=false]{visibility:visible}.navbar_mobile_overlay .navbar__submenu_wrapper{height:0;opacity:0;overflow:hidden;-webkit-transition:all .3s cubic-bezier(.275, 1.375, .8, 1);transition:all .3s cubic-bezier(.275, 1.375, .8, 1)}.navbar_mobile_overlay .navbar__submenu_wrapper.is-active{height:auto;opacity:1}.navbar_mobile_sidebar{background:var(--page-bg);-webkit-box-shadow:0 0 5px rgba(0,0,0,.25);box-shadow:0 0 5px rgba(0,0,0,.25);height:100vh;left:0;max-width:400px;overflow:auto;position:fixed;top:0;-webkit-transition:all .3s cubic-bezier(0, 0, .3, 1);transition:all .3s cubic-bezier(0, 0, .3, 1);width:80%;z-index:1001}.navbar_mobile_sidebar.is-hidden{left:-400px}.navbar_mobile_sidebar .navbar__menu{margin:24px}.navbar_mobile_sidebar .navbar__menu li{font-family:var(--menu-font);font-size:16px;list-style:none;line-height:1.3;margin:0;padding:0}.navbar_mobile_sidebar .navbar__menu li .is-separator,.navbar_mobile_sidebar .navbar__menu li a{color:var(--dark);display:block;padding:10px 20px 10px 0;position:relative}.navbar_mobile_sidebar .navbar__menu li .is-separator:active,.navbar_mobile_sidebar .navbar__menu li .is-separator:focus,.navbar_mobile_sidebar .navbar__menu li .is-separator:hover,.navbar_mobile_sidebar .navbar__menu li a:active,.navbar_mobile_sidebar .navbar__menu li a:focus,.navbar_mobile_sidebar .navbar__menu li a:hover{color:var(--dark)}.navbar_mobile_sidebar .navbar__menu li .is-separator[aria-haspopup=true]::after,.navbar_mobile_sidebar .navbar__menu li a[aria-haspopup=true]::after{content:"";width:0;height:0;border-style:solid;border-width:5px 5px 0 5px;border-color:currentColor transparent transparent transparent;right:0;top:18px;position:absolute}.navbar_mobile_sidebar .navbar__submenu{margin:0 0 0 24px;padding:0;visibility:hidden}.navbar_mobile_sidebar .navbar__submenu[aria-hidden=false]{visibility:visible}.navbar_mobile_sidebar .navbar__submenu_wrapper{height:0;opacity:0;overflow:hidden;-webkit-transition:all .3s cubic-bezier(.275, 1.375, .8, 1);transition:all .3s cubic-bezier(.275, 1.375, .8, 1)}.navbar_mobile_sidebar .navbar__submenu_wrapper.is-active{height:auto;opacity:1}.navbar_mobile_sidebar__overlay{background:rgba(0,0,0,.5);height:100%;opacity:1;pointer-events:auto;position:fixed;top:0;-webkit-transition:all .3s cubic-bezier(0, 0, .3, 1);transition:all .3s cubic-bezier(0, 0, .3, 1);width:100%;z-index:10}.navbar_mobile_sidebar__overlay.is-hidden{opacity:0;pointer-events:none}.wrapper{-webkit-box-sizing:content-box;box-sizing:content-box;max-width:var(--page-width);margin-left:auto;margin-right:auto;padding-left:var(--page-margin);padding-right:var(--page-margin)}.entry-wrapper{-webkit-box-sizing:content-box;box-sizing:content-box;max-width:var(--entry-width);margin-left:auto;margin-right:auto;padding-left:var(--page-margin);padding-right:var(--page-margin)}.hero{position:relative;z-index:1}.hero--noimage::after{background:var(--dark);content:"";display:block;height:1px;bottom:0;width:calc(100% - var(--page-margin) * 2);z-index:-1;max-width:var(--page-width);position:absolute;left:50%;-webkit-transform:translate(-50%,0);transform:translate(-50%,0)}.hero__content{padding-bottom:calc(var(--baseline) * 6 + 1.5vw)}.hero__content h1>sup{font-size:1.066666667rem;vertical-align:top}.hero__content--centered{text-align:center}.hero__content--centered .content__meta{justify-content:center}.hero__cta{margin-top:calc(var(--baseline) * 6)}.hero__image{margin:0 var(--page-margin)}.hero__image-wrapper{position:relative;background:var(--lighter);border-radius:calc(var(--border-radius) * 4)}@media all and (min-width:56.25em){.hero__image-wrapper{height:var(--hero-height)}}.hero__image-wrapper img{border-radius:inherit;display:block;height:100%;-o-object-fit:cover;object-fit:cover;width:100%}@media all and (min-width:56.25em){.hero__image-wrapper img{height:var(--hero-height)}}.hero__image>figcaption{background:var(--page-bg)}@media all and (min-width:56.25em){.hero__image>figcaption{text-align:right}}.feed__item{display:flex;flex-wrap:wrap;gap:calc(2rem + 2vw);margin-top:calc(var(--baseline) * 12 + 2vw)}@media all and (min-width:37.5em){.feed__item{flex-wrap:nowrap}}.feed__item--centered{justify-content:center}.feed__content{max-width:var(--entry-width)}.feed__image{background:var(--lighter);border-radius:calc(var(--border-radius) * 4);flex-shrink:0;height:100%;margin:0;width:100%}@media all and (min-width:37.5em){.feed__image{height:calc(var(--feed-image-size) + 4vw);width:calc(var(--feed-image-size) + 4vw)}}.feed__image>img{border-radius:inherit;display:inline-block;height:100%;-o-object-fit:cover;object-fit:cover;width:100%}.feed__image--wide{max-width:var(--page-width)}.feed__meta{align-items:center;color:var(--gray);display:flex;font-size:.8239746086rem;gap:.8rem;margin-bottom:calc(var(--baseline) * 3)}.feed__author{font-family:var(--menu-font);font-variation-settings:"wght" var(--font-weight-bold);text-decoration:none}.feed__author-thumb{border-radius:50%;height:1.7rem;margin-right:-.2rem;width:1.7rem}.feed__date{color:var(--gray);font-style:italic}.feed__author+.feed__date::before{content:"";background:var(--light);display:inline-block;height:1px;margin-right:4px;width:1rem;vertical-align:middle}.feed__readmore{margin-top:calc(var(--baseline) * 4 + .25vw)}.feed__title{margin-top:0}.feed--grid{margin:0}@media all and (min-width:37.5em){.feed--grid{display:grid;grid-template-columns:100%;gap:0 3rem}}@media all and (min-width:56.25em){.feed--grid{grid-template-columns:repeat(2,1fr)}}.feed--grid h2{margin-top:0}.feed--grid sup{font-size:1.066666667rem;vertical-align:top}.feed--grid li{align-items:center;list-style:none;gap:2rem;padding:0}.content{overflow:hidden}.content__meta{margin-top:calc(var(--baseline) * 4 + .25vw);margin-bottom:0}.content__meta--centered{justify-content:center}.content__entry{margin-top:calc(var(--baseline) * 6 + 1.5vw);overflow-wrap:break-word}.content__entry>:first-child{margin-top:0}.content__entry a:not(.btn):not([type=button]):not([type=submit]):not(button):not(.post__toc a):not(.gallery__item a){color:var(--link-color-hover);text-decoration:underline;text-decoration-thickness:1px;text-underline-offset:0.2em;-webkit-text-decoration-skip:ink;text-decoration-skip-ink:auto}.content__entry a:not(.btn):not([type=button]):not([type=submit]):not(button):not(.post__toc a):not(.gallery__item a):active,.content__entry a:not(.btn):not([type=button]):not([type=submit]):not(button):not(.post__toc a):not(.gallery__item a):focus,.content__entry a:not(.btn):not([type=button]):not([type=submit]):not(button):not(.post__toc a):not(.gallery__item a):hover{color:var(--link-color)}.content__entry--nospace{margin-top:0}.content__avatar-thumbs{border-radius:50%;height:4.5rem;width:4.5rem}.content__footer{margin-top:calc(var(--baseline) * 9 + 1vw)}.content__updated{color:var(--gray);font-size:.8789062495rem;font-style:italic}.content__actions{align-items:baseline;display:flex;flex-basis:auto;gap:2rem;justify-content:space-between;margin-top:calc(var(--baseline) * 4 + .25vw);position:relative}.content__share{flex-shrink:0}.content__share-button{border-color:var(--light)}.content__share-popup{background:var(--lighter);border-radius:calc(var(--border-radius) * 4);bottom:140%;display:none;padding:1rem .85rem;position:absolute;right:0;text-align:left;z-index:1}.content__share-popup.is-visible{-webkit-animation:share-popup .48s cubic-bezier(.17,.67,.6,1.34) backwards;animation:share-popup .48s cubic-bezier(.17,.67,.6,1.34) backwards;display:block}@-webkit-keyframes share-popup{from{-webkit-transform:scale(.9);transform:scale(.9)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes share-popup{from{-webkit-transform:scale(.9);transform:scale(.9)}to{-webkit-transform:scale(1);transform:scale(1)}}.content__share-popup>a{border-radius:calc(var(--border-radius) * 3);color:var(--text-color);display:block;font-family:var(--menu-font);font-size:.8239746086rem;padding:.4rem .8rem}.content__share-popup>a:hover{background:var(--page-bg);color:var(--text-color);text-decoration:none}.content__share-popup>a>svg{fill:var(--text-color);display:inline-block;height:.9rem;margin-right:.5666666667rem;pointer-events:none;vertical-align:middle;width:.9rem}.content__tag{margin:0;font-family:var(--menu-font);font-size:.8239746086rem}.content__tag>li{display:inline-flex;margin:.3rem .3rem .3rem 0;padding:0}.content__tag>li>a{border:1px solid var(--light);border-radius:calc(var(--border-radius) * 10);color:var(--dark);font-size:.7241964329rem;font-variation-settings:"wght" var(--font-weight-normal);padding:calc(var(--baseline) * 1) calc(var(--baseline) * 2.5)}.content__tag>li>a:hover{border-color:var(--dark)}.content__bio{display:flex;margin:calc(var(--baseline) * 12 + 1vw) 0}@media all and (min-width:37.5em){.content__bio{align-items:center}}@media all and (min-width:37.5em){.content__bio::before{content:"";border-top:1px solid var(--light);height:1px;margin-right:2rem;width:30%}}.bio__avatar{border-radius:50%;flex-shrink:0;height:2.5rem;margin-right:1.2rem;width:2.5rem}@media all and (min-width:37.5em){.bio__avatar{height:4rem;margin-right:2rem;width:4rem}}.bio__name{margin:0}.bio__desc{font-family:var(--body-font);font-size:.8789062495rem;line-height:1.5}.bio__desc>:first-child{margin-top:calc(var(--baseline) * 2)}.bio__desc a{text-decoration:underline;text-decoration-thickness:1px;text-underline-offset:0.2em;-webkit-text-decoration-skip:ink;text-decoration-skip-ink:auto}.bio__desc a{color:var(--link-color-hover);-webkit-transition:all .24s ease-out;transition:all .24s ease-out}.bio__desc a:hover{color:var(--link-color)}.bio__desc a:active{color:var(--link-color)}.bio__desc a:focus{outline:0}.content__nav{margin-top:calc(var(--baseline) * 16 + 1vw)}.content__nav-inner{border-top:1px solid var(--dark);border-bottom:1px solid var(--dark);padding:calc(var(--baseline) * 16) 0}@media all and (min-width:37.5em){.content__nav-inner{display:flex;gap:1rem;justify-content:space-between}}@media all and (min-width:56.25em){.content__nav-inner{gap:2rem}}@media all and (max-width:37.4375em){.content__nav-prev+.content__nav-next{margin-top:calc(var(--baseline) * 6 + 1vw)}}@media all and (min-width:37.5em){.content__nav-next{margin-left:auto;text-align:right}}.content__nav-link{font-family:var(--heading-font);font-variation-settings:"wght" var(--font-weight-bold);font-style:italic;height:100%;line-height:1.5;display:flex;gap:1rem;justify-content:space-between;align-items:center}@media all and (min-width:37.5em){.content__nav-link{gap:2rem}}.content__nav-link>div{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical}@media all and (min-width:56.25em){.content__nav-link>div{-webkit-line-clamp:4}}.content__nav-link span{color:var(--gray);display:block;font-size:.7724761953rem;font-family:var(--menu-font);font-style:normal;font-variation-settings:"wght" var(--font-weight-normal);margin-bottom:var(--baseline)}.content__nav-image{flex:1 0 4rem;margin:0;height:4rem}@media all and (min-width:37.5em) and (max-width:56.1875em){.content__nav-image{flex-basis:6rem;height:6rem}}@media all and (min-width:56.25em){.content__nav-image{flex-basis:8rem;height:8rem}}.content__nav-image>img{border-radius:calc(var(--border-radius) * 4);display:block;height:100%;-o-object-fit:cover;object-fit:cover;width:100%}.content__related{background:var(--lighter);margin-top:calc(var(--baseline) * 16 + 1vw);padding:calc(var(--baseline) * 12 + 3vw) 0}.related__title{margin-top:0}.content__comments{margin-top:calc(var(--baseline) * 9);overflow:hidden}.post__image:not(.post__image--wide):not(.post__image--full){display:inline-block;margin-bottom:calc(var(--baseline) * 2 + .25vw)}.post__image a,.post__image img{border-radius:calc(var(--border-radius) * 4);display:inline-block}.post__image>figcaption{background-color:var(--page-bg)}.post__image--left{float:left;margin-right:2rem;max-width:50%}.post__image--right{float:right;margin-left:2rem;max-width:50%}.post__image--center{display:block;margin-left:auto;margin-right:auto;text-align:center}.post__image--wide{display:block}@media all and (min-width:56.25em){.post__image--wide{margin-left:calc(-50vw + 50%);margin-right:calc(-50vw + 50%);padding:0 var(--page-margin);text-align:center}.post__image--wide a,.post__image--wide img{display:block;height:auto;margin:auto;max-width:var(--page-width);width:100%}}.post__image--full{background-color:var(--lighter);display:block;margin-left:calc(-50vw + 50%);margin-right:calc(-50vw + 50%);text-align:center}.post__image--full a,.post__image--full img{border-radius:0;display:block;height:auto;width:100%}.post__iframe,.post__video{display:block;margin-top:calc(var(--baseline) * 6 + .5vw);margin-bottom:calc(var(--baseline) * 6 + .5vw);overflow:hidden;padding:0;position:relative;width:100%}.post__iframe::before,.post__video::before{display:block;content:"";padding-top:var(--embed-aspect-ratio)}.post__iframe iframe[height*="%"][width*="%"],.post__iframe iframe[height]:not([height*="%"])[width]:not([width*="%"]),.post__iframe video[height*="%"][width*="%"],.post__iframe video[height]:not([height*="%"])[width]:not([width*="%"]),.post__video iframe[height*="%"][width*="%"],.post__video iframe[height]:not([height*="%"])[width]:not([width*="%"]),.post__video video[height*="%"][width*="%"],.post__video video[height]:not([height*="%"])[width]:not([width*="%"]){border:none;height:100%;left:0;position:absolute;top:0;bottom:0;width:100%}.post__iframe:has(iframe:not([height]))::before,.post__iframe:has(iframe:not([width]))::before,.post__iframe:has(video:not([height]))::before,.post__iframe:has(video:not([width]))::before,.post__video:has(iframe:not([height]))::before,.post__video:has(iframe:not([width]))::before,.post__video:has(video:not([height]))::before,.post__video:has(video:not([width]))::before{display:none}.post__toc{margin-top:calc(var(--baseline) * 6 + .5vw)}.post__toc h3{border-bottom:1px solid var(--dark);font-size:1rem;margin:0;padding-bottom:calc(var(--baseline) * 2 + .25vw)}.post__toc ul{counter-reset:item;list-style:decimal;margin:calc(var(--baseline) * 3 + .25vw) 0 0 3ch}.post__toc ul li{counter-increment:item;padding:0}.post__toc ul ul{margin-top:0}.post__toc ul ul li{display:block}.post__toc ul ul li:before{content:counters(item, ".") ". ";margin-left:-3ch}.banner{text-align:center}.banner--after-content{margin-top:calc(var(--baseline) * 9 + 1vw)}.page__desc a{text-decoration:underline;text-decoration-thickness:1px;text-underline-offset:0.2em;-webkit-text-decoration-skip:ink;text-decoration-skip-ink:auto}@media all and (min-width:37.5em){.page--author__wrapper{display:flex;gap:2rem}}@media all and (min-width:56.25em){.page--author__wrapper{gap:3rem}}.page--author__avatar{border-radius:50%;height:calc(var(--baseline) * 10 + 2vw);margin-top:calc(var(--baseline) * 6 + 1vw);width:calc(var(--baseline) * 10 + 2vw)}.page--author__website{margin-top:calc(var(--baseline) * 4 + .25vw)}.page--search form{align-items:flex-start;display:flex;flex-wrap:wrap}@media all and (max-width:37.4375em){.page--search input{margin-bottom:calc(var(--baseline) * 2)}}@media all and (min-width:20em){.page--search input{flex:1 0 auto;margin-right:calc(var(--baseline) * 2)}}@media all and (max-width:37.4375em){.page--search button{width:100%}}.subpages__title{border-top:1px solid var(--light);padding-top:calc(var(--baseline) * 6 + .5vw)}.subpages__list{list-style:initial;margin-left:2ch}.subpages__list ul{list-style:initial;margin:0 0 0 2ch}.subpages__list li{padding-bottom:0}.readmore{display:inline-block;color:var(--gray);font-size:.9374999997rem;font-style:italic;text-decoration:underline;-webkit-text-decoration-skip:ink;text-decoration-skip-ink:auto}.align-left{text-align:left}.align-right{text-align:right}.align-center{text-align:center}.align-justify{text-align:justify}.msg{background-color:var(--lighter);border-left:3px solid var(--light);font-size:.9374999997rem;padding:calc(var(--baseline) * 4) calc(var(--baseline) * 6);position:relative}.msg--highlight{border-left-color:var(--highlight-color)}.msg--info{border-left-color:var(--info-color)}.msg--success{border-left-color:var(--success-color)}.msg--warning{border-left-color:var(--warning-color)}.ordered-list{counter-reset:listCounter}.ordered-list li{counter-increment:listCounter;list-style:none;padding-left:.3rem;position:relative}.ordered-list li::before{color:var(--color);content:counter(listCounter,decimal-leading-zero) ".";font-variation-settings:"wght" var(--font-weight-bold);left:-2rem;position:absolute}.dropcap:first-letter{color:var(--headings-color);float:left;font-size:3.6355864383rem;line-height:.7;margin-right:.6rem;padding:calc(var(--baseline) * 2) calc(var(--baseline) * 2) calc(var(--baseline) * 2) 0}.pec-wrapper{height:100%;left:0;position:absolute;top:0;width:100%}.pec-overlay{align-items:center;background-color:var(--lighter);font-size:14px;display:none;height:inherit;justify-content:center;line-height:1.4;padding:1rem;position:relative;text-align:center}@media all and (min-width:37.5em){.pec-overlay{font-size:16px;line-height:var(--line-height);padding:1rem 2rem}}.pec-overlay.is-active{display:flex}.pec-overlay-inner p{margin:0 0 1rem}.pagination{display:flex;gap:calc(var(--baseline) * 2);justify-content:center;margin-top:calc(var(--baseline) * 12 + 1vw)}@media all and (min-width:56.25em){.pagination{margin-top:calc(var(--baseline) * 18 + 1vw)}}.footer{border-top:1px solid var(--light);font-size:.9374999997rem;padding:calc(var(--baseline) * 9 + 1vw) 0 calc(var(--baseline) * 6 + 1vw);margin:calc(var(--baseline) * 12 + 1vw) auto 0;max-width:var(--page-width);text-align:center}.footer--glued{border:none;padding-top:0}.footer__nav ul{list-style:none;margin:0}.footer__nav ul li{display:inline-block;padding:var(--baseline) .5rem}*+.footer__social{margin-top:calc(var(--baseline) * 6 + .5vw)}.footer__social svg{fill:var(--dark);height:1rem;margin:0 .5rem;-webkit-transition:all .12s linear 0s;transition:all .12s linear 0s;width:1rem}.footer__social svg:hover{fill:var(--gray)}.footer__copyright{font-size:.8239746086rem;margin-top:var(--baseline)}.footer__copyright>:first-child{margin:0}.footer__bttop{background:var(--page-bg);bottom:calc(var(--baseline) * 5);border-radius:50%;border-color:var(--light);line-height:1;opacity:0;padding:calc(var(--baseline) * 2);position:fixed;right:2rem;text-align:center;width:auto!important;visibility:hidden;z-index:999}@media all and (min-width:56.25em){.footer__bttop{bottom:calc(var(--baseline) * 10)}}.footer__bttop:hover{border-color:var(--dark);opacity:1}.footer__bttop.is-visible{visibility:visible;opacity:1}.gallery{margin:calc(var(--baseline) * 6 + 1vw) calc(var(--gallery-gap) * -1)}@media all and (min-width:20em){.gallery{display:flex;flex-wrap:wrap}}@media all and (min-width:56.25em){.gallery-wrapper--wide{display:flex;justify-content:center;margin-left:calc(-50vw + 50%);margin-right:calc(-50vw + 50%);padding:0 var(--page-margin)}.gallery-wrapper--wide .gallery{max-width:var(--page-width)}}@media all and (min-width:56.25em){.gallery-wrapper--full{margin-left:calc(-50vw + 50%);margin-right:calc(-50vw + 50%);padding:0 var(--page-margin)}}@media all and (min-width:20em){.gallery[data-columns="1"] .gallery__item{flex:1 0 100%}}@media all and (min-width:30em){.gallery[data-columns="2"] .gallery__item{flex:1 0 50%}}@media all and (min-width:37.5em){.gallery[data-columns="3"] .gallery__item{flex:1 0 33.333%}}@media all and (min-width:56.25em){.gallery[data-columns="4"] .gallery__item{flex:0 1 25%}}@media all and (min-width:56.25em){.gallery[data-columns="5"] .gallery__item{flex:0 1 20%}}@media all and (min-width:56.25em){.gallery[data-columns="6"] .gallery__item{flex:0 1 16.666%}}@media all and (min-width:56.25em){.gallery[data-columns="7"] .gallery__item{flex:1 0 14.285%}}@media all and (min-width:56.25em){.gallery[data-columns="8"] .gallery__item{flex:1 0 12.5%}}.gallery__item{margin:0;padding:var(--gallery-gap);position:relative}@media all and (min-width:20em){.gallery__item{flex:1 0 50%}}@media all and (min-width:30em){.gallery__item{flex:1 0 33.333%}}@media all and (min-width:37.5em){.gallery__item{flex:1 0 25%}}.gallery__item a{border-radius:calc(var(--border-radius) * 4);display:block;height:100%;width:100%}.gallery__item a::after{background:-webkit-gradient(linear,left bottom,left top,from(rgba(0,0,0,.4)),to(rgba(0,0,0,0)));background:linear-gradient(to top,rgba(0,0,0,.4) 0,rgba(0,0,0,0) 100%);border-radius:inherit;bottom:var(--gallery-gap);content:"";display:block;opacity:0;left:var(--gallery-gap);height:calc(100% - var(--gallery-gap) * 2);position:absolute;right:var(--gallery-gap);top:var(--gallery-gap);-webkit-transition:all .24s ease-out;transition:all .24s ease-out;width:calc(100% - var(--gallery-gap) * 2)}.gallery__item a:hover::after{opacity:1}.gallery__item img{border-radius:inherit;display:block;height:100%;-o-object-fit:cover;object-fit:cover;width:100%}.gallery__item figcaption{bottom:1.2rem;color:var(--white);left:50%;opacity:0;position:absolute;text-align:center;-webkit-transform:translate(-50%,1.2rem);transform:translate(-50%,1.2rem);-webkit-transition:all .24s ease-out;transition:all .24s ease-out}.gallery__item:hover figcaption{opacity:1;-webkit-transform:translate(-50%,0);transform:translate(-50%,0)}img[loading]{opacity:0}img.is-loaded{opacity:1;transition:opacity 1s cubic-bezier(.215, .61, .355, 1)}
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/adventpro/OFL.txt
================================================
Copyright 2011 The Andada Pro Project Authors (https://github.com/huertatipografica/Andada)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/albertsans/OFL.txt
================================================
Copyright 2021 The Albert Sans Project Authors (https://github.com/usted/Albert-Sans)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://openfontlicense.org
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/aleo/OFL.txt
================================================
Copyright 2011 The Andada Pro Project Authors (https://github.com/huertatipografica/Andada)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/andadapro/OFL.txt
================================================
Copyright 2011 The Andada Pro Project Authors (https://github.com/huertatipografica/Andada)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/antonio/OFL.txt
================================================
Copyright 2013 The Antonio Project Authors (https://github.com/googlefonts/antonioFont)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/archivonarrow/OFL.txt
================================================
Copyright 2019 The Archivo Narrow Project Authors (https://github.com/Omnibus-Type/ArchivoNarrow)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/asap/OFL.txt
================================================
Copyright 2018 The Asap Project Authors (https://github.com/Omnibus-Type/Asap)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/assistant/OFL.txt
================================================
Copyright 2011 The Andada Pro Project Authors (https://github.com/huertatipografica/Andada)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/besley/OFL.txt
================================================
Copyright 2020 The Besley Project Authors (https://github.com/indestructible-type/Besley)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/bigshouldersdisplay/OFL.txt
================================================
Copyright 2019 The Big Shoulders Project Authors (https://github.com/xotypeco/big_shoulders)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/bitcount/OFL.txt
================================================
Copyright 1980 The Bitcount Project Authors (https://github.com/petrvanblokland/TYPETR-Bitcount)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://openfontlicense.org
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/bitter/OFL.txt
================================================
Copyright 2011 The Bitter Project Authors (https://github.com/solmatas/BitterPro)
with Reserved Font Name "Bitter Pro".
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/bodonimoda/OFL.txt
================================================
Copyright 2020 The Bodoni Moda Project Authors (https://github.com/indestructible-type/Bodoni)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://openfontlicense.org
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/brygada1918/OFL.txt
================================================
Copyright 2020 The Brygada 1918 Project Authors (https://github.com/kosmynkab/Brygada-1918)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/cabin/OFL.txt
================================================
Copyright 2009 The Cairo Project Authors (https://github.com/Gue3bara/Cairo)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/cairo/OFL.txt
================================================
Copyright 2009 The Cairo Project Authors (https://github.com/Gue3bara/Cairo)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/cinzel/OFL.txt
================================================
Copyright 2020 The Cinzel Project Authors (https://github.com/NDISCOVER/Cinzel)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://openfontlicense.org
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/comfortaa/OFL.txt
================================================
Copyright 2011 The Comfortaa Project Authors (https://github.com/alexeiva/comfortaa), with Reserved Font Name "Comfortaa".
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/comme/OFL.txt
================================================
Copyright 2014 The Comme Project Authors (https://github.com/googlefonts/comme)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://openfontlicense.org
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/dancingscript/OFL.txt
================================================
Copyright 2016 The Dancing Script Project Authors (https://github.com/googlefonts/DancingScript), with Reserved Font Name 'Dancing Script'.
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/danfo/OFL.txt
================================================
Copyright 2023 The Danfo Project Authors (https://github.com/Afrotype/danfo)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://openfontlicense.org
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/dmsans/OFL.txt
================================================
Copyright 2014 The DM Sans Project Authors (https://github.com/googlefonts/dm-fonts)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://openfontlicense.org
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/domine/OFL.txt
================================================
Copyright 2020 The Domine Project Authors (https://github.com/googlefonts/domine)
Copyright (c) 2012, Pablo Impallari (www.impallari.com|impallari@gmail.com),
Copyright (c) 2012, Pablo Impallari (www.impallari.com|impallari@gmail.com),
Copyright (c) 2012, Rodrigo Fuenzalida (www.rfuenzalida.com|hello@rfuenzalida.com),
Copyright (c) 2012, Brenda Gallo (gbrenda1987@gmail.com), with Reserved Font Name Domine.
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/dosis/OFL.txt
================================================
Copyright 2011 The Dosis Project Authors (https://github.com/googlefonts/dosis-vf)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/doto/OFL.txt
================================================
Copyright 2024 The Doto Project Authors (https://github.com/oliverlalan/Doto)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://openfontlicense.org
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/dynapuff/OFL.txt
================================================
Copyright 2021 The DynaPuff Project Authors (https://github.com/googlefonts/dynapuff)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://openfontlicense.org
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/exo/OFL.txt
================================================
Copyright 2017 The Exo Project Authors (https://github.com/NDISCOVER/Exo-1.0)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/familjengrotesk/OFL.txt
================================================
Copyright 2021 The Familjen Grotesk Project Authors (https://github.com/Familjen-Sthlm/Familjen-Grotesk)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://openfontlicense.org
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/faustina/OFL.txt
================================================
Copyright 2016 The Faustina Project Authors (https://github.com/Omnibus-Type/Faustina)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/figtree/OFL.txt
================================================
Copyright 2016 The Faustina Project Authors (https://github.com/Omnibus-Type/Faustina)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/finlandica/OFL.txt
================================================
Copyright 2015 The Finlandica Project Authors (https://github.com/HelsinkiTypeStudio/Finlandica)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://openfontlicense.org
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/frankruhllibre/OFL.txt
================================================
Copyright 2016 The Faustina Project Authors (https://github.com/Omnibus-Type/Faustina)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/fredoka/OFL.txt
================================================
Copyright 2016 The Fredoka Project Authors (https://github.com/hafontia/Fredoka-One)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://openfontlicense.org
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/funneldisplay/OFL.txt
================================================
Copyright 2024 The Funnel Project Authors (https://github.com/Dicotype/Funnel)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://openfontlicense.org
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/gantari/OFL.txt
================================================
Copyright 2022 The Gantari Project Authors (https://github.com/Lafontype/Gantari)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://openfontlicense.org
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/geistmono/OFL.txt
================================================
Copyright 2024 The Geist Project Authors (https://github.com/vercel/geist-font.git)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://openfontlicense.org
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/glory/OFL.txt
================================================
Copyright 2016-2020 The Glory Project Authors (https://github.com/googlefonts/glory)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://openfontlicense.org
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/gluten/OFL.txt
================================================
Copyright 2020 The Gluten Project Authors (https://github.com/Etcetera-Type-Co/Gluten)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/googlesanscode/OFL.txt
================================================
Copyright 2025 The Google Sans Code Project Authors (github.com/googlefonts/googlesans-code)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://openfontlicense.org
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/grenzegotisch/OFL.txt
================================================
Copyright 2020 The Grenze Gotisch Project Authors (https://github.com/Omnibus-Type/Grenze-Gotisch)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://openfontlicense.org
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/handjet/OFL.txt
================================================
Copyright 2018 The Handjet Project Authors (https://github.com/rosettatype/Handjet/)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://openfontlicense.org
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/heebo/OFL.txt
================================================
Copyright 2014 The Heebo Project Authors (https://github.com/OdedEzer/heebo)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/hostgrotesk/OFL.txt
================================================
Copyright 2023 The Host Grotesk Project Authors (https://github.com/Element-Type/HostGrotesk)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://openfontlicense.org
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/imbue/OFL.txt
================================================
Copyright 2011 The Andada Pro Project Authors (https://github.com/huertatipografica/Andada)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/inclusivesans/OFL.txt
================================================
Copyright 2022 The Inclusive Sans Project Authors (https://github.com/LivKing/Inclusive-Sans)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://openfontlicense.org
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/instrumentsans/OFL.txt
================================================
Copyright 2011 The Andada Pro Project Authors (https://github.com/huertatipografica/Andada)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/jetbrainsmono/OFL.txt
================================================
Copyright 2020 The JetBrains Mono Project Authors (https://github.com/JetBrains/JetBrainsMono)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/jura/OFL.txt
================================================
Copyright 2019 The Jura Project Authors (https://github.com/ossobuffo/jura)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/kalnia/OFL.txt
================================================
Copyright 2022 The Kalnia Project Authors (https://github.com/fridamedrano/Kalnia-Typeface.git)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://openfontlicense.org
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/karla/OFL.txt
================================================
Copyright 2019 The Karla Project Authors (https://github.com/googlefonts/karla)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/kreon/OFL.txt
================================================
Copyright 2018 The Kreon Project Authors (https://github.com/googlefonts/kreon), with Reserved Font Name "Kreon".
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://openfontlicense.org
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/kumbhsans/OFL.txt
================================================
Copyright 2020 The KumbhSans Project Authors (https://github.com/xconsau/KumbhSans)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://openfontlicense.org
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/labrada/OFL.txt
================================================
Copyright 2011 The Andada Pro Project Authors (https://github.com/huertatipografica/Andada)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/leaguespartan/OFL.txt
================================================
Copyright 2020 The League Spartan Project Authors (https://github.com/theleagueof/league-spartan)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://openfontlicense.org
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/lemonada/OFL.txt
================================================
Copyright 2011 The Lemonada Project Authors (https://github.com/Gue3bara/Lemonada)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/lexend/OFL.txt
================================================
Copyright 2011 The Lemonada Project Authors (https://github.com/Gue3bara/Lemonada)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/lexenddeca/OFL.txt
================================================
Copyright 2018 The Lexend Project Authors (https://github.com/googlefonts/lexend), with Reserved Font Name “RevReading Lexend”.
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://openfontlicense.org
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/librefranklin/OFL.txt
================================================
Copyright 2020 The LibreFranklin Project Authors (https://github.com/impallari/Libre-Franklin)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/lora/OFL.txt
================================================
Copyright 2011 The Lora Project Authors (https://github.com/cyrealtype/Lora-Cyrillic), with Reserved Font Name "Lora".
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/manrope/OFL.txt
================================================
Copyright 2018 The Manrope Project Authors (https://github.com/sharanda/manrope)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/manuale/OFL.txt
================================================
Copyright 2019 The Manuale Project Authors (https://github.com/Omnibus-Type/Manuale)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/mavenpro/OFL.txt
================================================
Copyright 2018 The Manrope Project Authors (https://github.com/sharanda/manrope)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/merriweathersans/OFL.txt
================================================
Copyright 2019 The Merriweather Project Authors (https://github.com/SorkinType/Merriweather-Sans)
with Reserved Font Name 'Merriweather'
Merriweather is a trademark of Sorkin Type Co.
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/montserrat/OFL.txt
================================================
Copyright 2011 The Montserrat Project Authors (https://github.com/JulietaUla/Montserrat)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/mulish/OFL.txt
================================================
Copyright 2016 The Mulish Project Authors (https://github.com/googlefonts/mulish)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://openfontlicense.org
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/nunito/OFL.txt
================================================
Copyright 2014 The Nunito Project Authors (https://github.com/googlefonts/nunito)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/orbitron/OFL.txt
================================================
Copyright 2016 The Oswald Project Authors (https://github.com/googlefonts/OswaldFont)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/oswald/OFL.txt
================================================
Copyright 2016 The Oswald Project Authors (https://github.com/googlefonts/OswaldFont)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/outfit/OFL.txt
================================================
Copyright 2021 The Outfit Project Authors (https://github.com/Outfitio/Outfit-Fonts)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://openfontlicense.org
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/oxanium/OFL.txt
================================================
Copyright 2019 The Oxanium Project Authors (https://github.com/sevmeyer/oxanium)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://openfontlicense.org
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/parkinsans/OFL.txt
================================================
Copyright 2024 The Parkinsans Project Authors (https://github.com/redstonedesign/parkinsans)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://openfontlicense.org
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/petrona/OFL.txt
================================================
Copyright 2019 The Petrona Project Authors (https://github.com/RingoSeeber/Petrona)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/playfairdisplay/OFL.txt
================================================
Copyright 2017 The Playfair Display Project Authors (https://github.com/clauseggers/Playfair-Display), with Reserved Font Name "Playfair Display"
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/playwriteusmodern/OFL.txt
================================================
Copyright 2023 The Playwrite Project Authors (https://github.com/TypeTogether/Playwrite)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://openfontlicense.org
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/playwriteustrad/OFL.txt
================================================
Copyright 2023 The Playwrite Project Authors (https://github.com/TypeTogether/Playwrite)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://openfontlicense.org
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/plusjakartasans/OFL.txt
================================================
Copyright 2017 The Playfair Display Project Authors (https://github.com/clauseggers/Playfair-Display), with Reserved Font Name "Playfair Display"
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/pontanosans/OFL.txt
================================================
Copyright 2012 The Pontano Sans Project Authors (https://github.com/googlefonts/PontanoSansFont)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://openfontlicense.org
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/publicsans/OFL.txt
================================================
Copyright (c) 2015, Pablo Impallari, Rodrigo Fuenzalida (Modified by Dan O. Williams and USWDS) (https://github.com/uswds/public-sans)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/quicksand/OFL.txt
================================================
Copyright 2011 The Quicksand Project Authors (https://github.com/andrew-paglinawan/QuicksandFamily), with Reserved Font Name “Quicksand”.
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/radiocanadabig/OFL.txt
================================================
Copyright 2022 The Radio Canada Big Project Authors (https://github.com/googlefonts/radiocanadadisplay)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://openfontlicense.org
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/raleway/OFL.txt
================================================
Copyright 2010 The Raleway Project Authors (impallari@gmail.com), with Reserved Font Name "Raleway".
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/redhatdisplay/OFL.txt
================================================
Copyright 2021 The Red Hat Project Authors (https://github.com/RedHatOfficial/RedHatFont)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/redhatmono/OFL.txt
================================================
Copyright 2021 The Red Hat Project Authors (https://github.com/RedHatOfficial/RedHatFont)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/redhattext/OFL.txt
================================================
Copyright 2024 The Red Hat Project Authors (https://github.com/RedHatOfficial/RedHatFont)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://openfontlicense.org
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/redrose/OFL.txt
================================================
Copyright 2018 The Red Rose Project Authors (https://github.com/magictype/redrose)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://openfontlicense.org
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/rem/OFL.txt
================================================
Copyright 2019 The REM Project Authors (https://github.com/octaviopardo/REM)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://openfontlicense.org
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/robotoflex/LICENSE.txt
================================================
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.
"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation
source, and configuration files.
"Object" form shall mean any form resulting from mechanical
transformation or translation of a Source form, including but
not limited to compiled object code, generated documentation,
and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or
Object form, made available under the License, as indicated by a
copyright notice that is included in or attached to the work
(an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object
form, that is based on (or derived from) the Work and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including
the original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright owner
or by an individual or Legal Entity authorized to submit on behalf of
the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity
on behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the
Work and such Derivative Works in Source or Object form.
3. Grant of Patent License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made,
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You
institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate
as of the date such litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the
Work or Derivative Works thereof in any medium, with or without
modifications, and in Source or Object form, provided that You
meet the following conditions:
(a) You must give any other recipients of the Work or
Derivative Works a copy of this License; and
(b) You must cause any modified files to carry prominent notices
stating that You changed the files; and
(c) You must retain, in the Source form of any Derivative Works
that You distribute, all copyright, patent, trademark, and
attribution notices from the Source form of the Work,
excluding those notices that do not pertain to any part of
the Derivative Works; and
(d) If the Work includes a "NOTICE" text file as part of its
distribution, then any Derivative Works that You distribute must
include a readable copy of the attribution notices contained
within such NOTICE file, excluding those notices that do not
pertain to any part of the Derivative Works, in at least one
of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or,
within a display generated by the Derivative Works, if and
wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and
do not modify the License. You may add Your own attribution
notices within Derivative Works that You distribute, alongside
or as an addendum to the NOTICE text from the Work, provided
that such additional attribution notices cannot be construed
as modifying the License.
You may add Your own copyright statement to Your modifications and
may provide additional or different license terms and conditions
for use, reproduction, or distribution of Your modifications, or
for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with
the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or conditions
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any
risks associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory,
whether in tort (including negligence), contract, or otherwise,
unless required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
has been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability. While redistributing
the Work or Derivative Works thereof, You may choose to offer,
and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this
License. However, in accepting such obligations, You may act only
on Your own behalf and on Your sole responsibility, not on behalf
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.
END OF TERMS AND CONDITIONS
APPENDIX: How to apply the Apache License to your work.
To apply the Apache License to your work, attach the following
boilerplate notice, with the fields enclosed by brackets "[]"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
file or class name and description of purpose be included on the
same "printed page" as the copyright notice for easier
identification within third-party archives.
Copyright [yyyy] [name of copyright owner]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/robotoslab/LICENSE.txt
================================================
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.
"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation
source, and configuration files.
"Object" form shall mean any form resulting from mechanical
transformation or translation of a Source form, including but
not limited to compiled object code, generated documentation,
and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or
Object form, made available under the License, as indicated by a
copyright notice that is included in or attached to the work
(an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object
form, that is based on (or derived from) the Work and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including
the original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright owner
or by an individual or Legal Entity authorized to submit on behalf of
the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity
on behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the
Work and such Derivative Works in Source or Object form.
3. Grant of Patent License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made,
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You
institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate
as of the date such litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the
Work or Derivative Works thereof in any medium, with or without
modifications, and in Source or Object form, provided that You
meet the following conditions:
(a) You must give any other recipients of the Work or
Derivative Works a copy of this License; and
(b) You must cause any modified files to carry prominent notices
stating that You changed the files; and
(c) You must retain, in the Source form of any Derivative Works
that You distribute, all copyright, patent, trademark, and
attribution notices from the Source form of the Work,
excluding those notices that do not pertain to any part of
the Derivative Works; and
(d) If the Work includes a "NOTICE" text file as part of its
distribution, then any Derivative Works that You distribute must
include a readable copy of the attribution notices contained
within such NOTICE file, excluding those notices that do not
pertain to any part of the Derivative Works, in at least one
of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or,
within a display generated by the Derivative Works, if and
wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and
do not modify the License. You may add Your own attribution
notices within Derivative Works that You distribute, alongside
or as an addendum to the NOTICE text from the Work, provided
that such additional attribution notices cannot be construed
as modifying the License.
You may add Your own copyright statement to Your modifications and
may provide additional or different license terms and conditions
for use, reproduction, or distribution of Your modifications, or
for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with
the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or conditions
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any
risks associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory,
whether in tort (including negligence), contract, or otherwise,
unless required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
has been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability. While redistributing
the Work or Derivative Works thereof, You may choose to offer,
and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this
License. However, in accepting such obligations, You may act only
on Your own behalf and on Your sole responsibility, not on behalf
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.
END OF TERMS AND CONDITIONS
APPENDIX: How to apply the Apache License to your work.
To apply the Apache License to your work, attach the following
boilerplate notice, with the fields enclosed by brackets "[]"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
file or class name and description of purpose be included on the
same "printed page" as the copyright notice for easier
identification within third-party archives.
Copyright [yyyy] [name of copyright owner]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/rokkitt/OFL.txt
================================================
Copyright 2011 The Andada Pro Project Authors (https://github.com/huertatipografica/Andada)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/rubik/OFL.txt
================================================
Copyright 2015 The Rubik Project Authors (https://github.com/googlefonts/rubik)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/ruda/OFL.txt
================================================
Copyright 2019 The Ruda Project Authors (https://github.com/marmonsalve/Ruda-new)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/smoochsans/OFL.txt
================================================
Copyright 2016 The Smooch Sans Project Authors (https://github.com/googlefonts/smooch-sans)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://openfontlicense.org
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/sora/OFL.txt
================================================
Copyright 2019 The Sora Project Authors (https://github.com/sora-xor/sora-font)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://openfontlicense.org
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/sourcecodepro/OFL.txt
================================================
Copyright 2010, 2012 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name 'Source'. All Rights Reserved. Source is a trademark of Adobe Systems Incorporated in the United States and/or other countries.
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/spartan/OFL.txt
================================================
Copyright 2020 The Spartan Project Authors (https://github.com/bghryct/Spartan-MB)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/sticknobills/OFL.txt
================================================
Copyright 2021 The Stick No Bills Project Authors (https://github.com/mooniak/stick-no-bills-font)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://openfontlicense.org
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/susemono/OFL.txt
================================================
Copyright 2025 The SUSE Project Authors (https://github.com/SUSE/suse-font)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://openfontlicense.org
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/teachers/OFL.txt
================================================
Copyright 2023 The Teachers Project Authors (https://github.com/chankfonts/Teachers-fonts)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://openfontlicense.org
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/tektur/OFL.txt
================================================
Copyright 2023 The Tektur Project Authors (https://www.github.com/hyvyys/Tektur)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://openfontlicense.org
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/tourney/OFL.txt
================================================
Copyright 2020 The Tourney Project Authors (https://github.com/Etcetera-Type-Co/Tourney)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://openfontlicense.org
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/urbanist/OFL.txt
================================================
Copyright 2021 The Urbanist Project Authors (https://github.com/coreyhu/Urbanist)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/varta/OFL.txt
================================================
Copyright 2019 The Varta Project Authors (https://github.com/SorkinType/Varta)
Varta is a trademark of Sorkin Type Co.
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://openfontlicense.org
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/victormono/OFL.txt
================================================
Copyright 2023 The Victor Mono Project Authors (https://github.com/rubjo/victor-mono-font)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://openfontlicense.org
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/wixmadefortext/OFL.txt
================================================
Copyright 2023 The Wix Madefor Project Authors (https://github.com/wix/wixmadefor)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://openfontlicense.org
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/workbench/OFL.txt
================================================
Copyright 2021 The Workbench Project Authors (https://github.com/jenskutilek/homecomputer-fonts)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://openfontlicense.org
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/worksans/OFL.txt
================================================
Copyright 2010 The Yanone Kaffeesatz Project Authors (https://github.com/alexeiva/yanone-kaffeesatz)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/yanonekaffeesatz/OFL.txt
================================================
Copyright 2010 The Yanone Kaffeesatz Project Authors (https://github.com/alexeiva/yanone-kaffeesatz)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/yrsa/OFL.txt
================================================
Copyright 2011 The Andada Pro Project Authors (https://github.com/huertatipografica/Andada)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/zalandosans/OFL.txt
================================================
Copyright 2025 The Zalando Sans Project Authors (https://github.com/zalando/sans), with Reserved Font Name “Zalando”
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://openfontlicense.org
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/dynamic/fonts/zalandosansexpanded/OFL.txt
================================================
Copyright 2025 The Zalando Sans Project Authors (https://github.com/zalando/sans), with Reserved Font Name “Zalando”
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://openfontlicense.org
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
================================================
FILE: app/default-files/default-themes/simple/assets/js/scripts.js
================================================
// Sticky header position on page scrolling up
const header = document.querySelector('.js-header');
const stickyClass = 'sticky';
let lastScrollTop = 0;
let isWaiting = false;
window.addEventListener('scroll', () => {
if (!isWaiting) {
window.requestAnimationFrame(() => {
let currentScroll = window.scrollY || window.pageYOffset || document.documentElement.scrollTop;
if (currentScroll > lastScrollTop) {
header.classList.remove(stickyClass);
} else if (currentScroll < lastScrollTop && currentScroll > 0) {
header.classList.add(stickyClass);
} else if (currentScroll <= 0) {
header.classList.remove(stickyClass);
}
lastScrollTop = currentScroll;
isWaiting = false;
});
isWaiting = true;
}
}, false);
// Dropdown menu
(function (menuConfig) {
/**
* Merge default config with the theme overrided ones
*/
var defaultConfig = {
// behaviour
mobileMenuMode: 'overlay',
animationSpeed: 300,
submenuWidth: 300,
doubleClickTime: 500,
mobileMenuExpandableSubmenus: false,
isHoverMenu: true,
// selectors
wrapperSelector: '.navbar',
buttonSelector: '.navbar__toggle',
menuSelector: '.navbar__menu',
submenuSelector: '.navbar__submenu',
mobileMenuSidebarLogoSelector: null,
mobileMenuSidebarLogoUrl: null,
relatedContainerForOverlayMenuSelector: null,
// attributes
ariaButtonAttribute: 'aria-haspopup',
// CSS classes
separatorItemClass: 'is-separator',
parentItemClass: 'has-submenu',
submenuLeftPositionClass: 'is-left-submenu',
submenuRightPositionClass: 'is-right-submenu',
mobileMenuOverlayClass: 'navbar_mobile_overlay',
mobileMenuSubmenuWrapperClass: 'navbar__submenu_wrapper',
mobileMenuSidebarClass: 'navbar_mobile_sidebar',
mobileMenuSidebarOverlayClass: 'navbar_mobile_sidebar__overlay',
hiddenElementClass: 'is-hidden',
openedMenuClass: 'is-active',
noScrollClass: 'no-scroll',
relatedContainerForOverlayMenuClass: 'is-visible'
};
var config = {};
Object.keys(defaultConfig).forEach(function (key) {
config[key] = defaultConfig[key];
});
if (typeof menuConfig === 'object') {
Object.keys(menuConfig).forEach(function (key) {
config[key] = menuConfig[key];
});
}
/**
* Menu initializer
*/
function init() {
if (!document.querySelectorAll(config.wrapperSelector).length) {
return;
}
initSubmenuPositions();
if (config.mobileMenuMode === 'overlay') {
initMobileMenuOverlay();
} else if (config.mobileMenuMode === 'sidebar') {
initMobileMenuSidebar();
}
initClosingMenuOnClickLink();
if (!config.isHoverMenu) {
initAriaAttributes();
}
};
/**
* Function responsible for the submenu positions
*/
function initSubmenuPositions() {
var submenuParents = document.querySelectorAll(config.wrapperSelector + ' .' + config.parentItemClass);
for (var i = 0; i < submenuParents.length; i++) {
var eventTrigger = config.isHoverMenu ? 'mouseenter' : 'click';
submenuParents[i].addEventListener(eventTrigger, function () {
var submenu = this.querySelector(config.submenuSelector);
var itemPosition = this.getBoundingClientRect().left;
var widthMultiplier = 2;
if (this.parentNode === document.querySelector(config.menuSelector)) {
widthMultiplier = 1;
}
if (config.submenuWidth !== 'auto') {
var submenuPotentialPosition = itemPosition + (config.submenuWidth * widthMultiplier);
if (window.innerWidth < submenuPotentialPosition) {
submenu.classList.remove(config.submenuLeftPositionClass);
submenu.classList.add(config.submenuRightPositionClass);
} else {
submenu.classList.remove(config.submenuRightPositionClass);
submenu.classList.add(config.submenuLeftPositionClass);
}
} else {
var submenuPotentialPosition = 0;
var submenuPosition = 0;
if (widthMultiplier === 1) {
submenuPotentialPosition = itemPosition + submenu.clientWidth;
} else {
submenuPotentialPosition = itemPosition + this.clientWidth + submenu.clientWidth;
}
if (window.innerWidth < submenuPotentialPosition) {
submenu.classList.remove(config.submenuLeftPositionClass);
submenu.classList.add(config.submenuRightPositionClass);
submenuPosition = -1 * submenu.clientWidth;
submenu.removeAttribute('style');
if (widthMultiplier === 1) {
submenuPosition = 0;
submenu.style.right = submenuPosition + 'px';
} else {
submenu.style.right = this.clientWidth + 'px';
}
} else {
submenu.classList.remove(config.submenuRightPositionClass);
submenu.classList.add(config.submenuLeftPositionClass);
submenuPosition = this.clientWidth;
if (widthMultiplier === 1) {
submenuPosition = 0;
}
submenu.removeAttribute('style');
submenu.style.left = submenuPosition + 'px';
}
}
submenu.setAttribute('aria-hidden', false);
});
if (config.isHoverMenu) {
submenuParents[i].addEventListener('mouseleave', function () {
var submenu = this.querySelector(config.submenuSelector);
submenu.removeAttribute('style');
submenu.setAttribute('aria-hidden', true);
});
}
}
}
/**
* Function used to init mobile menu - overlay mode
*/
function initMobileMenuOverlay() {
var menuWrapper = document.createElement('div');
menuWrapper.classList.add(config.mobileMenuOverlayClass);
menuWrapper.classList.add(config.hiddenElementClass);
var menuContentHTML = document.querySelector(config.menuSelector).outerHTML;
menuWrapper.innerHTML = menuContentHTML;
document.body.appendChild(menuWrapper);
// Init toggle submenus
if (config.mobileMenuExpandableSubmenus) {
wrapSubmenusIntoContainer(menuWrapper);
initToggleSubmenu(menuWrapper);
} else {
setAriaForSubmenus(menuWrapper);
}
// Init button events
var button = document.querySelector(config.buttonSelector);
button.addEventListener('click', function () {
var relatedContainer = document.querySelector(config.relatedContainerForOverlayMenuSelector);
menuWrapper.classList.toggle(config.hiddenElementClass);
button.classList.toggle(config.openedMenuClass);
button.setAttribute(config.ariaButtonAttribute, button.classList.contains(config.openedMenuClass));
if (button.classList.contains(config.openedMenuClass)) {
document.documentElement.classList.add(config.noScrollClass);
if (relatedContainer) {
relatedContainer.classList.add(config.relatedContainerForOverlayMenuClass);
}
} else {
document.documentElement.classList.remove(config.noScrollClass);
if (relatedContainer) {
relatedContainer.classList.remove(config.relatedContainerForOverlayMenuClass);
}
}
});
}
/**
* Function used to init mobile menu - sidebar mode
*/
function initMobileMenuSidebar() {
// Create menu structure
var menuWrapper = document.createElement('div');
menuWrapper.classList.add(config.mobileMenuSidebarClass);
menuWrapper.classList.add(config.hiddenElementClass);
var menuContentHTML = '';
if (config.mobileMenuSidebarLogoSelector !== null) {
menuContentHTML = document.querySelector(config.mobileMenuSidebarLogoSelector).outerHTML;
} else if (config.mobileMenuSidebarLogoUrl !== null) {
menuContentHTML = '
';
}
menuContentHTML += document.querySelector(config.menuSelector).outerHTML;
menuWrapper.innerHTML = menuContentHTML;
var menuOverlay = document.createElement('div');
menuOverlay.classList.add(config.mobileMenuSidebarOverlayClass);
menuOverlay.classList.add(config.hiddenElementClass);
document.body.appendChild(menuOverlay);
document.body.appendChild(menuWrapper);
// Init toggle submenus
if (config.mobileMenuExpandableSubmenus) {
wrapSubmenusIntoContainer(menuWrapper);
initToggleSubmenu(menuWrapper);
} else {
setAriaForSubmenus(menuWrapper);
}
// Menu events
menuWrapper.addEventListener('click', function (e) {
e.stopPropagation();
});
menuOverlay.addEventListener('click', function () {
menuWrapper.classList.add(config.hiddenElementClass);
menuOverlay.classList.add(config.hiddenElementClass);
button.classList.remove(config.openedMenuClass);
button.setAttribute(config.ariaButtonAttribute, false);
document.documentElement.classList.remove(config.noScrollClass);
});
// Init button events
var button = document.querySelector(config.buttonSelector);
button.addEventListener('click', function () {
menuWrapper.classList.toggle(config.hiddenElementClass);
menuOverlay.classList.toggle(config.hiddenElementClass);
button.classList.toggle(config.openedMenuClass);
button.setAttribute(config.ariaButtonAttribute, button.classList.contains(config.openedMenuClass));
document.documentElement.classList.toggle(config.noScrollClass);
});
}
/**
* Set aria-hidden="false" for submenus
*/
function setAriaForSubmenus(menuWrapper) {
var submenus = menuWrapper.querySelectorAll(config.submenuSelector);
for (var i = 0; i < submenus.length; i++) {
submenus[i].setAttribute('aria-hidden', false);
}
}
/**
* Wrap all submenus into div wrappers
*/
function wrapSubmenusIntoContainer(menuWrapper) {
var submenus = menuWrapper.querySelectorAll(config.submenuSelector);
for (var i = 0; i < submenus.length; i++) {
var submenuWrapper = document.createElement('div');
submenuWrapper.classList.add(config.mobileMenuSubmenuWrapperClass);
submenus[i].parentNode.insertBefore(submenuWrapper, submenus[i]);
submenuWrapper.appendChild(submenus[i]);
}
}
/**
* Initialize submenu toggle events
*/
function initToggleSubmenu(menuWrapper) {
// Init parent menu item events
var parents = menuWrapper.querySelectorAll('.' + config.parentItemClass);
for (var i = 0; i < parents.length; i++) {
// Add toggle events
parents[i].addEventListener('click', function (e) {
e.stopPropagation();
var submenu = this.querySelector('.' + config.mobileMenuSubmenuWrapperClass);
var content = submenu.firstElementChild;
if (submenu.classList.contains(config.openedMenuClass)) {
var height = content.clientHeight;
submenu.style.height = height + 'px';
setTimeout(function () {
submenu.style.height = '0px';
}, 0);
setTimeout(function () {
submenu.removeAttribute('style');
submenu.classList.remove(config.openedMenuClass);
}, config.animationSpeed);
content.setAttribute('aria-hidden', true);
content.parentNode.firstElementChild.setAttribute('aria-expanded', false);
} else {
var height = content.clientHeight;
submenu.classList.add(config.openedMenuClass);
submenu.style.height = '0px';
setTimeout(function () {
submenu.style.height = height + 'px';
}, 0);
setTimeout(function () {
submenu.removeAttribute('style');
}, config.animationSpeed);
content.setAttribute('aria-hidden', false);
content.parentNode.firstElementChild.setAttribute('aria-expanded', true);
}
});
// Block links
var childNodes = parents[i].children;
for (var j = 0; j < childNodes.length; j++) {
if (childNodes[j].tagName === 'A') {
childNodes[j].addEventListener('click', function (e) {
var lastClick = parseInt(this.getAttribute('data-last-click'), 10);
var currentTime = +new Date();
if (isNaN(lastClick)) {
e.preventDefault();
this.setAttribute('data-last-click', currentTime);
} else if (lastClick + config.doubleClickTime <= currentTime) {
e.preventDefault();
this.setAttribute('data-last-click', currentTime);
} else if (lastClick + config.doubleClickTime > currentTime) {
e.stopPropagation();
closeMenu(this, true);
}
});
}
}
}
}
/**
* Set aria-* attributes according to the current activity state
*/
function initAriaAttributes() {
var allAriaElements = document.querySelectorAll(config.wrapperSelector + ' ' + '*[aria-hidden]');
for (var i = 0; i < allAriaElements.length; i++) {
var ariaElement = allAriaElements[i];
if (
ariaElement.parentNode.classList.contains('active') ||
ariaElement.parentNode.classList.contains('active-parent')
) {
ariaElement.setAttribute('aria-hidden', 'false');
ariaElement.parentNode.firstElementChild.setAttribute('aria-expanded', true);
} else {
ariaElement.setAttribute('aria-hidden', 'true');
ariaElement.parentNode.firstElementChild.setAttribute('aria-expanded', false);
}
}
}
/**
* Close menu on click link
*/
function initClosingMenuOnClickLink() {
var links = document.querySelectorAll(config.menuSelector + ' a');
for (var i = 0; i < links.length; i++) {
if (links[i].parentNode.classList.contains(config.parentItemClass)) {
continue;
}
links[i].addEventListener('click', function (e) {
closeMenu(this, false);
});
}
}
/**
* Close menu
*/
function closeMenu(clickedLink, forceClose) {
if (forceClose === false) {
if (clickedLink.parentNode.classList.contains(config.parentItemClass)) {
return;
}
}
var relatedContainer = document.querySelector(config.relatedContainerForOverlayMenuSelector);
var button = document.querySelector(config.buttonSelector);
var menuWrapper = document.querySelector('.' + config.mobileMenuOverlayClass);
if (!menuWrapper) {
menuWrapper = document.querySelector('.' + config.mobileMenuSidebarClass);
}
menuWrapper.classList.add(config.hiddenElementClass);
button.classList.remove(config.openedMenuClass);
button.setAttribute(config.ariaButtonAttribute, false);
document.documentElement.classList.remove(config.noScrollClass);
if (relatedContainer) {
relatedContainer.classList.remove(config.relatedContainerForOverlayMenuClass);
}
var menuOverlay = document.querySelector('.' + config.mobileMenuSidebarOverlayClass);
if (menuOverlay) {
menuOverlay.classList.add(config.hiddenElementClass);
}
}
/**
* Run menu scripts
*/
init();
})(window.publiiThemeMenuConfig);
// Load search input area
const searchButton = document.querySelector('.js-search-btn');
const searchOverlay = document.querySelector('.js-search-overlay');
if (searchButton && searchOverlay) {
searchButton.addEventListener('click', (event) => {
event.stopPropagation();
searchOverlay.classList.toggle('expanded');
if (searchOverlay.classList.contains('expanded')) {
setTimeout(() => {
const element = searchOverlay.querySelector('input, button');
if (element) {
element.focus();
}
}, 60);
}
});
searchOverlay.addEventListener('click', (event) => {
event.stopPropagation();
});
document.body.addEventListener('click', () => {
searchOverlay.classList.remove('expanded');
});
}
// Share buttons pop-up
(function () {
// share popup
const shareButton = document.querySelector('.js-content__share-button');
const sharePopup = document.querySelector('.js-content__share-popup');
if (shareButton && sharePopup) {
sharePopup.addEventListener('click', function (e) {
e.stopPropagation();
});
shareButton.addEventListener('click', function (e) {
e.preventDefault();
e.stopPropagation();
sharePopup.classList.toggle('is-visible');
});
document.body.addEventListener('click', function () {
sharePopup.classList.remove('is-visible');
});
}
// link selector and pop-up window size
const Config = {
Link: ".js-share",
Width: 500,
Height: 500
};
// add handler to links
const shareLinks = document.querySelectorAll(Config.Link);
shareLinks.forEach(link => {
link.addEventListener('click', PopupHandler);
});
// create popup
function PopupHandler(e) {
e.preventDefault();
const target = e.target.closest(Config.Link);
if (!target) return;
// hide share popup
if (sharePopup) {
sharePopup.classList.remove('is-visible');
}
// popup position
const px = Math.floor((window.innerWidth - Config.Width) / 2);
const py = Math.floor((window.innerHeight - Config.Height) / 2);
// open popup
const linkHref = target.href;
const popup = window.open(linkHref, "social", `
width=${Config.Width},
height=${Config.Height},
left=${px},
top=${py},
location=0,
menubar=0,
toolbar=0,
status=0,
scrollbars=1,
resizable=1
`);
if (popup) {
popup.focus();
}
}
})();
// Back to top
document.addEventListener('DOMContentLoaded', () => {
const backToTopButton = document.getElementById('backToTop');
if (backToTopButton) {
const backToTopScrollFunction = () => {
if (document.body.scrollTop > 400 || document.documentElement.scrollTop > 400) {
backToTopButton.classList.add('is-visible');
} else {
backToTopButton.classList.remove('is-visible');
}
};
const backToTopFunction = () => {
window.scrollTo({
top: 0,
behavior: 'smooth'
});
};
window.addEventListener('scroll', backToTopScrollFunction);
backToTopButton.addEventListener('click', backToTopFunction);
}
});
// Responsive embeds script
(function () {
let wrappers = document.querySelectorAll('.post__video, .post__iframe');
for (let i = 0; i < wrappers.length; i++) {
let embed = wrappers[i].querySelector('iframe, embed, video, object');
if (!embed) {
continue;
}
if (embed.getAttribute('data-responsive') === 'false') {
continue;
}
let w = embed.getAttribute('width');
let h = embed.getAttribute('height');
let ratio = false;
if (!w || !h) {
continue;
}
if (w.indexOf('%') > -1 && h.indexOf('%') > -1) { // percentage mode
w = parseFloat(w.replace('%', ''));
h = parseFloat(h.replace('%', ''));
ratio = h / w;
} else if (w.indexOf('%') === -1 && h.indexOf('%') === -1) { // pixels mode
w = parseInt(w, 10);
h = parseInt(h, 10);
ratio = h / w;
}
if (ratio !== false) {
let ratioValue = (ratio * 100) + '%';
wrappers[i].setAttribute('style', '--embed-aspect-ratio:' + ratioValue);
}
}
})();
================================================
FILE: app/default-files/default-themes/simple/assets/js/svg-fix.js
================================================
// SVG map fix
(function() {
var allItems = document.querySelectorAll('use');
for (var i = 0; i < allItems.length; i++) {
var item = allItems[i];
var anchor = '#' + item.getAttribute('xlink:href').split('#')[1];
var itemData = window.publiiSvgFix[anchor];
if(!itemData) {
console.log('ANCHOR', anchor, i);
continue;
}
var svgItem = item.parentNode;
svgItem.innerHTML = itemData.content;
svgItem.setAttribute('viewBox', itemData.viewbox);
}
})();
================================================
FILE: app/default-files/default-themes/simple/assets/js/svg-map.js
================================================
window.publiiSvgFix = {
"#search": {
"viewbox": "0 0 24 24",
"content": ""
},
"#share": {
"viewbox": "0 0 24 24",
"content": ""
},
"#arrow-prev": {
"viewbox": "0 0 24 24",
"content": ""
},
"#arrow-next": {
"viewbox": "0 0 24 24",
"content": ""
},
"#toparrow": {
"viewbox": "0 0 24 24",
"content": ""
},
"#website": {
"viewbox": "0 0 24 24",
"content": ""
},
"#facebook": {
"viewbox": "0 0 32 32",
"content": ""
},
"#twitter": {
"viewbox": "0 0 24 24",
"content": ""
},
"#instagram": {
"viewbox": "0 0 32 32",
"content": ""
},
"#linkedin": {
"viewbox": "0 0 34.48 32",
"content": ""
},
"#vimeo": {
"viewbox": "0 0 24.999 20.159",
"content": ""
},
"#youtube": {
"viewbox": "0 0 32 22.507",
"content": ""
},
"#pinterest": {
"viewbox": "0 0 32 32",
"content": ""
},
"#mix": {
"viewbox": "0 0 32 32",
"content": ""
},
"#buffer": {
"viewbox": "0 0 32 32",
"content": ""
},
"#whatsapp": {
"viewbox": "0 0 32 32",
"content": ""
}
};
================================================
FILE: app/default-files/default-themes/simple/author.hbs
================================================
{{> head}}
{{> navbar}}
{{#author}}
{{#if authorViewConfig.displayAvatar}}
{{#if avatar}}

{{/if}}
{{/if}}
{{name}}
{{#if authorViewConfig.displayPostCounter}}({{postsNumber}}){{/if}}
{{#if authorViewConfig.displayDescription}}
{{#if description}}
{{{description}}}
{{/if}}
{{/if}}
{{#if authorViewConfig.displayWebsite}}
{{#if website}}
{{/if}}
{{/if}}
{{#if authorViewConfig.displayFeaturedImage}}
{{#featuredImage}}
{{#if url}}
{{#checkIfAny caption credits}}
{{caption}}
{{credits}}
{{/checkIfAny}}
{{/if}}
{{/featuredImage}}
{{/if}}
{{#if authorViewConfig.displayPostList}}
{{#each ../posts}}
{{#if @config.custom.feedFeaturedImage}}
{{#featuredImage}}
{{#if url}}
{{/if}}
{{/featuredImage}}
{{/if}}
{{#checkIfAny @config.custom.feedAvatar @config.custom.feedAuthor @config.custom.feedDate}}
{{/checkIfAny}}
{{#if hasCustomExcerpt}}
{{{ excerpt }}}
{{else}}
{{{ excerpt }}}
{{/if}}
{{#if @config.custom.feedtReadMore}}
{{ translate 'post.readMore' }}
{{/if}}
{{/each}}
{{> pagination}}
{{/if}}
{{/author}}
{{> footer}}
================================================
FILE: app/default-files/default-themes/simple/computed-options.js
================================================
module.exports = function (themeConfig) {
const fontParams = {
'albertsans': { hasItalic: true },
'adventpro': { hasItalic: true },
'aleo': { hasItalic: true },
'andadapro': { hasItalic: true },
'antonio': { hasItalic: false },
'archivonarrow': { hasItalic: true },
'asap': { hasItalic: true },
'assistant': { hasItalic: false },
'besley': { hasItalic: true },
'bitter': { hasItalic: true },
'bitcount': { hasItalic: false },
'bodonimoda': { hasItalic: true },
'brygada1918': { hasItalic: true },
'cabin': { hasItalic: true },
'cairo': { hasItalic: false },
'cinzel': { hasItalic: false },
'comfortaa': { hasItalic: false },
'comme': { hasItalic: false },
'dancingscript': { hasItalic: false },
'danfo': { hasItalic: false },
'dmsans': { hasItalic: true },
'domine': { hasItalic: false },
'dosis': { hasItalic: false },
'doto': { hasItalic: false },
'dynapuff': { hasItalic: false },
'exo': { hasItalic: true },
'familjengrotesk': { hasItalic: true },
'faustina': { hasItalic: true },
'figtree': { hasItalic: true },
'finlandica': { hasItalic: true },
'frankruhllibre': { hasItalic: false },
'fredoka': { hasItalic: false },
'funneldisplay': { hasItalic: false },
'gantari': { hasItalic: true },
'geistmono': { hasItalic: false },
'glory': { hasItalic: true },
'gluten': { hasItalic: false },
'googlesanscode': { hasItalic: true },
'grenzegotisch': { hasItalic: false },
'handjet': { hasItalic: false },
'heebo': { hasItalic: false },
'hostgrotesk': { hasItalic: true },
'imbue': { hasItalic: false },
'inclusivesans': { hasItalic: true },
'instrumentsans': { hasItalic: true },
'jetbrainsmono': { hasItalic: true },
'jura': { hasItalic: false },
'kalnia': { hasItalic: false },
'karla': { hasItalic: true },
'kreon': { hasItalic: false },
'kumbhsans': { hasItalic: false },
'labrada': { hasItalic: true },
'leaguespartan': { hasItalic: false },
'lemonada': { hasItalic: false },
'lexend': { hasItalic: false },
'lexenddeca': { hasItalic: false },
'librefranklin': { hasItalic: true },
'lora': { hasItalic: true },
'manuale': { hasItalic: true },
'manrope': { hasItalic: false },
'mavenpro': { hasItalic: false },
'merriweathersans': { hasItalic: true },
'montserrat': { hasItalic: true },
'mulish': { hasItalic: true },
'nunito': { hasItalic: true },
'orbitron': { hasItalic: false },
'oswald': { hasItalic: false },
'outfit': { hasItalic: false },
'oxanium': { hasItalic: false },
'parkinsans': { hasItalic: false },
'petrona': { hasItalic: true },
'playfairdisplay': { hasItalic: true },
'playwriteusmodern': { hasItalic: false },
'playwriteustrad': { hasItalic: false },
'plusjakartasans': { hasItalic: true },
'pontanosans': { hasItalic: false },
'publicsans': { hasItalic: true },
'quicksand': { hasItalic: false },
'radiocanadabig': { hasItalic: true },
'raleway': { hasItalic: true },
'redhatdisplay': { hasItalic: true },
'redhatmono': { hasItalic: true },
'redhattext': { hasItalic: true },
'redrose': { hasItalic: false },
'rem': { hasItalic: true },
'robotoflex': { hasItalic: false },
'robotoslab': { hasItalic: false },
'rokkitt': { hasItalic: true },
'rubik': { hasItalic: true },
'ruda': { hasItalic: false },
'smoochsans': { hasItalic: false },
'sourcecodepro': { hasItalic: true },
'sora': { hasItalic: false },
'spartan': { hasItalic: false },
'sticknobills': { hasItalic: false },
'susemono': { hasItalic: true },
'system-ui': { hasItalic: false },
'teachers': { hasItalic: true },
'tektur': { hasItalic: false },
'tourney': { hasItalic: true },
'urbanist': { hasItalic: true },
'varta': { hasItalic: false },
'victormono': { hasItalic: true },
'wixmadefortext': { hasItalic: true },
'workbench': { hasItalic: false },
'worksans': { hasItalic: true },
'yanonekaffeesatz': { hasItalic: false },
'zalandosans': { hasItalic: true },
'zalandosansexpanded': { hasItalic: true },
'yrsa': { hasItalic: true }
};
let fontBody = themeConfig.customConfig.find(option => option.name === 'fontBody').value;
let fontHeadings = themeConfig.customConfig.find(option => option.name === 'fontHeadings').value;
let disableFontBodyItalic = themeConfig.customConfig.find(option => option.name === 'disableFontBodyItalic').value;
let disableFontHeadingsItalic = themeConfig.customConfig.find(option => option.name === 'disableFontHeadingsItalic').value;
return [
{
name: 'fontBodyItalic',
type: 'checkbox',
value: !disableFontBodyItalic && (fontParams[fontBody]?.hasItalic || false)
},
{
name: 'fontHeadingsItalic',
type: 'checkbox',
value: !disableFontHeadingsItalic && (fontParams[fontHeadings]?.hasItalic || false)
}
];
};
================================================
FILE: app/default-files/default-themes/simple/config.json
================================================
{
"name": "Simple",
"version": "3.2.1.0",
"author": "TidyCustoms ",
"menus": {
"mainMenu": {
"desc": "",
"name": "Main menu",
"maxLevels": -1
},
"footerMenu": {
"desc": "",
"name": "Footer menu",
"maxLevels": 1
}
},
"renderer": {
"relatedPostsNumber": 3,
"renderRelatedPosts": true,
"renderSimilarPosts": false,
"renderPrevNextPosts": true,
"createContentStructure": true,
"createTagPages": true,
"createAuthorPages": true,
"createTagsList": true,
"createSearchPage": false,
"create404page": true,
"customHTML": {
"afterPost": "After every post",
"afterPage": "After every page"
}
},
"supportedFeatures": {
"blockEditor": true,
"tagsList": true,
"tagPages": true,
"tagImages": true,
"authorPages": true,
"authorImages": true,
"searchPage": true,
"errorPage": true,
"customSharing": true,
"customSearch": true,
"customComments": true,
"embedConsents": true,
"pages": true,
"postsPage": true
},
"pageTemplates": {
"empty": "Empty container"
},
"config": [
{
"name": "postsPerPage",
"label": "Posts per page",
"value": 5,
"type": "number"
},
{
"name": "tagsPostsPerPage",
"label": "Tags posts per page",
"value": 5,
"type": "number"
},
{
"name": "authorsPostsPerPage",
"label": "Authors posts per page",
"value": 5,
"type": "number"
},
{
"name": "excerptLength",
"label": "Excerpt length",
"value": 45,
"type": "number"
},
{
"name": "logo",
"label": "Website logo",
"value": "",
"type": "upload",
"upload": true
}
],
"customConfig": [
{
"name": "pageMargin",
"label": "Page margin",
"group": "Layout",
"value": "6vw",
"type": "text"
},
{
"name": "pageWidth",
"label": "Page width",
"group": "Layout",
"note": "Defines the overall width of the page. This should always be greater than or equal to the Entry width to ensure proper layout. Set to 100% for full-screen width.",
"value": "66rem",
"type": "text"
},
{
"name": "entryWidth",
"label": "Entry width",
"group": "Layout",
"note": "Defines the width of content for posts and pages. Ensure that this value is smaller than or equal to the Page width for proper content display. Set to 100% for full-screen width.",
"value": "42rem",
"type": "text"
},
{
"name": "borderRadius",
"label": "Corner Roundness",
"group": "Layout",
"note": "Adjust the roundness of corners for elements like images, buttons or dropdown menus. Increasing this value (in pixels) will make the corners more rounded.",
"value": "3",
"type": "range",
"min": 0,
"max": 100,
"step": 1
},
{
"name": "baseline",
"label": "Baseline",
"group": "Layout",
"note": "Defines a core vertical rhythm unit for consistent spacing across the website, used as a multiplier for margins and paddings. Increasing this value enhances spacing, creating an airier layout, while decreasing it compacts content, for tighter visual appeal.",
"value": "0.28333rem",
"type": "text"
},
{
"name": "separator",
"type": "separator",
"label": "Hero section",
"group": "Layout",
"size": "big"
},
{
"name": "alignHero",
"label": "Content alignment",
"group": "Layout",
"value": "left",
"type": "radio",
"options": [
{
"label": "Left",
"value": "left"
},
{
"label": "Center",
"value": "center"
}
]
},
{
"name": "textHero",
"label": "Text",
"group": "Layout",
"value": "Discover My Blogging Journey: Adventures, Travels, and Hobbies!
Join me as I share captivating stories, travel experiences, and dive into the joys of my favorite hobbies.
Read more
",
"type": "wysiwyg"
},
{
"name": "heightHero",
"label": "Image height",
"group": "Layout",
"value": "50vh",
"type": "text"
},
{
"name": "uploadHero",
"label": "Image",
"group": "Layout",
"value": "",
"type": "upload",
"upload": true
},
{
"name": "uploadHeroAlt",
"label": "Image Alt text",
"group": "Layout",
"placeholder": "Add an alternative text to the hero image",
"value": "",
"type": "text"
},
{
"name": "uploadHeroCaption",
"label": "Image Caption",
"group": "Layout",
"placeholder": "Add text caption to the hero image",
"value": "",
"type": "text"
},
{
"name": "separator",
"type": "separator",
"label": "Post page",
"group": "Layout",
"size": "big"
},
{
"name": "relatedPostsNumber",
"label": "Related post",
"group": "Layout",
"note": "Specify number of related posts to show. Zero '0' means no posts.",
"value": "3",
"type": "number"
},
{
"name": "separator",
"type": "separator",
"label": "",
"group": "Post list",
"note": "This section lets you choose what shows up in your feed on the homepage, tags, and author pages. You can pick and choose which details to show, like author avatars, post dates, and other things.",
"size": "no-line"
},
{
"name": "alignFeed",
"label": "Content alignment",
"group": "Post list",
"value": "center",
"type": "radio",
"options": [
{
"label": "Left",
"value": "left"
},
{
"label": "Center",
"value": "center"
}
]
},
{
"name": "separator",
"type": "separator",
"label": "",
"group": "Post list",
"size": "small thin "
},
{
"name": "feedFeaturedImage",
"group": "Post list",
"label": "Show Featured Image",
"value": false,
"type": "checkbox"
},
{
"name": "feedFeaturedImageSize",
"label": "Image size",
"group": "Post list",
"note": "Adjust the size of the featured image in REM value.",
"value": "8",
"type": "range",
"min": 1,
"max": 50,
"step": 1,
"dependencies": [
{
"field": "feedFeaturedImage",
"value": true
}
]
},
{
"name": "feedAvatar",
"group": "Post list",
"label": "Show author avatar",
"value": true,
"type": "checkbox"
},
{
"name": "feedAuthor",
"group": "Post list",
"label": "Show author name",
"value": true,
"type": "checkbox"
},
{
"name": "feedDate",
"group": "Post list",
"label": "Show date",
"value": true,
"type": "checkbox"
},
{
"name": "feedDateType",
"group": "Post list",
"label": "",
"value": "published",
"type": "radio",
"options": [
{
"label": "Published date",
"value": "published"
},
{
"label": "Modified date",
"value": "modified"
}
],
"dependencies": [
{
"field": "feedDate",
"value": true
}
]
},
{
"name": "feedtReadMore",
"group": "Post list",
"label": "Show 'Read more' button",
"value": true,
"type": "checkbox"
},
{
"name": "navbarHeight",
"group": "Navbar",
"label": "Navbar height",
"value": "6rem",
"type": "text"
},
{
"name": "separator",
"type": "separator",
"label": "Dropdown menu",
"group": "Navbar",
"size": "big"
},
{
"name": "submenu",
"label": "Width",
"group": "Navbar",
"value": "auto",
"type": "radio",
"options": [
{
"label": "Auto",
"value": "auto"
},
{
"label": "Custom",
"value": "custom"
}
]
},
{
"name": "submenuWidth",
"group": "Navbar",
"note": "The submenu width in PX unit",
"label": "",
"value": "240",
"type": "range",
"min": 0,
"max": 1000,
"step": 10,
"dependencies": [
{
"field": "submenu",
"value": "custom"
}
]
},
{
"name": "separator",
"type": "separator",
"label": "Mobile menu",
"group": "Navbar",
"size": "big"
},
{
"name": "mobilemenu",
"label": "Type",
"group": "Navbar",
"value": "sidebar",
"type": "radio",
"options": [
{
"label": "Sidebar",
"value": "sidebar"
},
{
"label": "Overlay",
"value": "overlay"
}
]
},
{
"name": "mobilemenuExpandableSubmenus",
"label": "Expandable submenus",
"group": "Navbar",
"value": true,
"type": "checkbox"
},
{
"name": "colorScheme",
"label": "Select color scheme",
"group": "Colors",
"note": "
The auto color scheme feature automatically adjusts the color scheme of the interface to match the user's operating system settings. If the operating system does not support this feature, the light version of the color scheme is used instead",
"value": "auto",
"type": "radio",
"options": [
{
"label": "Light",
"value": "light"
},
{
"label": "Dark",
"value": "dark"
},
{
"label": "Auto",
"value": "auto"
}
]
},
{
"name": "primaryColor",
"label": "Primary color (Light mode)",
"group": "Colors",
"value": "#D73A42",
"type": "colorpicker"
},
{
"name": "primaryDarkColor",
"label": "Primary color (Dark mode)",
"group": "Colors",
"value": "#FFC074",
"type": "colorpicker"
},
{
"name": "separator",
"type": "separator",
"label": "Main font settings",
"group": "Fonts",
"note": "To explore an extensive list of available fonts, along with detailed information about their typefaces, complete range of weights, and other specifications, please visit our documentation.",
"size": "small"
},
{
"name": "fontBody",
"label": "Body font",
"group": "Fonts",
"value": "system-ui",
"type": "select",
"options": [
{
"label": "OS Default Font",
"value": "system-ui",
"group": "System"
},
{
"label": "Aleo",
"value": "aleo",
"group": "Serif"
},
{
"label": "Andada Pro",
"value": "andadapro",
"group": "Serif"
},
{
"label": "Besley",
"value": "besley",
"group": "Serif"
},
{
"label": "Bitter",
"value": "bitter",
"group": "Serif"
},
{
"label": "Bodoni Moda",
"value": "bodonimoda",
"group": "Serif"
},
{
"label": "Brygada 1918",
"value": "brygada1918",
"group": "Serif"
},
{
"label": "Cinzel",
"value": "cinzel",
"group": "Serif"
},
{
"label": "Danfo",
"value": "danfo",
"group": "Serif"
},
{
"label": "Domine",
"value": "domine",
"group": "Serif"
},
{
"label": "Faustina",
"value": "faustina",
"group": "Serif"
},
{
"label": "Frank Ruhl Libre",
"value": "frankruhllibre",
"group": "Serif"
},
{
"label": "Grenze Gotisch",
"value": "grenzegotisch",
"group": "Serif"
},
{
"label": "Imbue",
"value": "imbue",
"group": "Serif"
},
{
"label": "Kalnia",
"value": "kalnia",
"group": "Serif"
},
{
"label": "Kreon",
"value": "kreon",
"group": "Serif"
},
{
"label": "Labrada",
"value": "labrada",
"group": "Serif"
},
{
"label": "Lora",
"value": "lora",
"group": "Serif"
},
{
"label": "Manuale",
"value": "manuale",
"group": "Serif"
},
{
"label": "Petrona",
"value": "petrona",
"group": "Serif"
},
{
"label": "Playfair Display",
"value": "playfairdisplay",
"group": "Serif"
},
{
"label": "Red Rose",
"value": "redrose",
"group": "Serif"
},
{
"label": "Roboto Slab",
"value": "robotoslab",
"group": "Serif"
},
{
"label": "Rokkitt",
"value": "rokkitt",
"group": "Serif"
},
{
"label": "Yrsa",
"value": "yrsa",
"group": "Serif"
},
{
"label": "Advent Pro",
"value": "adventpro",
"group": "Sans Serif"
},
{
"label": "Albert Sans",
"value": "albertsans",
"group": "Sans Serif"
},
{
"label": "Antonio",
"value": "antonio",
"group": "Sans Serif"
},
{
"label": "Archivo Narrow",
"value": "archivonarrow",
"group": "Sans Serif"
},
{
"label": "Asap",
"value": "asap",
"group": "Sans Serif"
},
{
"label": "Assistant",
"value": "assistant",
"group": "Sans Serif"
},
{
"label": "Cabin",
"value": "cabin",
"group": "Sans Serif"
},
{
"label": "Cairo",
"value": "cairo",
"group": "Sans Serif"
},
{
"label": "Comme",
"value": "comme",
"group": "Sans Serif"
},
{
"label": "DM Sans",
"value": "dmsans",
"group": "Sans Serif"
},
{
"label": "Dosis",
"value": "dosis",
"group": "Sans Serif"
},
{
"label": "Doto",
"value": "doto",
"group": "Sans Serif"
},
{
"label": "Dyna Puff",
"value": "dynapuff",
"group": "Sans Serif"
},
{
"label": "Exo",
"value": "exo",
"group": "Sans Serif"
},
{
"label": "Familjen Grotesk",
"value": "familjengrotesk",
"group": "Sans Serif"
},
{
"label": "Figtree",
"value": "figtree",
"group": "Sans Serif"
},
{
"label": "Finlandica",
"value": "finlandica",
"group": "Sans Serif"
},
{
"label": "Fredoka",
"value": "fredoka",
"group": "Sans Serif"
},
{
"label": "Funnel Display",
"value": "funneldisplay",
"group": "Sans Serif"
},
{
"label": "Gantari",
"value": "gantari",
"group": "Sans Serif"
},
{
"label": "Glory",
"value": "glory",
"group": "Sans Serif"
},
{
"label": "Handjet",
"value": "handjet",
"group": "Sans Serif"
},
{
"label": "Heebo",
"value": "heebo",
"group": "Sans Serif"
},
{
"label": "Host Grotesk",
"value": "hostgrotesk",
"group": "Sans Serif"
},
{
"label": "Inclusive Sans",
"value": "inclusivesans",
"group": "Sans Serif"
},
{
"label": "Instrument Sans",
"value": "instrumentsans",
"group": "Sans Serif"
},
{
"label": "Jura",
"value": "jura",
"group": "Sans Serif"
},
{
"label": "Karla",
"value": "karla",
"group": "Sans Serif"
},
{
"label": "Kumbh Sans",
"value": "kumbhsans",
"group": "Sans Serif"
},
{
"label": "League Spartan",
"value": "leaguespartan",
"group": "Sans Serif"
},
{
"label": "Lexend",
"value": "lexend",
"group": "Sans Serif"
},
{
"label": "Lexend Deca",
"value": "lexenddeca",
"group": "Sans Serif"
},
{
"label": "Libre Franklin",
"value": "librefranklin",
"group": "Sans Serif"
},
{
"label": "Manrope",
"value": "manrope",
"group": "Sans Serif"
},
{
"label": "Maven Pro",
"value": "mavenpro",
"group": "Sans Serif"
},
{
"label": "Merriweather Sans",
"value": "merriweathersans",
"group": "Sans Serif"
},
{
"label": "Montserrat",
"value": "montserrat",
"group": "Sans Serif"
},
{
"label": "Mulish",
"value": "mulish",
"group": "Sans Serif"
},
{
"label": "Nunito",
"value": "nunito",
"group": "Sans Serif"
},
{
"label": "Orbitron",
"value": "orbitron",
"group": "Sans Serif"
},
{
"label": "Oswald",
"value": "oswald",
"group": "Sans Serif"
},
{
"label": "Outfit",
"value": "outfit",
"group": "Sans Serif"
},
{
"label": "Oxanium",
"value": "oxanium",
"group": "Sans Serif"
},
{
"label": "Parkinsans",
"value": "parkinsans",
"group": "Sans Serif"
},
{
"label": "Plus Jakarta Sans",
"value": "plusjakartasans",
"group": "Sans Serif"
},
{
"label": "Pontano Sans",
"value": "pontanosans",
"group": "Sans Serif"
},
{
"label": "Public Sans",
"value": "publicsans",
"group": "Sans Serif"
},
{
"label": "Quicksand",
"value": "quicksand",
"group": "Sans Serif"
},
{
"label": "Radio Canada Big",
"value": "radiocanadabig",
"group": "Sans Serif"
},
{
"label": "Raleway",
"value": "raleway",
"group": "Sans Serif"
},
{
"label": "Red Hat Display",
"value": "redhatdisplay",
"group": "Sans Serif"
},
{
"label": "Red Hat Text",
"value": "redhattext",
"group": "Sans Serif"
},
{
"label": "REM",
"value": "rem",
"group": "Sans Serif"
},
{
"label": "Roboto Flex",
"value": "robotoflex",
"group": "Sans Serif"
},
{
"label": "Rubik",
"value": "rubik",
"group": "Sans Serif"
},
{
"label": "Ruda",
"value": "ruda",
"group": "Sans Serif"
},
{
"label": "Smooch Sans",
"value": "smoochsans",
"group": "Sans Serif"
},
{
"label": "Sora",
"value": "sora",
"group": "Sans Serif"
},
{
"label": "Spartan",
"value": "spartan",
"group": "Sans Serif"
},
{
"label": "Stick No Bills",
"value": "sticknobills",
"group": "Sans Serif"
},
{
"label": "Teachers",
"value": "teachers",
"group": "Sans Serif"
},
{
"label": "Tektur",
"value": "tektur",
"group": "Sans Serif"
},
{
"label": "Tourney",
"value": "tourney",
"group": "Sans Serif"
},
{
"label": "Urbanist",
"value": "urbanist",
"group": "Sans Serif"
},
{
"label": "Varta",
"value": "varta",
"group": "Sans Serif"
},
{
"label": "Wix Madefor Text",
"value": "wixmadefortext",
"group": "Sans Serif"
},
{
"label": "Workbench",
"value": "workbench",
"group": "Sans Serif"
},
{
"label": "Work Sans",
"value": "worksans",
"group": "Sans Serif"
},
{
"label": "Yanone Kaffeesatz",
"value": "yanonekaffeesatz",
"group": "Sans Serif"
},
{
"label": "Zalando Sans",
"value": "zalandosans",
"group": "Sans Serif"
},
{
"label": "Zalando Sans Expanded",
"value": "zalandosansexpanded",
"group": "Sans Serif"
},
{
"label": "Comfortaa",
"value": "comfortaa",
"group": "Cursive"
},
{
"label": "Dancing Script",
"value": "dancingscript",
"group": "Cursive"
},
{
"label": "Gluten",
"value": "gluten",
"group": "Cursive"
},
{
"label": "Lemonada",
"value": "lemonada",
"group": "Cursive"
},
{
"label": "Playwrite US Modern",
"value": "playwriteusmodern",
"group": "Cursive"
},
{
"label": "Playwrite US Traditional",
"value": "playwriteustrad",
"group": "Cursive"
},
{
"label": "Bitcount",
"value": "bitcount",
"group": "Monospace"
},
{
"label": "Geist Mono",
"value": "geistmono",
"group": "Monospace"
},
{
"label": "Google Sans Code",
"value": "googlesanscode",
"group": "Monospace"
},
{
"label": "JetBrains Mono",
"value": "jetbrainsmono",
"group": "Monospace"
},
{
"label": "Red Hat Mono",
"value": "redhatmono",
"group": "Monospace"
},
{
"label": "Source Code Pro",
"value": "sourcecodepro",
"group": "Monospace"
},
{
"label": "SUSE Mono",
"value": "susemono",
"group": "Monospace"
},
{
"label": "Victor Mono",
"value": "victormono",
"group": "Monospace"
}
]
},
{
"name": "disableFontBodyItalic",
"label": "Disable italic style",
"group": "Fonts",
"note": "This option allows you to disable the loading of the dedicated italic version for the body font. The italic font is automatically loaded when selecting a body font that supports it, like Lora, for optimal appearance. However, for performance reasons, you can choose to prevent loading the dedicated italic version by enabling this option.",
"type": "checkbox",
"value": false,
"dependencies": [
{
"field": "fontBody",
"value": "albertsans,adventpro,aleo,andadapro,archivonarrow,asap,besley,bitter,bodonimoda,brygada1918,cabin,dmsans,exo,familjengrotesk,faustina,figtree,finlandica,gantari,glory,googlesanscode,hostgrotesk,inclusivesans,instrumentsans,jetbrainsmono,karla,labrada,librefranklin,lora,manuale,merriweathersans,montserrat,mulish,nunito,petrona,playfairdisplay,plusjakartasans,publicsans,radiocanadabig,raleway,redhatdisplay,redhatmono,redhattext,rem,rokkitt,rubik,sourcecodepro,susemono,teachers,tourney,urbanist,victormono,wixmadefortext,worksans,zalandosans,zalandosansexpanded,yrsa"
}
]
},
{
"name": "fontHeadings",
"label": "Headings font (H1-H6)",
"group": "Fonts",
"value": "system-ui",
"type": "select",
"options": [
{
"label": "OS Default Font",
"value": "system-ui",
"group": "System"
},
{
"label": "Aleo",
"value": "aleo",
"group": "Serif"
},
{
"label": "Andada Pro",
"value": "andadapro",
"group": "Serif"
},
{
"label": "Besley",
"value": "besley",
"group": "Serif"
},
{
"label": "Bitter",
"value": "bitter",
"group": "Serif"
},
{
"label": "Bodoni Moda",
"value": "bodonimoda",
"group": "Serif"
},
{
"label": "Brygada 1918",
"value": "brygada1918",
"group": "Serif"
},
{
"label": "Cinzel",
"value": "cinzel",
"group": "Serif"
},
{
"label": "Danfo",
"value": "danfo",
"group": "Serif"
},
{
"label": "Domine",
"value": "domine",
"group": "Serif"
},
{
"label": "Faustina",
"value": "faustina",
"group": "Serif"
},
{
"label": "Frank Ruhl Libre",
"value": "frankruhllibre",
"group": "Serif"
},
{
"label": "Grenze Gotisch",
"value": "grenzegotisch",
"group": "Serif"
},
{
"label": "Imbue",
"value": "imbue",
"group": "Serif"
},
{
"label": "Kalnia",
"value": "kalnia",
"group": "Serif"
},
{
"label": "Kreon",
"value": "kreon",
"group": "Serif"
},
{
"label": "Labrada",
"value": "labrada",
"group": "Serif"
},
{
"label": "Lora",
"value": "lora",
"group": "Serif"
},
{
"label": "Manuale",
"value": "manuale",
"group": "Serif"
},
{
"label": "Petrona",
"value": "petrona",
"group": "Serif"
},
{
"label": "Playfair Display",
"value": "playfairdisplay",
"group": "Serif"
},
{
"label": "Red Rose",
"value": "redrose",
"group": "Serif"
},
{
"label": "Roboto Slab",
"value": "robotoslab",
"group": "Serif"
},
{
"label": "Rokkitt",
"value": "rokkitt",
"group": "Serif"
},
{
"label": "Yrsa",
"value": "yrsa",
"group": "Serif"
},
{
"label": "Advent Pro",
"value": "adventpro",
"group": "Sans Serif"
},
{
"label": "Albert Sans",
"value": "albertsans",
"group": "Sans Serif"
},
{
"label": "Antonio",
"value": "antonio",
"group": "Sans Serif"
},
{
"label": "Archivo Narrow",
"value": "archivonarrow",
"group": "Sans Serif"
},
{
"label": "Asap",
"value": "asap",
"group": "Sans Serif"
},
{
"label": "Assistant",
"value": "assistant",
"group": "Sans Serif"
},
{
"label": "Cabin",
"value": "cabin",
"group": "Sans Serif"
},
{
"label": "Cairo",
"value": "cairo",
"group": "Sans Serif"
},
{
"label": "Comme",
"value": "comme",
"group": "Sans Serif"
},
{
"label": "DM Sans",
"value": "dmsans",
"group": "Sans Serif"
},
{
"label": "Dosis",
"value": "dosis",
"group": "Sans Serif"
},
{
"label": "Doto",
"value": "doto",
"group": "Sans Serif"
},
{
"label": "Dyna Puff",
"value": "dynapuff",
"group": "Sans Serif"
},
{
"label": "Exo",
"value": "exo",
"group": "Sans Serif"
},
{
"label": "Familjen Grotesk",
"value": "familjengrotesk",
"group": "Sans Serif"
},
{
"label": "Figtree",
"value": "figtree",
"group": "Sans Serif"
},
{
"label": "Finlandica",
"value": "finlandica",
"group": "Sans Serif"
},
{
"label": "Fredoka",
"value": "fredoka",
"group": "Sans Serif"
},
{
"label": "Funnel Display",
"value": "funneldisplay",
"group": "Sans Serif"
},
{
"label": "Gantari",
"value": "gantari",
"group": "Sans Serif"
},
{
"label": "Glory",
"value": "glory",
"group": "Sans Serif"
},
{
"label": "Handjet",
"value": "handjet",
"group": "Sans Serif"
},
{
"label": "Heebo",
"value": "heebo",
"group": "Sans Serif"
},
{
"label": "Host Grotesk",
"value": "hostgrotesk",
"group": "Sans Serif"
},
{
"label": "Inclusive Sans",
"value": "inclusivesans",
"group": "Sans Serif"
},
{
"label": "Instrument Sans",
"value": "instrumentsans",
"group": "Sans Serif"
},
{
"label": "Jura",
"value": "jura",
"group": "Sans Serif"
},
{
"label": "Karla",
"value": "karla",
"group": "Sans Serif"
},
{
"label": "Kumbh Sans",
"value": "kumbhsans",
"group": "Sans Serif"
},
{
"label": "League Spartan",
"value": "leaguespartan",
"group": "Sans Serif"
},
{
"label": "Lexend",
"value": "lexend",
"group": "Sans Serif"
},
{
"label": "Lexend Deca",
"value": "lexenddeca",
"group": "Sans Serif"
},
{
"label": "Libre Franklin",
"value": "librefranklin",
"group": "Sans Serif"
},
{
"label": "Manrope",
"value": "manrope",
"group": "Sans Serif"
},
{
"label": "Maven Pro",
"value": "mavenpro",
"group": "Sans Serif"
},
{
"label": "Merriweather Sans",
"value": "merriweathersans",
"group": "Sans Serif"
},
{
"label": "Montserrat",
"value": "montserrat",
"group": "Sans Serif"
},
{
"label": "Mulish",
"value": "mulish",
"group": "Sans Serif"
},
{
"label": "Nunito",
"value": "nunito",
"group": "Sans Serif"
},
{
"label": "Orbitron",
"value": "orbitron",
"group": "Sans Serif"
},
{
"label": "Oswald",
"value": "oswald",
"group": "Sans Serif"
},
{
"label": "Outfit",
"value": "outfit",
"group": "Sans Serif"
},
{
"label": "Oxanium",
"value": "oxanium",
"group": "Sans Serif"
},
{
"label": "Parkinsans",
"value": "parkinsans",
"group": "Sans Serif"
},
{
"label": "Plus Jakarta Sans",
"value": "plusjakartasans",
"group": "Sans Serif"
},
{
"label": "Pontano Sans",
"value": "pontanosans",
"group": "Sans Serif"
},
{
"label": "Public Sans",
"value": "publicsans",
"group": "Sans Serif"
},
{
"label": "Quicksand",
"value": "quicksand",
"group": "Sans Serif"
},
{
"label": "Radio Canada Big",
"value": "radiocanadabig",
"group": "Sans Serif"
},
{
"label": "Raleway",
"value": "raleway",
"group": "Sans Serif"
},
{
"label": "Red Hat Display",
"value": "redhatdisplay",
"group": "Sans Serif"
},
{
"label": "Red Hat Text",
"value": "redhattext",
"group": "Sans Serif"
},
{
"label": "REM",
"value": "rem",
"group": "Sans Serif"
},
{
"label": "Roboto Flex",
"value": "robotoflex",
"group": "Sans Serif"
},
{
"label": "Rubik",
"value": "rubik",
"group": "Sans Serif"
},
{
"label": "Ruda",
"value": "ruda",
"group": "Sans Serif"
},
{
"label": "Smooch Sans",
"value": "smoochsans",
"group": "Sans Serif"
},
{
"label": "Sora",
"value": "sora",
"group": "Sans Serif"
},
{
"label": "Spartan",
"value": "spartan",
"group": "Sans Serif"
},
{
"label": "Stick No Bills",
"value": "sticknobills",
"group": "Sans Serif"
},
{
"label": "Teachers",
"value": "teachers",
"group": "Sans Serif"
},
{
"label": "Tektur",
"value": "tektur",
"group": "Sans Serif"
},
{
"label": "Tourney",
"value": "tourney",
"group": "Sans Serif"
},
{
"label": "Urbanist",
"value": "urbanist",
"group": "Sans Serif"
},
{
"label": "Varta",
"value": "varta",
"group": "Sans Serif"
},
{
"label": "Wix Madefor Text",
"value": "wixmadefortext",
"group": "Sans Serif"
},
{
"label": "Workbench",
"value": "workbench",
"group": "Sans Serif"
},
{
"label": "Work Sans",
"value": "worksans",
"group": "Sans Serif"
},
{
"label": "Yanone Kaffeesatz",
"value": "yanonekaffeesatz",
"group": "Sans Serif"
},
{
"label": "Zalando Sans",
"value": "zalandosans",
"group": "Sans Serif"
},
{
"label": "Zalando Sans Expanded",
"value": "zalandosansexpanded",
"group": "Sans Serif"
},
{
"label": "Comfortaa",
"value": "comfortaa",
"group": "Cursive"
},
{
"label": "Dancing Script",
"value": "dancingscript",
"group": "Cursive"
},
{
"label": "Gluten",
"value": "gluten",
"group": "Cursive"
},
{
"label": "Lemonada",
"value": "lemonada",
"group": "Cursive"
},
{
"label": "Playwrite US Modern",
"value": "playwriteusmodern",
"group": "Cursive"
},
{
"label": "Playwrite US Traditional",
"value": "playwriteustrad",
"group": "Cursive"
},
{
"label": "Bitcount",
"value": "bitcount",
"group": "Monospace"
},
{
"label": "Geist Mono",
"value": "geistmono",
"group": "Monospace"
},
{
"label": "Google Sans Code",
"value": "googlesanscode",
"group": "Monospace"
},
{
"label": "JetBrains Mono",
"value": "jetbrainsmono",
"group": "Monospace"
},
{
"label": "Red Hat Mono",
"value": "redhatmono",
"group": "Monospace"
},
{
"label": "Source Code Pro",
"value": "sourcecodepro",
"group": "Monospace"
},
{
"label": "SUSE Mono",
"value": "susemono",
"group": "Monospace"
},
{
"label": "Victor Mono",
"value": "victormono",
"group": "Monospace"
}
]
},
{
"name": "disableFontHeadingsItalic",
"label": "Disable italic style",
"group": "Fonts",
"note": "This option allows you to disable loading of the dedicated italic version for the headings font. The italic font is automatically loaded when selecting a headings font that supports it, like Lora, for optimal appearance. However, for performance reasons, you can choose to prevent loading of the dedicated italic version by enabling this option.",
"type": "checkbox",
"value": false,
"dependencies": [
{
"field": "fontHeadings",
"value": "albertsans,adventpro,aleo,andadapro,archivonarrow,asap,besley,bitter,bodonimoda,brygada1918,cabin,dmsans,exo,familjengrotesk,faustina,figtree,finlandica,gantari,glory,googlesanscode,hostgrotesk,inclusivesans,instrumentsans,jetbrainsmono,karla,labrada,librefranklin,lora,manuale,merriweathersans,montserrat,mulish,nunito,petrona,playfairdisplay,plusjakartasans,publicsans,radiocanadabig,raleway,redhatdisplay,redhatmono,redhattext,rem,rokkitt,rubik,sourcecodepro,susemono,teachers,tourney,urbanist,victormono,wixmadefortext,worksans,zalandosans,zalandosansexpanded,yrsa"
}
]
},
{
"name": "fontMenu",
"label": "Menu font",
"group": "Fonts",
"value": "var(--body-font)",
"type": "select",
"options": [
{
"label": "OS Default Font",
"value": "system-ui"
},
{
"label": "Select the font used for the Body",
"value": "var(--body-font)"
},
{
"label": "Select the font used for the Headings",
"value": "var(--heading-font)"
}
]
},
{
"name": "fontLogo",
"label": "Logo font",
"group": "Fonts",
"value": "var(--body-font)",
"type": "select",
"options": [
{
"label": "OS Default Font",
"value": "system-ui"
},
{
"label": "Select the font used for the Body",
"value": "var(--body-font)"
},
{
"label": "Select the font used for the Headings",
"value": "var(--heading-font)"
}
]
},
{
"name": "separator",
"type": "separator",
"label": "",
"group": "Fonts",
"size": "big thin"
},
{
"name": "minFontSize",
"label": "Minimum font size",
"group": "Fonts",
"note": "The font-size of the root element in REM unit",
"value": "1.1",
"type": "range",
"min": 1,
"max": 3,
"step": 0.05
},
{
"name": "maxFontSize",
"label": "Maximum font size",
"group": "Fonts",
"note": "The font-size of the root element in REM unit",
"value": "1.2",
"type": "range",
"min": 1,
"max": 3,
"step": 0.05
},
{
"name": "lineHeight",
"label": "Line height",
"group": "Fonts",
"note": "The default line-height for text within body elements, excluding headings.",
"value": "1.7",
"type": "range",
"min": 1,
"max": 3,
"step": 0.05
},
{
"name": "letterSpacing",
"label": "Letter spacing",
"group": "Fonts",
"note": "Adjusts the spacing between characters for body text elements, excluding headings, in EM.",
"value": "0",
"type": "range",
"min": -1,
"max": 1,
"step": 0.01
},
{
"name": "separator",
"type": "separator",
"label": "",
"group": "Fonts",
"note": "Note that not all fonts support the full range of weights; instead, they will typically support a standard range between 400 and 700. To see the exact range available for the selected body font, please visit our documentation.",
"size": "small thin"
},
{
"name": "fontBodyWeight",
"label": "Normal font weight",
"group": "Fonts",
"value": "400",
"type": "range",
"min": 100,
"max": 900,
"step": 1
},
{
"name": "fontBoldWeight",
"label": "Bold font weight",
"group": "Fonts",
"value": "600",
"type": "range",
"min": 100,
"max": 900,
"step": 1
},
{
"name": "separator",
"type": "separator",
"label": "Headings",
"group": "Fonts",
"size": "big"
},
{
"name": "fontHeadignsWeight",
"label": "H1-H6 font weight",
"group": "Fonts",
"value": "500",
"type": "range",
"min": 100,
"max": 900,
"step": 1
},
{
"name": "fontHeadingsStyle",
"label": "H1-H6 font style",
"group": "Fonts",
"value": "normal",
"type": "select",
"options": [
{
"label": "Normal",
"value": "normal"
},
{
"label": "Italic",
"value": "italic"
},
{
"label": "Oblique",
"value": "oblique"
}
]
},
{
"name": "fontHeadingsLineHeight",
"label": "H1-H6 line height",
"group": "Fonts",
"note": "The default line-height for heading elements (h1, h2, h3, etc.).",
"value": "1.2",
"type": "range",
"min": 1,
"max": 3,
"step": 0.05
},
{
"name": "fontHeadingsletterSpacing",
"label": "H1-H6 letter spacing",
"group": "Fonts",
"note": "Adjusts the spacing between characters for heading elements (h1, h2, h3, etc.) in EM.",
"value": "0",
"type": "range",
"min": -1,
"max": 1,
"step": 0.01
},
{
"name": "fontHeadingsTransform",
"label": "H1-H6 text transform",
"group": "Fonts",
"value": "none",
"type": "select",
"options": [
{
"label": "None",
"value": "none"
},
{
"label": "Capitalize",
"value": "capitalize"
},
{
"label": "Lowercase",
"value": "lowercase"
},
{
"label": "Uppercase",
"value": "uppercase"
}
]
},
{
"name": "separator",
"type": "separator",
"label": "",
"group": "Share Buttons",
"note": "This section allows you to choose your preferred share buttons for various platforms. If you wish to add more, you can install the Social Sharing plugin available on the Publii Marketplace.",
"size": "no-line"
},
{
"name": "shareFacebook",
"group": "Share Buttons",
"label": "Facebook",
"value": false,
"type": "checkbox"
},
{
"name": "shareTwitter",
"group": "Share Buttons",
"label": "X (formerly Twitter)",
"value": false,
"type": "checkbox"
},
{
"name": "shareTwitterName",
"group": "Share Buttons",
"note": "Enter your X account's handle here; it will be used when the X share button is clicked on your site e.g. 'via @XHandle'. If left blank, the default username of @SiteName will be used",
"value": "",
"type": "text",
"dependencies": [
{
"field": "shareTwitter",
"value": "true"
}
]
},
{
"name": "sharePinterest",
"group": "Share Buttons",
"label": "Pinterest",
"value": false,
"type": "checkbox"
},
{
"name": "shareMix",
"group": "Share Buttons",
"label": "Mix (formerly StumbleUpon)",
"value": false,
"type": "checkbox"
},
{
"name": "shareLinkedin",
"group": "Share Buttons",
"label": "LinkedIn",
"value": false,
"type": "checkbox"
},
{
"name": "shareBuffer",
"group": "Share Buttons",
"label": "Buffer",
"value": false,
"type": "checkbox"
},
{
"name": "shareWhatsApp",
"group": "Share Buttons",
"label": "WhatsApp",
"value": false,
"type": "checkbox"
},
{
"name": "separator",
"type": "separator",
"label": "",
"group": "Footer",
"note": "This section allows you to add follow buttons for various social media platforms. If you want to expand the available options, you can install the Follow Buttons plugin available on the Publii Marketplace.",
"size": "no-line"
},
{
"name": "socialButtons",
"group": "Footer",
"label": "Follow Buttons",
"value": false,
"type": "checkbox"
},
{
"name": "socialFacebook",
"label": "Facebook",
"group": "Footer",
"placeholder": "Please enter your Facebook URL",
"value": "",
"type": "text",
"dependencies": [
{
"field": "socialButtons",
"value": "true"
}
]
},
{
"name": "socialTwitter",
"label": "X (formerly Twitter)",
"group": "Footer",
"placeholder": "Please enter your X URL",
"value": "",
"type": "text",
"dependencies": [
{
"field": "socialButtons",
"value": "true"
}
]
},
{
"name": "socialInstagram",
"label": "Instagram",
"group": "Footer",
"placeholder": "Please enter your Instagram URL",
"value": "",
"type": "text",
"dependencies": [
{
"field": "socialButtons",
"value": "true"
}
]
},
{
"name": "socialLinkedin",
"label": "LinkedIn",
"group": "Footer",
"placeholder": "Please enter your LinkedIn URL",
"value": "",
"type": "text",
"dependencies": [
{
"field": "socialButtons",
"value": "true"
}
]
},
{
"name": "socialVimeo",
"label": "Vimeo",
"group": "Footer",
"placeholder": "Please enter your Vimeo URL",
"value": "",
"type": "text",
"dependencies": [
{
"field": "socialButtons",
"value": "true"
}
]
},
{
"name": "socialPinterest",
"label": "Pinterest",
"group": "Footer",
"placeholder": "Please enter your Pinterest URL",
"value": "",
"type": "text",
"dependencies": [
{
"field": "socialButtons",
"value": "true"
}
]
},
{
"name": "socialYoutube",
"label": "Youtube",
"group": "Footer",
"placeholder": "Please enter your Youtube URL",
"value": "",
"type": "text",
"dependencies": [
{
"field": "socialButtons",
"value": "true"
}
]
},
{
"name": "separator",
"type": "separator",
"label": "",
"group": "Footer",
"size": "small thin"
},
{
"name": "copyrightText",
"label": "Copyright text",
"group": "Footer",
"value": "Powered by Publii",
"type": "wysiwyg"
},
{
"name": "searchFeature",
"label": "Search",
"group": "Search",
"note": "Enable / disable the search box, which is usually located next to the top menu. In order to use the search function, you also need to install the search plugin.",
"value": false,
"type": "checkbox"
},
{
"name": "createSearchPage",
"label": "Search subpage",
"group": "Search",
"note": "Enabling this option will create an additional search.html page which may be required by some search plugins to display the search results on a separate page.",
"value": false,
"type": "checkbox"
},
{
"name": "separator",
"type": "separator",
"label": "",
"group": "Gallery",
"note": "To use the gallery functionality, you need to install the appropriate plugin. Please check the available gallery plugins in the Publii Marketplace.",
"size": "no-line"
},
{
"name": "galleryItemGap",
"label": "Gallery item spacing",
"group": "Gallery",
"note": "You can use the --baseline variable and multiply it, but you can also use other values like px or rem.",
"value": "calc(var(--baseline) * 1.5)",
"type": "text"
},
{
"name": "backToTopButton",
"group": "Additional",
"label": "\"Back to top\" button",
"value": true,
"type": "checkbox"
},
{
"name": "separator",
"type": "separator",
"label": "",
"group": "Additional",
"size": "small"
},
{
"name": "formatDate",
"label": "Date format",
"group": "Additional",
"value": "MMMM D, YYYY",
"type": "select",
"options": [
{
"label": "Nov 1, 2016",
"value": "MMM D, YYYY"
},
{
"label": "1 Nov 2016",
"value": "D MMM YYYY"
},
{
"label": "November 1, 2016",
"value": "MMMM D, YYYY"
},
{
"label": "1 November 2016",
"value": "D MMMM YYYY"
},
{
"label": "Sunday, November 1, 2016",
"value": "dddd, MMMM D, YYYY"
},
{
"label": "Sunday, 1 November 2016",
"value": "dddd, D MMMM YYYY"
},
{
"label": "November 1, 2016 10:02:05",
"value": "MMMM D, YYYY HH:mm:ss"
},
{
"label": "1 November 2016 10:02:05",
"value": "D MMMM YYYY HH:mm:ss"
},
{
"label": "01/21/2016",
"value": "MM/DD/YYYY"
},
{
"label": "21/01/2016",
"value": "DD/MM/YYYY"
},
{
"label": "Custom - create your own date format",
"value": "custom"
}
]
},
{
"name": "formatDateCustom",
"group": "Additional",
"label": "Create a custom date format",
"note": "More details you can find here.",
"value": "HH:mm:ss YY/MM/DD",
"type": "text",
"dependencies": [
{
"field": "formatDate",
"value": "custom"
}
]
},
{
"name": "separator",
"type": "separator",
"label": "",
"group": "Additional",
"size": "small"
},
{
"name": "lazyLoadEffect",
"label": "Lazy load effects",
"group": "Additional",
"note": "This option works only if the 'Media lazy load' option is enabled in the Website Speed tab under Site Settings",
"value": "fadein",
"type": "select",
"options": [
{
"label": "Fade in",
"value": "fadein"
},
{
"label": "None",
"value": "none"
}
]
},
{
"name": "separator",
"type": "separator",
"label": "",
"group": "Additional",
"size": "small"
},
{
"name": "faviconUpload",
"label": "Upload favicon file",
"group": "Additional",
"note": "The ideal size of a favicon is 16x16 pixels. Save your favicon as either favicon.png or favicon.ico",
"value": "",
"type": "smallupload",
"upload": true
},
{
"name": "faviconExtension",
"label": "Favicon extension",
"group": "Additional",
"value": "image/x-icon",
"type": "select",
"options": [
{
"label": ".ico",
"value": "image/x-icon"
},
{
"label": ".png",
"value": "image/png"
}
]
}
],
"postConfig": [
{
"name": "displayDate",
"label": "Display date",
"value": 1,
"type": "select",
"options": [
{
"label": "Enabled",
"value": 1
},
{
"label": "Disabled",
"value": 0
}
]
},
{
"name": "displayAuthor",
"label": "Display author",
"value": 1,
"type": "select",
"options": [
{
"label": "Enabled",
"value": 1
},
{
"label": "Disabled",
"value": 0
}
]
},
{
"name": "displayLastUpdatedDate",
"label": "Display last updated date",
"value": 1,
"type": "select",
"options": [
{
"label": "Enabled",
"value": 1
},
{
"label": "Disabled",
"value": 0
}
]
},
{
"name": "displayTags",
"label": "Display tags",
"value": 1,
"type": "select",
"options": [
{
"label": "Enabled",
"value": 1
},
{
"label": "Disabled",
"value": 0
}
]
},
{
"name": "displayShareButtons",
"label": "Display share buttons",
"value": 1,
"type": "select",
"options": [
{
"label": "Enabled",
"value": 1
},
{
"label": "Disabled",
"value": 0
}
]
},
{
"name": "displayAuthorBio",
"label": "Display author bio",
"value": 1,
"type": "select",
"options": [
{
"label": "Enabled",
"value": 1
},
{
"label": "Disabled",
"value": 0
}
]
},
{
"name": "displayPostNavigation",
"label": "Display post navigation",
"value": 1,
"type": "select",
"options": [
{
"label": "Enabled",
"value": 1
},
{
"label": "Disabled",
"value": 0
}
]
},
{
"name": "displayRelatedPosts",
"label": "Display related posts",
"value": 1,
"type": "select",
"options": [
{
"label": "Enabled",
"value": 1
},
{
"label": "Disabled",
"value": 0
}
]
},
{
"name": "displayComments",
"label": "Display comments",
"value": 0,
"type": "select",
"options": [
{
"label": "Enabled",
"value": 1
},
{
"label": "Disabled",
"value": 0
}
]
}
],
"pageConfig": [
{
"name": "displayDate",
"label": "Display date",
"value": 0,
"type": "select",
"pageTemplates": "!empty",
"options": [
{
"label": "Enabled",
"value": 1
},
{
"label": "Disabled",
"value": 0
}
]
},
{
"name": "displayAuthor",
"label": "Display author",
"value": 0,
"type": "select",
"pageTemplates": "!empty",
"options": [
{
"label": "Enabled",
"value": 1
},
{
"label": "Disabled",
"value": 0
}
]
},
{
"name": "displayLastUpdatedDate",
"label": "Display last updated date",
"value": 0,
"type": "select",
"pageTemplates": "!empty",
"options": [
{
"label": "Enabled",
"value": 1
},
{
"label": "Disabled",
"value": 0
}
]
},
{
"name": "displayShareButtons",
"label": "Display share buttons",
"value": 0,
"type": "select",
"pageTemplates": "!empty",
"options": [
{
"label": "Enabled",
"value": 1
},
{
"label": "Disabled",
"value": 0
}
]
},
{
"name": "displayAuthorBio",
"label": "Display author bio",
"value": 0,
"type": "select",
"pageTemplates": "!empty",
"options": [
{
"label": "Enabled",
"value": 1
},
{
"label": "Disabled",
"value": 0
}
]
},
{
"name": "displayChildPages",
"label": "Display child pages",
"value": 0,
"type": "select",
"options": [
{
"label": "Enabled",
"value": 1
},
{
"label": "Disabled",
"value": 0
}
]
},
{
"name": "displayComments",
"label": "Display comments",
"value": 0,
"type": "select",
"pageTemplates": "!empty",
"options": [
{
"label": "Enabled",
"value": 1
},
{
"label": "Disabled",
"value": 0
}
]
}
],
"authorConfig": [
{
"name": "displayFeaturedImage",
"label": "Display featured image",
"value": 1,
"type": "select",
"options": [
{
"label": "Enabled",
"value": 1
},
{
"label": "Disabled",
"value": 0
}
]
},
{
"name": "displayAvatar",
"label": "Display avatar",
"value": 1,
"type": "select",
"options": [
{
"label": "Enabled",
"value": 1
},
{
"label": "Disabled",
"value": 0
}
]
},
{
"name": "displayPostCounter",
"label": "Display post counter",
"value": 1,
"type": "select",
"options": [
{
"label": "Enabled",
"value": 1
},
{
"label": "Disabled",
"value": 0
}
]
},
{
"name": "displayDescription",
"label": "Display author biography",
"value": 1,
"type": "select",
"options": [
{
"label": "Enabled",
"value": 1
},
{
"label": "Disabled",
"value": 0
}
]
},
{
"name": "displayWebsite",
"label": "Display author website",
"value": 1,
"type": "select",
"options": [
{
"label": "Enabled",
"value": 1
},
{
"label": "Disabled",
"value": 0
}
]
},
{
"name": "displayPostList",
"label": "Display post list",
"note": "Disabling the post list can cause duplicate content issues. To avoid this, please disable authors pagination in the SEO section of your site settings.",
"value": 1,
"type": "select",
"options": [
{
"label": "Enabled",
"value": 1
},
{
"label": "Disabled",
"value": 0
}
]
}
],
"tagConfig": [
{
"name": "displayFeaturedImage",
"label": "Display featured image",
"value": 1,
"type": "select",
"options": [
{
"label": "Enabled",
"value": 1
},
{
"label": "Disabled",
"value": 0
}
]
},
{
"name": "displayPostCounter",
"label": "Display post counter",
"value": 1,
"type": "select",
"options": [
{
"label": "Enabled",
"value": 1
},
{
"label": "Disabled",
"value": 0
}
]
},
{
"name": "displayDescription",
"label": "Display tag description",
"value": 1,
"type": "select",
"options": [
{
"label": "Enabled",
"value": 1
},
{
"label": "Disabled",
"value": 0
}
]
},
{
"name": "displayPostList",
"label": "Display post list",
"note": "Disabling the post list can cause duplicate content issues. To avoid this, please disable tag pagination in the SEO section of your site settings.",
"value": 1,
"type": "select",
"options": [
{
"label": "Enabled",
"value": 1
},
{
"label": "Disabled",
"value": 0
}
]
}
],
"files": {
"ignoreAssets": [
"scss",
".DS_Store"
],
"assetsPath": "assets",
"useDynamicAssets": true,
"partialsPath": "partials",
"responsiveImages": {
"contentImages": {
"sizes": "(max-width: 1920px) 100vw, 1920px",
"dimensions": {
"xs": {
"width": 640,
"height": "auto"
},
"sm": {
"width": 768,
"height": "auto"
},
"md": {
"width": 1024,
"height": "auto"
},
"lg": {
"width": 1366,
"height": "auto"
},
"xl": {
"width": 1600,
"height": "auto"
},
"2xl": {
"width": 1920,
"height": "auto"
}
}
},
"featuredImages": {
"sizes": {
"hero": "88vw",
"feed": "(min-width: 600px) calc(4.38vw + 143px), 87.86vw"
},
"dimensions": {
"xs": {
"width": 640,
"height": "auto",
"group": "hero,feed"
},
"sm": {
"width": 768,
"height": "auto",
"group": "hero,feed"
},
"md": {
"width": 1024,
"height": "auto",
"group": "hero,feed"
},
"lg": {
"width": 1366,
"height": "auto",
"group": "hero"
},
"xl": {
"width": 1600,
"height": "auto",
"group": "hero"
},
"2xl": {
"width": 1920,
"height": "auto",
"group": "hero"
}
}
},
"tagImages": {
"sizes": "88vw",
"dimensions": {
"xs": {
"width": 640,
"height": "auto"
},
"sm": {
"width": 768,
"height": "auto"
},
"md": {
"width": 1024,
"height": "auto"
},
"lg": {
"width": 1366,
"height": "auto"
},
"xl": {
"width": 1600,
"height": "auto"
},
"2xl": {
"width": 1920,
"height": "auto"
}
}
},
"authorImages": {
"sizes": "88vw",
"dimensions": {
"xs": {
"width": 640,
"height": "auto"
},
"sm": {
"width": 768,
"height": "auto"
},
"md": {
"width": 1024,
"height": "auto"
},
"lg": {
"width": 1366,
"height": "auto"
},
"xl": {
"width": 1600,
"height": "auto"
},
"2xl": {
"width": 1920,
"height": "auto"
}
}
},
"optionImages": {
"sizes": "88vw",
"dimensions": {
"xs": {
"width": 640,
"height": "auto"
},
"sm": {
"width": 768,
"height": "auto"
},
"md": {
"width": 1024,
"height": "auto"
},
"lg": {
"width": 1366,
"height": "auto"
},
"xl": {
"width": 1600,
"height": "auto"
},
"2xl": {
"width": 1920,
"height": "auto"
}
}
},
"galleryImages": {
"sizes": "",
"dimensions": {
"thumbnail": {
"width": 720,
"height": "auto"
}
}
}
}
},
"customElements": [
{
"label": "Ordered list",
"cssClasses": "ordered-list",
"selector": "ol"
},
{
"label": "Drop cap",
"cssClasses": "dropcap",
"selector": "p"
},
{
"label": "Info",
"cssClasses": "msg msg--info",
"selector": "p"
},
{
"label": "Highlight",
"cssClasses": "msg msg--highlight ",
"selector": "p"
},
{
"label": "Success",
"cssClasses": "msg msg--success",
"selector": "p"
},
{
"label": "Warning",
"cssClasses": "msg msg--warning",
"selector": "p"
},
{
"label": "Table bordered",
"cssClasses": "table-bordered",
"selector": "table"
},
{
"label": "Table striped",
"cssClasses": "table-striped",
"selector": "table"
},
{
"label": "Table title",
"cssClasses": "table-title",
"selector": "table"
}
]
}
================================================
FILE: app/default-files/default-themes/simple/dynamic-assets-mapping.js
================================================
module.exports = function (themeConfig) {
let fontBody = themeConfig.customConfig['fontBody'];
let fontHeadings = themeConfig.customConfig['fontHeadings'];
let fontBodyItalic = themeConfig.customConfig['fontBodyItalic'];
let fontHeadingsItalic = themeConfig.customConfig['fontHeadingsItalic'];
let assets = new Set();
const fontParams = {
'albertsans': { hasItalic: true },
'adventpro': { hasItalic: true },
'aleo': { hasItalic: true },
'andadapro': { hasItalic: true },
'antonio': { hasItalic: false },
'archivonarrow': { hasItalic: true },
'asap': { hasItalic: true },
'assistant': { hasItalic: false },
'besley': { hasItalic: true },
'bitter': { hasItalic: true },
'bitcount': { hasItalic: false },
'bodonimoda': { hasItalic: true },
'brygada1918': { hasItalic: true },
'cabin': { hasItalic: true },
'cairo': { hasItalic: false },
'cinzel': { hasItalic: false },
'comfortaa': { hasItalic: false },
'comme': { hasItalic: false },
'dancingscript': { hasItalic: false },
'danfo': { hasItalic: false },
'dmsans': { hasItalic: true },
'domine': { hasItalic: false },
'dosis': { hasItalic: false },
'doto': { hasItalic: false },
'dynapuff': { hasItalic: false },
'exo': { hasItalic: true },
'familjengrotesk': { hasItalic: true },
'faustina': { hasItalic: true },
'figtree': { hasItalic: true },
'finlandica': { hasItalic: true },
'frankruhllibre': { hasItalic: false },
'fredoka': { hasItalic: false },
'funneldisplay': { hasItalic: false },
'gantari': { hasItalic: true },
'geistmono': { hasItalic: false },
'glory': { hasItalic: true },
'gluten': { hasItalic: false },
'googlesanscode': { hasItalic: true },
'grenzegotisch': { hasItalic: false },
'handjet': { hasItalic: false },
'heebo': { hasItalic: false },
'hostgrotesk': { hasItalic: true },
'imbue': { hasItalic: false },
'inclusivesans': { hasItalic: true },
'instrumentsans': { hasItalic: true },
'jetbrainsmono': { hasItalic: true },
'jura': { hasItalic: false },
'kalnia': { hasItalic: false },
'karla': { hasItalic: true },
'kreon': { hasItalic: false },
'kumbhsans': { hasItalic: false },
'labrada': { hasItalic: true },
'leaguespartan': { hasItalic: false },
'lemonada': { hasItalic: false },
'lexend': { hasItalic: false },
'lexenddeca': { hasItalic: false },
'librefranklin': { hasItalic: true },
'lora': { hasItalic: true },
'manuale': { hasItalic: true },
'manrope': { hasItalic: false },
'mavenpro': { hasItalic: false },
'merriweathersans': { hasItalic: true },
'montserrat': { hasItalic: true },
'mulish': { hasItalic: true },
'nunito': { hasItalic: true },
'orbitron': { hasItalic: false },
'oswald': { hasItalic: false },
'outfit': { hasItalic: false },
'oxanium': { hasItalic: false },
'parkinsans': { hasItalic: false },
'petrona': { hasItalic: true },
'playfairdisplay': { hasItalic: true },
'playwriteusmodern': { hasItalic: false },
'playwriteustrad': { hasItalic: false },
'plusjakartasans': { hasItalic: true },
'pontanosans': { hasItalic: false },
'publicsans': { hasItalic: true },
'quicksand': { hasItalic: false },
'radiocanadabig': { hasItalic: true },
'raleway': { hasItalic: true },
'redhatdisplay': { hasItalic: true },
'redhatmono': { hasItalic: true },
'redhattext': { hasItalic: true },
'redrose': { hasItalic: false },
'rem': { hasItalic: true },
'robotoflex': { hasItalic: false },
'robotoslab': { hasItalic: false },
'rokkitt': { hasItalic: true },
'rubik': { hasItalic: true },
'ruda': { hasItalic: false },
'smoochsans': { hasItalic: false },
'sourcecodepro': { hasItalic: true },
'sora': { hasItalic: false },
'spartan': { hasItalic: false },
'sticknobills': { hasItalic: false },
'susemono': { hasItalic: true },
'system-ui': { hasItalic: false },
'teachers': { hasItalic: true },
'tektur': { hasItalic: false },
'tourney': { hasItalic: true },
'urbanist': { hasItalic: true },
'varta': { hasItalic: false },
'victormono': { hasItalic: true },
'wixmadefortext': { hasItalic: true },
'workbench': { hasItalic: false },
'worksans': { hasItalic: true },
'yanonekaffeesatz': { hasItalic: false },
'zalandosans': { hasItalic: true },
'zalandosansexpanded': { hasItalic: true },
'yrsa': { hasItalic: true }
};
const addFontAsset = (font, hasItalic) => {
assets.add('/fonts/' + font + '/' + font + '.woff2');
if (hasItalic && fontParams[font]?.hasItalic) {
assets.add('/fonts/' + font + '/' + font + '-italic.woff2');
}
};
if (fontBody !== 'system-ui') {
addFontAsset(fontBody, fontBodyItalic);
}
if (fontHeadings !== 'system-ui' && fontHeadings !== fontBody) {
addFontAsset(fontHeadings, fontHeadingsItalic);
} else if (fontHeadingsItalic && !fontBodyItalic && fontParams[fontHeadings]?.hasItalic) {
addFontAsset(fontHeadings, fontHeadingsItalic);
}
return Array.from(assets);
};
================================================
FILE: app/default-files/default-themes/simple/index.hbs
================================================
{{> head}}
{{> navbar}}
{{#if @config.custom.textHero}}
{{{@config.custom.textHero}}}
{{/if}}
{{#if @renderer.isFirstPage}}
{{#if @config.custom.uploadHero}}
{{#if @config.custom.uploadHeroCaption}}
{{@config.custom.uploadHeroCaption}}
{{/if}}
{{/if}}
{{/if}}
{{#each posts}}
{{#if @config.custom.feedFeaturedImage}}
{{#featuredImage}}
{{#if url}}
{{/if}}
{{/featuredImage}}
{{/if}}
{{#checkIfAny @config.custom.feedAvatar @config.custom.feedAuthor @config.custom.feedDate}}
{{/checkIfAny}}
{{#if hasCustomExcerpt}}
{{{ excerpt }}}
{{else}}
{{{ excerpt }}}
{{/if}}
{{#if @config.custom.feedtReadMore}}
{{ translate 'post.readMore' }}
{{/if}}
{{/each}}
{{> pagination}}
{{> footer}}
================================================
FILE: app/default-files/default-themes/simple/page-empty.hbs
================================================
{{> head}}
{{> navbar}}
{{#page}}
{{#featuredImage}}
{{#if url}}
{{#checkIfAny caption credits}}
{{caption}}
{{credits}}
{{/checkIfAny}}
{{/if}}
{{/featuredImage}}
{{{text}}}
{{#if @config.page.displayChildPages}}
{{#if subpages}}
{{ translate 'page.childPages' }}
{{/if}}
{{/if}}
{{#if @customHTML.afterPage}}
{{{@customHTML.afterPage}}}
{{/if}}
{{/page}}
{{> footer}}
================================================
FILE: app/default-files/default-themes/simple/page.hbs
================================================
{{> head}}
{{> navbar}}
{{#page}}
{{title}}
{{#checkIfAny @config.page.displayAuthor @config.page.displayDate}}
{{#if @config.page.displayAuthor}}
{{#author}}
{{#if avatar}}

{{/if}}
{{name}}
{{/author}}
{{/if}}
{{#if @config.page.displayDate}}
{{/if}}
{{/checkIfAny}}
{{#featuredImage}}
{{#if url}}
{{#checkIfAny caption credits}}
{{caption}}
{{credits}}
{{/checkIfAny}}
{{/if}}
{{/featuredImage}}
{{{text}}}
{{#checkIfAny @config.page.displayLastUpdatedDate @config.page.displayShareButtons @config.page.displayAuthorBio}}
{{/checkIfAny}}
{{#if @config.page.displayChildPages}}
{{#if subpages}}
{{ translate 'page.childPages' }}
{{/if}}
{{/if}}
{{#if @config.page.displayComments}}
{{/if}}
{{#if @customHTML.afterPage}}
{{{@customHTML.afterPage}}}
{{/if}}
{{/page}}
{{> footer}}
================================================
FILE: app/default-files/default-themes/simple/partials/fonts.hbs
================================================
{{#checkIf @config.custom.fontBody '!==' "system-ui"}}
{{#if @config.custom.fontBodyItalic}}
{{/if}}
{{/checkIf}}
{{#checkIf @config.custom.fontHeadings '!==' "system-ui"}}
{{#checkIf @config.custom.fontHeadings '!==' @config.custom.fontBody}}
{{#if @config.custom.fontHeadingsItalic}}
{{/if}}
{{else}}
{{#unless @config.custom.fontBodyItalic}}
{{#if @config.custom.fontHeadingsItalic}}
{{/if}}
{{/unless}}
{{/checkIf}}
{{/checkIf}}
================================================
FILE: app/default-files/default-themes/simple/partials/footer.hbs
================================================
{{#if @config.site.mediaLazyLoad}}
{{/if}}
{{#if @renderer.previewMode}}
{{/if}}
{{{@footerCustomCode}}}
{{{ publiiFooter }}}