Add Dockerfile, theme, composer setup, and .gitignore
|
|
@ -0,0 +1,78 @@
|
|||
# -------------------------------------------------
|
||||
# 1️⃣ Base image – official WordPress (PHP 8.2 + Apache)
|
||||
# -------------------------------------------------
|
||||
FROM wordpress:php8.2-apache
|
||||
|
||||
# -------------------------------------------------
|
||||
# 2️⃣ Remove every bundled WordPress theme (bloat)
|
||||
# -------------------------------------------------
|
||||
RUN rm -rf /usr/src/wordpress/wp-content/themes/*
|
||||
|
||||
# -------------------------------------------------
|
||||
# 3️⃣ PHP configuration (optional – increase limits)
|
||||
# -------------------------------------------------
|
||||
COPY config/php.ini /usr/local/etc/php/conf.d/custom.ini
|
||||
|
||||
# -------------------------------------------------
|
||||
# 4️⃣ Install system utilities (unzip) and Composer
|
||||
# -------------------------------------------------
|
||||
RUN apt-get update && \
|
||||
apt-get install -y --no-install-recommends unzip && \
|
||||
rm -rf /var/lib/apt/lists/* && \
|
||||
curl -sS https://getcomposer.org/installer | \
|
||||
php -- --install-dir=/usr/local/bin --filename=composer
|
||||
|
||||
# -------------------------------------------------
|
||||
# 5️⃣ Install WP‑CLI (handy for wp commands)
|
||||
# -------------------------------------------------
|
||||
RUN curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar && \
|
||||
chmod +x wp-cli.phar && \
|
||||
mv wp-cli.phar /usr/local/bin/wp
|
||||
|
||||
# -------------------------------------------------
|
||||
# 6️⃣ Install plugins via Composer
|
||||
# -------------------------------------------------
|
||||
WORKDIR /var/www/html
|
||||
COPY composer.json composer.lock ./
|
||||
RUN composer install --no-dev --optimize-autoloader && \
|
||||
rm composer.json composer.lock
|
||||
|
||||
# -------------------------------------------------
|
||||
# 7️⃣ Copy your custom theme (already built)
|
||||
# -------------------------------------------------
|
||||
# The folder `indy-wp/indywp/` should contain the final theme
|
||||
# structure, including a top‑level `style.css`.
|
||||
COPY indy-wp/indywp/ /var/www/html/wp-content/themes/indywp/
|
||||
|
||||
# -------------------------------------------------
|
||||
# 8️⃣ Copy the theme’s media folder into the theme directory
|
||||
# -------------------------------------------------
|
||||
COPY indy-wp/media/ /var/www/html/wp-content/themes/indywp/images/
|
||||
|
||||
# -------------------------------------------------
|
||||
# 9️⃣ (Optional) copy any extra project files you need
|
||||
# -------------------------------------------------
|
||||
COPY src/ /var/www/html/wp-content/mu-plugins/
|
||||
|
||||
# -------------------------------------------------
|
||||
# 🔟 Ensure wp‑content is writable by www-data
|
||||
# -------------------------------------------------
|
||||
RUN mkdir -p /var/www/html/wp-content/uploads && \
|
||||
chown -R www-data:www-data /var/www/html/wp-content && \
|
||||
chmod -R 775 /var/www/html/wp-content
|
||||
|
||||
# -------------------------------------------------
|
||||
# 🛡️ Healthcheck (optional)
|
||||
# -------------------------------------------------
|
||||
HEALTHCHECK --interval=30s --timeout=5s \
|
||||
CMD curl -f http://localhost/wp-admin/install.php || exit 1
|
||||
|
||||
# -------------------------------------------------
|
||||
# 📣 Expose HTTP
|
||||
# -------------------------------------------------
|
||||
EXPOSE 80
|
||||
|
||||
# -------------------------------------------------
|
||||
# 🚀 Default command – Apache in foreground
|
||||
# -------------------------------------------------
|
||||
CMD ["apache2-foreground"]
|
||||
|
|
@ -0,0 +1,43 @@
|
|||
{
|
||||
"name": "indymedia/indymedia-wordpress",
|
||||
"version": "0.1.0",
|
||||
"require": {
|
||||
"wpackagist-plugin/activitypub": "^2.0",
|
||||
"wpackagist-plugin/antispam-bee": "^2.11",
|
||||
"wpackagist-plugin/archiveo-importer-wayback": "*",
|
||||
"wpackagist-plugin/easyfonts": "^1.2",
|
||||
"wpackagist-plugin/embed-privacy": "^1.12",
|
||||
"wpackagist-plugin/exif-remover": "^1.0",
|
||||
"wpackagist-plugin/frontend-post-submission-manager-lite": "dev-trunk",
|
||||
"wpackagist-plugin/indieweb": "dev-trunk",
|
||||
"wpackagist-plugin/lh-wayback-machine": "*",
|
||||
"wpackagist-plugin/og": "^1.0",
|
||||
"wpackagist-plugin/pretty-rss-feeds": "^1.0",
|
||||
"wpackagist-plugin/remove-ip": "^0.1",
|
||||
"wpackagist-plugin/safe-paste": "^1.0",
|
||||
"wpackagist-plugin/syndication-links": "^4.5",
|
||||
"wpackagist-plugin/unpredictable-image-filenames": "^1.0",
|
||||
"wpackagist-plugin/webmention": "^5.0",
|
||||
"wpackagist-plugin/wp-super-cache": "^2.0"
|
||||
},
|
||||
"repositories": [
|
||||
{
|
||||
"type": "composer",
|
||||
"url": "https://wpackagist.org"
|
||||
}
|
||||
],
|
||||
"extra": {
|
||||
"installer-paths": {
|
||||
"wp-content/plugins/{$name}/": [
|
||||
"type:wordpress-plugin"
|
||||
]
|
||||
}
|
||||
},
|
||||
"minimum-stability": "dev",
|
||||
"prefer-stable": true,
|
||||
"config": {
|
||||
"allow-plugins": {
|
||||
"composer/installers": true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,476 @@
|
|||
{
|
||||
"_readme": [
|
||||
"This file locks the dependencies of your project to a known state",
|
||||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
||||
"This file is @generated automatically"
|
||||
],
|
||||
"content-hash": "8c1762770643740292ac9dbfe1d2cc98",
|
||||
"packages": [
|
||||
{
|
||||
"name": "composer/installers",
|
||||
"version": "v2.3.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/composer/installers.git",
|
||||
"reference": "12fb2dfe5e16183de69e784a7b84046c43d97e8e"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/composer/installers/zipball/12fb2dfe5e16183de69e784a7b84046c43d97e8e",
|
||||
"reference": "12fb2dfe5e16183de69e784a7b84046c43d97e8e",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"composer-plugin-api": "^1.0 || ^2.0",
|
||||
"php": "^7.2 || ^8.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"composer/composer": "^1.10.27 || ^2.7",
|
||||
"composer/semver": "^1.7.2 || ^3.4.0",
|
||||
"phpstan/phpstan": "^1.11",
|
||||
"phpstan/phpstan-phpunit": "^1",
|
||||
"symfony/phpunit-bridge": "^7.1.1",
|
||||
"symfony/process": "^5 || ^6 || ^7"
|
||||
},
|
||||
"type": "composer-plugin",
|
||||
"extra": {
|
||||
"class": "Composer\\Installers\\Plugin",
|
||||
"branch-alias": {
|
||||
"dev-main": "2.x-dev"
|
||||
},
|
||||
"plugin-modifies-install-path": true
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Composer\\Installers\\": "src/Composer/Installers"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Kyle Robinson Young",
|
||||
"email": "kyle@dontkry.com",
|
||||
"homepage": "https://github.com/shama"
|
||||
}
|
||||
],
|
||||
"description": "A multi-framework Composer library installer",
|
||||
"homepage": "https://composer.github.io/installers/",
|
||||
"keywords": [
|
||||
"Dolibarr",
|
||||
"Eliasis",
|
||||
"Hurad",
|
||||
"ImageCMS",
|
||||
"Kanboard",
|
||||
"Lan Management System",
|
||||
"MODX Evo",
|
||||
"MantisBT",
|
||||
"Mautic",
|
||||
"Maya",
|
||||
"OXID",
|
||||
"Plentymarkets",
|
||||
"Porto",
|
||||
"RadPHP",
|
||||
"SMF",
|
||||
"Starbug",
|
||||
"Thelia",
|
||||
"Whmcs",
|
||||
"WolfCMS",
|
||||
"agl",
|
||||
"annotatecms",
|
||||
"attogram",
|
||||
"bitrix",
|
||||
"cakephp",
|
||||
"chef",
|
||||
"cockpit",
|
||||
"codeigniter",
|
||||
"concrete5",
|
||||
"concreteCMS",
|
||||
"croogo",
|
||||
"dokuwiki",
|
||||
"drupal",
|
||||
"eZ Platform",
|
||||
"elgg",
|
||||
"expressionengine",
|
||||
"fuelphp",
|
||||
"grav",
|
||||
"installer",
|
||||
"itop",
|
||||
"known",
|
||||
"kohana",
|
||||
"laravel",
|
||||
"lavalite",
|
||||
"lithium",
|
||||
"magento",
|
||||
"majima",
|
||||
"mako",
|
||||
"matomo",
|
||||
"mediawiki",
|
||||
"miaoxing",
|
||||
"modulework",
|
||||
"modx",
|
||||
"moodle",
|
||||
"osclass",
|
||||
"pantheon",
|
||||
"phpbb",
|
||||
"piwik",
|
||||
"ppi",
|
||||
"processwire",
|
||||
"puppet",
|
||||
"pxcms",
|
||||
"reindex",
|
||||
"roundcube",
|
||||
"shopware",
|
||||
"silverstripe",
|
||||
"sydes",
|
||||
"sylius",
|
||||
"tastyigniter",
|
||||
"wordpress",
|
||||
"yawik",
|
||||
"zend",
|
||||
"zikula"
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/composer/installers/issues",
|
||||
"source": "https://github.com/composer/installers/tree/v2.3.0"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://packagist.com",
|
||||
"type": "custom"
|
||||
},
|
||||
{
|
||||
"url": "https://github.com/composer",
|
||||
"type": "github"
|
||||
},
|
||||
{
|
||||
"url": "https://tidelift.com/funding/github/packagist/composer/composer",
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2024-06-24T20:46:46+00:00"
|
||||
},
|
||||
{
|
||||
"name": "wpackagist-plugin/activitypub",
|
||||
"version": "2.6.1",
|
||||
"source": {
|
||||
"type": "svn",
|
||||
"url": "https://plugins.svn.wordpress.org/activitypub/",
|
||||
"reference": "tags/2.6.1"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://downloads.wordpress.org/plugin/activitypub.2.6.1.zip"
|
||||
},
|
||||
"require": {
|
||||
"composer/installers": "^1.0 || ^2.0"
|
||||
},
|
||||
"type": "wordpress-plugin",
|
||||
"homepage": "https://wordpress.org/plugins/activitypub/"
|
||||
},
|
||||
{
|
||||
"name": "wpackagist-plugin/antispam-bee",
|
||||
"version": "2.11.8",
|
||||
"source": {
|
||||
"type": "svn",
|
||||
"url": "https://plugins.svn.wordpress.org/antispam-bee/",
|
||||
"reference": "tags/2.11.8"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://downloads.wordpress.org/plugin/antispam-bee.2.11.8.zip"
|
||||
},
|
||||
"require": {
|
||||
"composer/installers": "^1.0 || ^2.0"
|
||||
},
|
||||
"type": "wordpress-plugin",
|
||||
"homepage": "https://wordpress.org/plugins/antispam-bee/"
|
||||
},
|
||||
{
|
||||
"name": "wpackagist-plugin/archiveo-importer-wayback",
|
||||
"version": "2.5.0",
|
||||
"source": {
|
||||
"type": "svn",
|
||||
"url": "https://plugins.svn.wordpress.org/archiveo-importer-wayback/",
|
||||
"reference": "tags/2.5.0"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://downloads.wordpress.org/plugin/archiveo-importer-wayback.2.5.0.zip"
|
||||
},
|
||||
"require": {
|
||||
"composer/installers": "^1.0 || ^2.0"
|
||||
},
|
||||
"type": "wordpress-plugin",
|
||||
"homepage": "https://wordpress.org/plugins/archiveo-importer-wayback/"
|
||||
},
|
||||
{
|
||||
"name": "wpackagist-plugin/easyfonts",
|
||||
"version": "1.2.0",
|
||||
"source": {
|
||||
"type": "svn",
|
||||
"url": "https://plugins.svn.wordpress.org/easyfonts/",
|
||||
"reference": "trunk"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://downloads.wordpress.org/plugin/easyfonts.zip?timestamp=1759684969"
|
||||
},
|
||||
"require": {
|
||||
"composer/installers": "^1.0 || ^2.0"
|
||||
},
|
||||
"type": "wordpress-plugin",
|
||||
"homepage": "https://wordpress.org/plugins/easyfonts/"
|
||||
},
|
||||
{
|
||||
"name": "wpackagist-plugin/embed-privacy",
|
||||
"version": "1.12.3",
|
||||
"source": {
|
||||
"type": "svn",
|
||||
"url": "https://plugins.svn.wordpress.org/embed-privacy/",
|
||||
"reference": "tags/1.12.3"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://downloads.wordpress.org/plugin/embed-privacy.1.12.3.zip"
|
||||
},
|
||||
"require": {
|
||||
"composer/installers": "^1.0 || ^2.0"
|
||||
},
|
||||
"type": "wordpress-plugin",
|
||||
"homepage": "https://wordpress.org/plugins/embed-privacy/"
|
||||
},
|
||||
{
|
||||
"name": "wpackagist-plugin/exif-remover",
|
||||
"version": "1.0.2",
|
||||
"source": {
|
||||
"type": "svn",
|
||||
"url": "https://plugins.svn.wordpress.org/exif-remover/",
|
||||
"reference": "tags/1.0.2"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://downloads.wordpress.org/plugin/exif-remover.1.0.2.zip"
|
||||
},
|
||||
"require": {
|
||||
"composer/installers": "^1.0 || ^2.0"
|
||||
},
|
||||
"type": "wordpress-plugin",
|
||||
"homepage": "https://wordpress.org/plugins/exif-remover/"
|
||||
},
|
||||
{
|
||||
"name": "wpackagist-plugin/frontend-post-submission-manager-lite",
|
||||
"version": "dev-trunk",
|
||||
"source": {
|
||||
"type": "svn",
|
||||
"url": "https://plugins.svn.wordpress.org/frontend-post-submission-manager-lite/",
|
||||
"reference": "trunk"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://downloads.wordpress.org/plugin/frontend-post-submission-manager-lite.zip?timestamp=1770790636"
|
||||
},
|
||||
"require": {
|
||||
"composer/installers": "^1.0 || ^2.0"
|
||||
},
|
||||
"type": "wordpress-plugin",
|
||||
"homepage": "https://wordpress.org/plugins/frontend-post-submission-manager-lite/",
|
||||
"time": "2026-02-11T06:17:16+00:00"
|
||||
},
|
||||
{
|
||||
"name": "wpackagist-plugin/indieweb",
|
||||
"version": "dev-trunk",
|
||||
"source": {
|
||||
"type": "svn",
|
||||
"url": "https://plugins.svn.wordpress.org/indieweb/",
|
||||
"reference": "trunk"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://downloads.wordpress.org/plugin/indieweb.zip?timestamp=1766179870"
|
||||
},
|
||||
"require": {
|
||||
"composer/installers": "^1.0 || ^2.0"
|
||||
},
|
||||
"type": "wordpress-plugin",
|
||||
"homepage": "https://wordpress.org/plugins/indieweb/",
|
||||
"time": "2025-12-19T21:31:10+00:00"
|
||||
},
|
||||
{
|
||||
"name": "wpackagist-plugin/lh-wayback-machine",
|
||||
"version": "1.03",
|
||||
"source": {
|
||||
"type": "svn",
|
||||
"url": "https://plugins.svn.wordpress.org/lh-wayback-machine/",
|
||||
"reference": "trunk"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://downloads.wordpress.org/plugin/lh-wayback-machine.zip?timestamp=1659590941"
|
||||
},
|
||||
"require": {
|
||||
"composer/installers": "^1.0 || ^2.0"
|
||||
},
|
||||
"type": "wordpress-plugin",
|
||||
"homepage": "https://wordpress.org/plugins/lh-wayback-machine/"
|
||||
},
|
||||
{
|
||||
"name": "wpackagist-plugin/og",
|
||||
"version": "1.0",
|
||||
"source": {
|
||||
"type": "svn",
|
||||
"url": "https://plugins.svn.wordpress.org/og/",
|
||||
"reference": "tags/1.0"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://downloads.wordpress.org/plugin/og.1.0.zip"
|
||||
},
|
||||
"require": {
|
||||
"composer/installers": "^1.0 || ^2.0"
|
||||
},
|
||||
"type": "wordpress-plugin",
|
||||
"homepage": "https://wordpress.org/plugins/og/"
|
||||
},
|
||||
{
|
||||
"name": "wpackagist-plugin/pretty-rss-feeds",
|
||||
"version": "1.0.0",
|
||||
"source": {
|
||||
"type": "svn",
|
||||
"url": "https://plugins.svn.wordpress.org/pretty-rss-feeds/",
|
||||
"reference": "tags/1.0.0"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://downloads.wordpress.org/plugin/pretty-rss-feeds.1.0.0.zip"
|
||||
},
|
||||
"require": {
|
||||
"composer/installers": "^1.0 || ^2.0"
|
||||
},
|
||||
"type": "wordpress-plugin",
|
||||
"homepage": "https://wordpress.org/plugins/pretty-rss-feeds/"
|
||||
},
|
||||
{
|
||||
"name": "wpackagist-plugin/remove-ip",
|
||||
"version": "0.1",
|
||||
"source": {
|
||||
"type": "svn",
|
||||
"url": "https://plugins.svn.wordpress.org/remove-ip/",
|
||||
"reference": "trunk"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://downloads.wordpress.org/plugin/remove-ip.zip?timestamp=1450801296"
|
||||
},
|
||||
"require": {
|
||||
"composer/installers": "^1.0 || ^2.0"
|
||||
},
|
||||
"type": "wordpress-plugin",
|
||||
"homepage": "https://wordpress.org/plugins/remove-ip/"
|
||||
},
|
||||
{
|
||||
"name": "wpackagist-plugin/safe-paste",
|
||||
"version": "1.1.9",
|
||||
"source": {
|
||||
"type": "svn",
|
||||
"url": "https://plugins.svn.wordpress.org/safe-paste/",
|
||||
"reference": "tags/1.1.9"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://downloads.wordpress.org/plugin/safe-paste.1.1.9.zip"
|
||||
},
|
||||
"require": {
|
||||
"composer/installers": "^1.0 || ^2.0"
|
||||
},
|
||||
"type": "wordpress-plugin",
|
||||
"homepage": "https://wordpress.org/plugins/safe-paste/"
|
||||
},
|
||||
{
|
||||
"name": "wpackagist-plugin/syndication-links",
|
||||
"version": "4.5.3",
|
||||
"source": {
|
||||
"type": "svn",
|
||||
"url": "https://plugins.svn.wordpress.org/syndication-links/",
|
||||
"reference": "tags/4.5.3"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://downloads.wordpress.org/plugin/syndication-links.4.5.3.zip"
|
||||
},
|
||||
"require": {
|
||||
"composer/installers": "^1.0 || ^2.0"
|
||||
},
|
||||
"type": "wordpress-plugin",
|
||||
"homepage": "https://wordpress.org/plugins/syndication-links/"
|
||||
},
|
||||
{
|
||||
"name": "wpackagist-plugin/unpredictable-image-filenames",
|
||||
"version": "1.0",
|
||||
"source": {
|
||||
"type": "svn",
|
||||
"url": "https://plugins.svn.wordpress.org/unpredictable-image-filenames/",
|
||||
"reference": "tags/1.0"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://downloads.wordpress.org/plugin/unpredictable-image-filenames.1.0.zip"
|
||||
},
|
||||
"require": {
|
||||
"composer/installers": "^1.0 || ^2.0"
|
||||
},
|
||||
"type": "wordpress-plugin",
|
||||
"homepage": "https://wordpress.org/plugins/unpredictable-image-filenames/"
|
||||
},
|
||||
{
|
||||
"name": "wpackagist-plugin/webmention",
|
||||
"version": "5.6.2",
|
||||
"source": {
|
||||
"type": "svn",
|
||||
"url": "https://plugins.svn.wordpress.org/webmention/",
|
||||
"reference": "tags/5.6.2"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://downloads.wordpress.org/plugin/webmention.5.6.2.zip"
|
||||
},
|
||||
"require": {
|
||||
"composer/installers": "^1.0 || ^2.0"
|
||||
},
|
||||
"type": "wordpress-plugin",
|
||||
"homepage": "https://wordpress.org/plugins/webmention/"
|
||||
},
|
||||
{
|
||||
"name": "wpackagist-plugin/wp-super-cache",
|
||||
"version": "2.0.1",
|
||||
"source": {
|
||||
"type": "svn",
|
||||
"url": "https://plugins.svn.wordpress.org/wp-super-cache/",
|
||||
"reference": "tags/2.0.1"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://downloads.wordpress.org/plugin/wp-super-cache.2.0.1.zip"
|
||||
},
|
||||
"require": {
|
||||
"composer/installers": "^1.0 || ^2.0"
|
||||
},
|
||||
"type": "wordpress-plugin",
|
||||
"homepage": "https://wordpress.org/plugins/wp-super-cache/"
|
||||
}
|
||||
],
|
||||
"packages-dev": [],
|
||||
"aliases": [],
|
||||
"minimum-stability": "dev",
|
||||
"stability-flags": {
|
||||
"wpackagist-plugin/frontend-post-submission-manager-lite": 20,
|
||||
"wpackagist-plugin/indieweb": 20
|
||||
},
|
||||
"prefer-stable": true,
|
||||
"prefer-lowest": false,
|
||||
"platform": [],
|
||||
"platform-dev": [],
|
||||
"plugin-api-version": "2.6.0"
|
||||
}
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
upload_max_filesize = 64M
|
||||
post_max_size = 64M
|
||||
memory_limit = 256M
|
||||
max_execution_time = 300
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
/*
|
||||
* Link styles
|
||||
* https://github.com/WordPress/gutenberg/issues/42319
|
||||
*/
|
||||
a {
|
||||
text-decoration-thickness: 1px !important;
|
||||
text-underline-offset: .1em;
|
||||
}
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
# Authentic Sans
|
||||
|
||||
A typeface intended for situations where Oriya Sangam MN seems too sophisticated and LiHei Pro too vulgar, or vice versa. Authentic Sans explores the semiotic and aesthetic idiosyncrasies of the anonymous Latin glyphs included with CJK system fonts; the typeface aims to subvert the Eurocentric standards of typographic quality and refinement. Distributed freely under the WTFPL, Authentic Sans is a reflection of the studio praxis: expanding and redefining the visual and cultural boundaries of default systems. The typeface was first used on the booth poster for Cooperative Editions and Common Satisfactory Standard at the 2015 NY Art Book Fair.
|
||||
|
||||
## License
|
||||
|
||||
Authentic Sans is released freely under the [WTFPL](http://www.wtfpl.net/).
|
||||
|
||||
**OpenType (.otf) font files are provided for:**
|
||||
- **Non-commercial work**
|
||||
- **Personal projects**
|
||||
- **Free, open-source, peer-to-peer initiatives**
|
||||
- **Educational purposes**
|
||||
- **Academic research**
|
||||
|
||||
For commercial work, web fonts, and projects requiring additional special or accented characters you are advised to license [**Authentic Sans Pro**](https://authentic.website/sanspro) under the appropriate business license. Consult the full glyphs list for Authentic Sans Pro and license the typeface on the [Authentic website](https://authentic.website).
|
||||
|
||||
Read the full WTFPL license agreement [here](http://authentic.website/license/wtfpl.txt), visit [wtfpl.net](http://www.wtfpl.net/) for more information, and contact email@authentic.website with any questions.
|
||||
|
|
@ -0,0 +1,14 @@
|
|||
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
|
||||
Version 2, December 2004
|
||||
|
||||
Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
|
||||
|
||||
Everyone is permitted to copy and distribute verbatim or modified
|
||||
copies of this license document, and changing it is allowed as long
|
||||
as the name is changed.
|
||||
|
||||
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
|
||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||
|
||||
0. You just DO WHAT THE FUCK YOU WANT TO.
|
||||
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
License: Free for Commercial Use
|
||||
Link: https://befonts.com/inclusive-sans-font.html
|
||||
|
|
@ -0,0 +1,93 @@
|
|||
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://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.
|
||||
|
|
@ -0,0 +1,76 @@
|
|||
|
||||
# Inclusive Sans
|
||||
|
||||
Inclusive Sans is a text font designed for accessibility and readability. It is inspired by the friendly personality of contemporary neo-grotesques while incorporating key features to make it highly legible in all uses.
|
||||
|
||||
|
||||

|
||||

|
||||

|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
|
||||
|
||||
## Background
|
||||
|
||||
The conversation and guidelines around accessibility in typography has largely centred on type sizes and colour contrasts [^1]. However research [^2] has shown that accessibility in type is crucial at a character level, where key features can enhance the readability of text for those who are hard of seeing or are neurodiverse.
|
||||
|
||||
After reading Sophie Beier's book Reading Letters: Designing for Legibility [^3], working with clients across in disability non-for-profits and large government organisations, as well as conversations with fellow designer Johanna Roca, Olivia King was inspired to create a typeface that was truly legible at a character level. While some typefaces had been created in the same spirit [^4], she wanted to create a font that was more contemporary and usable as a text typeface for all types of use.
|
||||
|
||||
To meet the criteria as outlined in Beier's work as well as Gareth Ford William's Guide [^5], Inclusive Sans incorporates the following key features:
|
||||
|
||||
1. Clear distinction between I, l and 1
|
||||
2. Non-mirroring of letters d, b, q and p
|
||||
3. Distinction between O and 0
|
||||
4. Wider, more open counter forms on c, o, a and e
|
||||
5. A higher x-height for easier readability at small sizes
|
||||
6. Wider default letter-spacing
|
||||
7. Clear difference between capital height and ascender height
|
||||
|
||||
In early 2021 Olivia started work on the regular weight of Inclusive Sans while participating in a 10 week type design course run by Troy Leinster, and by August that year she had completed the majority of the full Latin set. Living and working on Gadigal Country (Sydney, Australia) she felt it was important to include support for Aboriginal and Torres Strait Islander languages. She added an additional 48 glyphs with the help of Vincent Chan (in consultation with Sasha Wilmouth from the University of Melbourne).
|
||||
|
||||
Additional weights and styles are currently in development.
|
||||
|
||||
|
||||
[^1]: See WCAG 2 section 1.4 on Distinguishable https://www.w3.org/WAI/WCAG21/quickref/#distinguishable
|
||||
[^2]: See Sophie Beier's 2009 thesis on typeface legibility
|
||||
[^3]: http://sofiebeier.dk/?page_id=390
|
||||
[^4]: https://www.myfonts.com/collections/fs-me-font-fontsmith
|
||||
[^5]: https://medium.com/the-readability-group/a-guide-to-understanding-what-makes-a-typeface-accessible-and-how-to-make-informed-decisions-9e5c0b9040a0
|
||||
|
||||
|
||||
|
||||
## Building
|
||||
|
||||
Fonts are built automatically by GitHub Actions - take a look in the "Actions" tab for the latest build.
|
||||
|
||||
If you want to build fonts manually on your own computer:
|
||||
|
||||
* `make build` will produce font files.
|
||||
* `make test` will run [FontBakery](https://github.com/googlefonts/fontbakery)'s quality assurance tests.
|
||||
* `make proof` will generate HTML proof files.
|
||||
|
||||
The proof files and QA tests are also available automatically via GitHub Actions - look at https://LivKing.github.io/Inclusive-Sans.
|
||||
|
||||
## Changelog
|
||||
|
||||
When you update your font (new version or new release), please report all notable changes here, with a date.
|
||||
[Font Versioning](https://github.com/googlefonts/gf-docs/tree/main/Spec#font-versioning) is based on semver.
|
||||
Changelog example:
|
||||
|
||||
**26 May 2021. Version 2.13**
|
||||
- MAJOR Font turned to a variable font.
|
||||
- SIGNIFICANT New Stylistic sets added.
|
||||
|
||||
## License
|
||||
|
||||
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
||||
This license is available with a FAQ at
|
||||
https://scripts.sil.org/OFL
|
||||
|
||||
## Repository Layout
|
||||
|
||||
This font repository structure is inspired by [Unified Font Repository v0.3](https://github.com/unified-font-repository/Unified-Font-Repository), modified for the Google Fonts workflow.
|
||||
|
|
@ -0,0 +1,46 @@
|
|||
Digitized data copyright (c) 2010 Google Corporation
|
||||
with Reserved Font Arimo, Tinos and Cousine.
|
||||
Copyright (c) 2012 Red Hat, Inc.
|
||||
with Reserved Font Name Liberation.
|
||||
|
||||
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.
|
||||
|
After Width: | Height: | Size: 47 KiB |
|
After Width: | Height: | Size: 42 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 9.9 KiB |
|
After Width: | Height: | Size: 5.3 KiB |
|
After Width: | Height: | Size: 13 KiB |
|
After Width: | Height: | Size: 3.6 KiB |
|
After Width: | Height: | Size: 1.7 KiB |
|
|
@ -0,0 +1,90 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
id="svg2"
|
||||
xml:space="preserve"
|
||||
width="73.217003"
|
||||
height="65.999573"
|
||||
viewBox="0 0 73.217003 65.999572"
|
||||
sodipodi:docname="logo.svg"
|
||||
inkscape:version="0.92.1 r15371"><metadata
|
||||
id="metadata8"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs6"><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath260"><path
|
||||
d="m 2662.66,3304.07 h 1325 V 5470 h -1325 z"
|
||||
id="path258"
|
||||
inkscape:connector-curvature="0" /></clipPath></defs><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1855"
|
||||
inkscape:window-height="1056"
|
||||
id="namedview4"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="-441.26033"
|
||||
inkscape:cy="-276.1104"
|
||||
inkscape:window-x="65"
|
||||
inkscape:window-y="24"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g10"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="1"
|
||||
fit-margin-right="1"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:pagecheckerboard="true" /><g
|
||||
id="g10"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="ink_ext_XXXXXX"
|
||||
transform="matrix(1.3333333,0,0,-1.3333333,-404.80603,941.48443)"><g
|
||||
id="g25"
|
||||
transform="matrix(0.28611706,0,0,0.28611706,236.33873,486.41378)"><path
|
||||
d="m 277.48,612.531 c 0,0 -43.642,19.486 -39.48,79.008 4.162,59.522 51.316,75.879 51.316,75.879 0,0 -34.772,-23.36 -38.505,-76.755 -3.735,-53.394 26.669,-78.132 26.669,-78.132"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1"
|
||||
id="path130"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 294.227,633.158 c 0,0 -31.432,14.033 -28.434,56.904 2.998,42.871 36.961,54.652 36.961,54.652 0,0 -25.045,-16.825 -27.734,-55.282 -2.69,-38.458 19.207,-56.274 19.207,-56.274"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1"
|
||||
id="path132"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 309.859,647.072 c 0,0 -22.384,9.996 -20.25,40.528 2.135,30.532 26.323,38.923 26.323,38.923 0,0 -17.836,-11.984 -19.752,-39.373 -1.916,-27.389 13.679,-40.078 13.679,-40.078"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1"
|
||||
id="path134"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 373.6,612.979 c 0,0 46.367,19.485 50.529,79.007 4.162,59.522 -40.705,75.88 -40.705,75.88 0,0 31.506,-23.36 27.772,-76.755 C 407.463,637.716 373.6,612.979 373.6,612.979"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1"
|
||||
id="path136"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 359.736,633.605 c 0,0 33.396,14.034 36.393,56.905 2.998,42.87 -29.318,54.652 -29.318,54.652 0,0 22.693,-16.825 20.003,-55.283 -2.689,-38.457 -27.078,-56.274 -27.078,-56.274"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1"
|
||||
id="path138"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 346.049,647.52 c 0,0 23.783,9.994 25.918,40.527 2.135,30.533 -20.877,38.923 -20.877,38.923 0,0 16.16,-11.984 14.244,-39.372 -1.915,-27.389 -19.285,-40.078 -19.285,-40.078"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1"
|
||||
id="path140"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 345.338,687.884 c -0.539,-7.706 -7.223,-13.953 -14.93,-13.953 -7.707,0 -13.516,6.247 -12.978,13.953 0.539,7.707 7.223,13.954 14.929,13.954 7.707,0 13.518,-6.247 12.979,-13.954"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1"
|
||||
id="path142"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 317.701,662.454 h -5.715 l 0.49,7 6.153,-0.174 h 24.383 l -4.473,-63.954 h 8.642 l -0.732,-10.465 h -42.325 l 0.685,9.791 h 8.641 l 4.251,57.802"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1"
|
||||
id="path144"
|
||||
inkscape:connector-curvature="0" /></g></g></svg>
|
||||
|
After Width: | Height: | Size: 4.8 KiB |
|
After Width: | Height: | Size: 1.7 KiB |
|
|
@ -0,0 +1,158 @@
|
|||
<?php
|
||||
/**
|
||||
* Twenty Twenty-Five functions and definitions.
|
||||
*
|
||||
* @link https://developer.wordpress.org/themes/basics/theme-functions/
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Twenty_Twenty_Five
|
||||
* @since Twenty Twenty-Five 1.0
|
||||
*/
|
||||
|
||||
// Adds theme support for post formats.
|
||||
if ( ! function_exists( 'twentytwentyfive_post_format_setup' ) ) :
|
||||
/**
|
||||
* Adds theme support for post formats.
|
||||
*
|
||||
* @since Twenty Twenty-Five 1.0
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function twentytwentyfive_post_format_setup() {
|
||||
add_theme_support( 'post-formats', array( 'aside', 'audio', 'chat', 'gallery', 'image', 'link', 'quote', 'status', 'video' ) );
|
||||
}
|
||||
endif;
|
||||
add_action( 'after_setup_theme', 'twentytwentyfive_post_format_setup' );
|
||||
|
||||
// Enqueues editor-style.css in the editors.
|
||||
if ( ! function_exists( 'twentytwentyfive_editor_style' ) ) :
|
||||
/**
|
||||
* Enqueues editor-style.css in the editors.
|
||||
*
|
||||
* @since Twenty Twenty-Five 1.0
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function twentytwentyfive_editor_style() {
|
||||
add_editor_style( 'assets/css/editor-style.css' );
|
||||
}
|
||||
endif;
|
||||
add_action( 'after_setup_theme', 'twentytwentyfive_editor_style' );
|
||||
|
||||
// Enqueues style.css on the front.
|
||||
if ( ! function_exists( 'twentytwentyfive_enqueue_styles' ) ) :
|
||||
/**
|
||||
* Enqueues style.css on the front.
|
||||
*
|
||||
* @since Twenty Twenty-Five 1.0
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function twentytwentyfive_enqueue_styles() {
|
||||
wp_enqueue_style(
|
||||
'twentytwentyfive-style',
|
||||
get_parent_theme_file_uri( 'style.css' ),
|
||||
array(),
|
||||
wp_get_theme()->get( 'Version' )
|
||||
);
|
||||
}
|
||||
endif;
|
||||
add_action( 'wp_enqueue_scripts', 'twentytwentyfive_enqueue_styles' );
|
||||
|
||||
// Registers custom block styles.
|
||||
if ( ! function_exists( 'twentytwentyfive_block_styles' ) ) :
|
||||
/**
|
||||
* Registers custom block styles.
|
||||
*
|
||||
* @since Twenty Twenty-Five 1.0
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function twentytwentyfive_block_styles() {
|
||||
register_block_style(
|
||||
'core/list',
|
||||
array(
|
||||
'name' => 'checkmark-list',
|
||||
'label' => __( 'Checkmark', 'twentytwentyfive' ),
|
||||
'inline_style' => '
|
||||
ul.is-style-checkmark-list {
|
||||
list-style-type: "\2713";
|
||||
}
|
||||
|
||||
ul.is-style-checkmark-list li {
|
||||
padding-inline-start: 1ch;
|
||||
}',
|
||||
)
|
||||
);
|
||||
}
|
||||
endif;
|
||||
add_action( 'init', 'twentytwentyfive_block_styles' );
|
||||
|
||||
// Registers pattern categories.
|
||||
if ( ! function_exists( 'twentytwentyfive_pattern_categories' ) ) :
|
||||
/**
|
||||
* Registers pattern categories.
|
||||
*
|
||||
* @since Twenty Twenty-Five 1.0
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function twentytwentyfive_pattern_categories() {
|
||||
|
||||
register_block_pattern_category(
|
||||
'twentytwentyfive_page',
|
||||
array(
|
||||
'label' => __( 'Pages', 'twentytwentyfive' ),
|
||||
'description' => __( 'A collection of full page layouts.', 'twentytwentyfive' ),
|
||||
)
|
||||
);
|
||||
|
||||
register_block_pattern_category(
|
||||
'twentytwentyfive_post-format',
|
||||
array(
|
||||
'label' => __( 'Post formats', 'twentytwentyfive' ),
|
||||
'description' => __( 'A collection of post format patterns.', 'twentytwentyfive' ),
|
||||
)
|
||||
);
|
||||
}
|
||||
endif;
|
||||
add_action( 'init', 'twentytwentyfive_pattern_categories' );
|
||||
|
||||
// Registers block binding sources.
|
||||
if ( ! function_exists( 'twentytwentyfive_register_block_bindings' ) ) :
|
||||
/**
|
||||
* Registers the post format block binding source.
|
||||
*
|
||||
* @since Twenty Twenty-Five 1.0
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function twentytwentyfive_register_block_bindings() {
|
||||
register_block_bindings_source(
|
||||
'twentytwentyfive/format',
|
||||
array(
|
||||
'label' => _x( 'Post format name', 'Label for the block binding placeholder in the editor', 'twentytwentyfive' ),
|
||||
'get_value_callback' => 'twentytwentyfive_format_binding',
|
||||
)
|
||||
);
|
||||
}
|
||||
endif;
|
||||
add_action( 'init', 'twentytwentyfive_register_block_bindings' );
|
||||
|
||||
// Registers block binding callback function for the post format name.
|
||||
if ( ! function_exists( 'twentytwentyfive_format_binding' ) ) :
|
||||
/**
|
||||
* Callback function for the post format name block binding source.
|
||||
*
|
||||
* @since Twenty Twenty-Five 1.0
|
||||
*
|
||||
* @return string|void Post format name, or nothing if the format is 'standard'.
|
||||
*/
|
||||
function twentytwentyfive_format_binding() {
|
||||
$post_format_slug = get_post_format();
|
||||
|
||||
if ( $post_format_slug && 'standard' !== $post_format_slug ) {
|
||||
return get_post_format_string( $post_format_slug );
|
||||
}
|
||||
}
|
||||
endif;
|
||||
|
|
@ -0,0 +1 @@
|
|||
<!-- wp:pattern {"slug":"twentytwentyfive/footer-columns"} /-->
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
<!-- wp:paragraph -->
|
||||
<p>Subscribe: <a href="/feed">RSS Feed</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
|
@ -0,0 +1,35 @@
|
|||
<!-- wp:group {"layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group"><!-- wp:group {"align":"wide","style":{"spacing":{"padding":{"right":"var:preset|spacing|30","left":"var:preset|spacing|30"}}},"layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group alignwide" style="padding-right:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)"><!-- wp:group {"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group"><!-- wp:group {"align":"full","style":{"spacing":{"margin":{"top":"0","bottom":"0"},"blockGap":"var:preset|spacing|20"}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group alignfull" style="margin-top:0;margin-bottom:0"><!-- wp:group {"align":"full","layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"left"}} -->
|
||||
<div class="wp-block-group alignfull"><!-- wp:group {"layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"left"}} -->
|
||||
<div class="wp-block-group"><!-- wp:group {"layout":{"type":"flex","flexWrap":"nowrap"}} -->
|
||||
<div class="wp-block-group"><!-- wp:group {"layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"left"}} -->
|
||||
<div class="wp-block-group"><!-- wp:site-logo {"width":29} /-->
|
||||
|
||||
<!-- wp:site-title {"level":0,"fontSize":"medium"} /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:image {"lightbox":{"enabled":false},"id":226891,"scale":"cover","linkDestination":"custom"} -->
|
||||
<figure class="wp-block-image"><a href="/feed"><img src="https://indymedia.pt/wp-content/uploads/2025/09/feed-icon-28x28-1.png" alt="RSS Feed" class="wp-image-226891" style="object-fit:cover"/></a></figure>
|
||||
<!-- /wp:image --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"align":"full","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group alignfull"><!-- wp:group {"align":"full","layout":{"type":"flex","orientation":"vertical"}} -->
|
||||
<div class="wp-block-group alignfull"><!-- wp:paragraph -->
|
||||
<p><small>(c) Independent Media Center. All content is free for reprint and rebroadcast, on the net and elsewhere, for non-commercial use, unless otherwise noted by author.</small></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"fontSize":"small"} -->
|
||||
<p class="has-small-font-size">Indepentent Media Center | <a href="https://indymedia.org">www.indymedia.org</a> | (((i)))</p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
<!-- wp:group {"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group"><!-- wp:image {"id":125,"sizeSlug":"full","linkDestination":"none","align":"full"} -->
|
||||
<figure class="wp-block-image alignfull size-full"><img src="http://localhost:8080/wp-content/uploads/2026/03/imcbannerlogo.gif" alt="Independent Media Center
|
||||
" class="wp-image-125"/></figure>
|
||||
<!-- /wp:image --></div>
|
||||
<!-- /wp:group -->
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
<!-- wp:group {"align":"full","style":{"spacing":{"blockGap":"0","margin":{"top":"0","bottom":"0"},"padding":{"top":"0","bottom":"0","left":"var:preset|spacing|40","right":"var:preset|spacing|40"}}},"layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group alignfull" style="margin-top:0;margin-bottom:0;padding-top:0;padding-right:var(--wp--preset--spacing--40);padding-bottom:0;padding-left:var(--wp--preset--spacing--40)"><!-- wp:group {"style":{"spacing":{"margin":{"top":"var:preset|spacing|20","bottom":"var:preset|spacing|20"},"padding":{"right":"0","left":"0","top":"0","bottom":"0"},"blockGap":"var:preset|spacing|30"}},"layout":{"type":"flex","flexWrap":"wrap","justifyContent":"left"}} -->
|
||||
<div class="wp-block-group" style="margin-top:var(--wp--preset--spacing--20);margin-bottom:var(--wp--preset--spacing--20);padding-top:0;padding-right:0;padding-bottom:0;padding-left:0"><!-- wp:navigation {"ref":11,"textColor":"secondary","overlayMenu":"always","icon":"menu","customOverlayBackgroundColor":"#131313","overlayTextColor":"base","style":{"spacing":{"blockGap":"var:preset|spacing|30"}},"fontSize":"small","layout":{"type":"flex","flexWrap":"wrap","justifyContent":"center"}} /-->
|
||||
|
||||
<!-- wp:group {"layout":{"type":"flex","flexWrap":"nowrap"}} -->
|
||||
<div class="wp-block-group"><!-- wp:paragraph {"style":{"typography":{"fontStyle":"normal","fontWeight":"700"},"elements":{"link":{"color":{"text":"var:preset|color|base"}}}},"textColor":"base","fontSize":"medium"} -->
|
||||
<p class="has-base-color has-text-color has-link-color has-medium-font-size" style="font-style:normal;font-weight:700"><a href="/">indymedia.org</a></p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
|
|
@ -0,0 +1,29 @@
|
|||
<!-- wp:group {"align":"full","layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group alignfull"><!-- wp:group {"align":"full","style":{"color":{"background":"#2f2f2f"},"spacing":{"padding":{"right":"0","left":"0"},"margin":{"top":"10px","bottom":"10px"},"blockGap":"5px"}},"layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group alignfull has-background" style="background-color:#2f2f2f;margin-top:10px;margin-bottom:10px;padding-right:0;padding-left:0"><!-- wp:post-title {"textAlign":"left","level":5,"align":"wide","style":{"spacing":{"padding":{"right":"var:preset|spacing|30","left":"var:preset|spacing|30","top":"var:preset|spacing|20","bottom":"var:preset|spacing|20"}},"border":{"top":{"color":"var:preset|color|accent-6","width":"1px"},"right":{"width":"0px","style":"none"},"bottom":{"width":"0px","style":"none"},"left":{"width":"0px","style":"none"}},"color":{"background":"#480000"}},"fontSize":"medium"} /--></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"tagName":"main","style":{"spacing":{"margin":{"top":"var:preset|spacing|30","bottom":"var:preset|spacing|30"}}},"layout":{"type":"constrained"}} -->
|
||||
<main class="wp-block-group" style="margin-top:var(--wp--preset--spacing--30);margin-bottom:var(--wp--preset--spacing--30)"><!-- wp:group {"align":"full","style":{"spacing":{"padding":{"right":"0","left":"0"},"blockGap":"var:preset|spacing|20"}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group alignfull" style="padding-right:0;padding-left:0"><!-- wp:query-title {"type":"archive","level":5,"align":"full","style":{"spacing":{"padding":{"right":"var:preset|spacing|30","left":"var:preset|spacing|30"}}}} /-->
|
||||
|
||||
<!-- wp:query {"queryId":10,"query":{"perPage":10,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":true},"align":"full"} -->
|
||||
<div class="wp-block-query alignfull"><!-- wp:post-template -->
|
||||
<!-- wp:group {"align":"full","style":{"spacing":{"blockGap":"0","padding":{"right":"var:preset|spacing|30","left":"var:preset|spacing|30"}}},"layout":{"type":"flex","orientation":"vertical"}} -->
|
||||
<div class="wp-block-group alignfull" style="padding-right:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)"><!-- wp:group {"align":"full","style":{"spacing":{"blockGap":"0","padding":{"top":"var:preset|spacing|20","bottom":"var:preset|spacing|20"}}},"fontSize":"medium","layout":{"type":"flex","orientation":"vertical"}} -->
|
||||
<div class="wp-block-group alignfull has-medium-font-size" style="padding-top:var(--wp--preset--spacing--20);padding-bottom:var(--wp--preset--spacing--20)"><!-- wp:post-title {"level":1,"isLink":true,"linkTarget":"_blank","style":{"layout":{"selfStretch":"fit","flexSize":null},"typography":{"fontStyle":"normal","fontWeight":"400","textTransform":"uppercase"},"elements":{"link":{":hover":{"color":{"text":"var:preset|color|accent-1"}},"color":{"text":"var:preset|color|accent-1"}}}},"textColor":"accent-1","fontSize":"small","fontFamily":"inclusive-sans"} /-->
|
||||
|
||||
<!-- wp:post-excerpt {"showMoreOnNewLine":false,"excerptLength":10,"fontSize":"small"} /-->
|
||||
|
||||
<!-- wp:post-date {"metadata":{"bindings":{"datetime":{"source":"core/post-data","args":{"field":"date"}}}},"style":{"typography":{"fontSize":"0.8rem"},"elements":{"link":{"color":{"text":"var:preset|color|base"}}}},"textColor":"base"} /-->
|
||||
|
||||
<!-- wp:post-terms {"term":"post_tag","style":{"typography":{"fontSize":"0.7rem"}}} /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
<!-- /wp:post-template --></div>
|
||||
<!-- /wp:query --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:search {"label":"\u003cbr\u003ePesquisar","showLabel":false,"width":645,"widthUnit":"px","buttonText":"Pesquisar","buttonPosition":"button-inside","buttonUseIcon":true,"backgroundColor":"contrast"} /--></main>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
|
|
@ -0,0 +1,29 @@
|
|||
<!-- wp:column {"width":"80%"} -->
|
||||
<div class="wp-block-column" style="flex-basis:80%"><!-- wp:group {"align":"full","style":{"color":{"background":"#2f2f2f"},"spacing":{"padding":{"right":"0","left":"0"},"margin":{"top":"10px","bottom":"10px"},"blockGap":"5px"}},"layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group alignfull has-background" style="background-color:#2f2f2f;margin-top:10px;margin-bottom:10px;padding-right:0;padding-left:0"><!-- wp:post-title {"textAlign":"left","level":5,"align":"wide","style":{"spacing":{"padding":{"right":"var:preset|spacing|30","left":"var:preset|spacing|30","top":"var:preset|spacing|20","bottom":"var:preset|spacing|20"}},"border":{"top":{"color":"var:preset|color|accent-6","width":"1px"},"right":{"width":"0px","style":"none"},"bottom":{"width":"0px","style":"none"},"left":{"width":"0px","style":"none"}},"color":{"background":"#480000"}},"fontSize":"medium"} /--></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"tagName":"main","style":{"spacing":{"margin":{"top":"var:preset|spacing|30","bottom":"var:preset|spacing|30"}}},"layout":{"type":"constrained"}} -->
|
||||
<main class="wp-block-group" style="margin-top:var(--wp--preset--spacing--30);margin-bottom:var(--wp--preset--spacing--30)"><!-- wp:group {"align":"full","style":{"spacing":{"padding":{"right":"0","left":"0"},"blockGap":"var:preset|spacing|20"}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group alignfull" style="padding-right:0;padding-left:0"><!-- wp:query-title {"type":"archive","level":5,"align":"full","style":{"spacing":{"padding":{"right":"var:preset|spacing|30","left":"var:preset|spacing|30"}}}} /-->
|
||||
|
||||
<!-- wp:query {"queryId":10,"query":{"perPage":10,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":true},"align":"full"} -->
|
||||
<div class="wp-block-query alignfull"><!-- wp:post-template -->
|
||||
<!-- wp:group {"align":"full","style":{"spacing":{"blockGap":"0","padding":{"right":"var:preset|spacing|30","left":"var:preset|spacing|30"}}},"layout":{"type":"flex","orientation":"vertical"}} -->
|
||||
<div class="wp-block-group alignfull" style="padding-right:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)"><!-- wp:group {"align":"full","style":{"spacing":{"blockGap":"0","padding":{"top":"var:preset|spacing|20","bottom":"var:preset|spacing|20"}}},"fontSize":"medium","layout":{"type":"flex","orientation":"vertical"}} -->
|
||||
<div class="wp-block-group alignfull has-medium-font-size" style="padding-top:var(--wp--preset--spacing--20);padding-bottom:var(--wp--preset--spacing--20)"><!-- wp:post-title {"level":1,"isLink":true,"linkTarget":"_blank","style":{"layout":{"selfStretch":"fit","flexSize":null},"typography":{"fontStyle":"normal","fontWeight":"400","textTransform":"uppercase"},"elements":{"link":{":hover":{"color":{"text":"var:preset|color|accent-1"}},"color":{"text":"var:preset|color|accent-1"}}}},"textColor":"accent-1","fontSize":"small","fontFamily":"inclusive-sans"} /-->
|
||||
|
||||
<!-- wp:post-excerpt {"showMoreOnNewLine":false,"excerptLength":10,"fontSize":"small"} /-->
|
||||
|
||||
<!-- wp:post-date {"metadata":{"bindings":{"datetime":{"source":"core/post-data","args":{"field":"date"}}}},"style":{"typography":{"fontSize":"0.8rem"},"elements":{"link":{"color":{"text":"var:preset|color|base"}}}},"textColor":"base"} /-->
|
||||
|
||||
<!-- wp:post-terms {"term":"post_tag","style":{"typography":{"fontSize":"0.7rem"}}} /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
<!-- /wp:post-template --></div>
|
||||
<!-- /wp:query --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:search {"label":"\u003cbr\u003ePesquisar","showLabel":false,"width":645,"widthUnit":"px","buttonText":"Pesquisar","buttonPosition":"button-inside","buttonUseIcon":true,"backgroundColor":"contrast"} /--></main>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column -->
|
||||
|
|
@ -0,0 +1,207 @@
|
|||
<!-- wp:group {"style":{"spacing":{"padding":{"right":"0","left":"0","top":"0","bottom":"var:preset|spacing|20"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="padding-top:0;padding-right:0;padding-bottom:var(--wp--preset--spacing--20);padding-left:0"><!-- wp:group {"align":"full","layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group alignfull"><!-- wp:image {"lightbox":{"enabled":false},"id":125,"sizeSlug":"full","linkDestination":"custom","align":"full"} -->
|
||||
<figure class="wp-block-image alignfull size-full"><a href="/"><img src="http://localhost:8080/wp-content/uploads/2026/03/imcbannerlogo.gif" alt="" class="wp-image-125"/></a></figure>
|
||||
<!-- /wp:image -->
|
||||
|
||||
<!-- wp:image {"lightbox":{"enabled":false},"id":124,"sizeSlug":"full","linkDestination":"custom","align":"full"} -->
|
||||
<figure class="wp-block-image alignfull size-full"><a href="https://indymedia.org"><img src="http://localhost:8080/wp-content/uploads/2026/03/imclogo2.gif" alt="" class="wp-image-124"/></a></figure>
|
||||
<!-- /wp:image --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"right":"var:preset|spacing|20","left":"var:preset|spacing|20"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="padding-right:var(--wp--preset--spacing--20);padding-left:var(--wp--preset--spacing--20)"><!-- wp:paragraph {"fontSize":"small"} -->
|
||||
<p class="has-small-font-size"><small>Indymedia is a collective of independent media organizations and hundreds of journalists offering grassroots, non-corporate coverage. Indymedia is a democratic media outlet for the creation of radical, accurate, and passionate tellings of truth.</small></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:group {"align":"full","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group alignfull"><!-- wp:details {"showContent":true,"fontSize":"small"} -->
|
||||
<details class="wp-block-details has-small-font-size" open><summary><strong>PARTICIPATE</strong></summary><!-- wp:paragraph {"style":{"spacing":{"padding":{"top":"2px","bottom":"2px"}}},"fontSize":"small"} -->
|
||||
<p class="has-small-font-size" style="padding-top:2px;padding-bottom:2px"><a href="https://indymedia.pt/publicar/" data-type="page" data-id="88"></a><a href="https://web.archive.org/web/20161020124538/https://publish.indymedia.org/earth/servlet/OpenMir?do=opensession&sessiontype=content">post your news</a> <br>instantly upload your audio, video, photo or text directly from your browser</p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"spacing":{"padding":{"top":"2px","bottom":"2px"}}},"fontSize":"small"} -->
|
||||
<p class="has-small-font-size" style="padding-top:2px;padding-bottom:2px"><a href="https://radio.indymedia.org">radio.indymedia.org</a> (<a href="https://archive.org/details/@r_dio_paralelo_porto">arquivo</a>)<br><a href="https://indymedia.pt/about/" data-type="page" data-id="21">about</a><br><a href="https://indymedia.pt/contact/" data-type="page" data-id="228713">contact</a><br><a href="https://indymedia.pt/rss/" data-type="page" data-id="226885">RSS</a><br><a href="https://indymedia.pt/links/" data-type="page" data-id="7366">links</a><br>wiki<br><a href="https://unite.openworlds.info/Open-Media-Network/Wordpress">code</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p>IndyMedia Network - IMC's</p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"margin":{"top":"var:preset|spacing|20","bottom":"var:preset|spacing|20"},"blockGap":"0"}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="margin-top:var(--wp--preset--spacing--20);margin-bottom:var(--wp--preset--spacing--20)"><!-- wp:paragraph -->
|
||||
<p><a href="http://indymedia.org/" target="_blank" rel="noreferrer noopener">indymedia.org</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="http://radio.indymedia.org/" target="_blank" rel="noreferrer noopener">radio.indymedia.org</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://argentina.indymedia.org/" target="_blank" rel="noreferrer noopener">Argentina</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://athens.indymedia.org/" target="_blank" rel="noreferrer noopener">Athens</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="http://barcelona.indymedia.org/" target="_blank" rel="noreferrer noopener">Barcelona</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://bxl.indymedia.org/?lang=fr">Belgium</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://midiaindependente.org/" target="_blank" rel="noreferrer noopener">Brasil</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://chicago.indymedia.org/" target="_blank" rel="noreferrer noopener">Chicago</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://ecuadorindymedia.org/" target="_blank" rel="noreferrer noopener">Ecuador </a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://de.indymedia.org/" target="_blank" rel="noreferrer noopener">Germany</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://cmiguate.org/" target="_blank" rel="noreferrer noopener">Guatemala</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="http://www.indymedia.ie/" target="_blank" rel="noreferrer noopener">Ireland</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://archive.autistici.org/ai/20210701082026/https://italy.indymedia.org/index.php" target="_blank" rel="noreferrer noopener">Italy</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://lille.indymedia.org/?lang=fr" target="_blank" rel="noreferrer noopener">Lille</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://la.indymedia.org/" target="_blank" rel="noreferrer noopener">Los Angeles</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="http://mexico.indymedia.org/" target="_blank" rel="noreferrer noopener">México</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://nantes.indymedia.org/" target="_blank" rel="noreferrer noopener">Nantes</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://indymedia.nl/" target="_blank" rel="noreferrer noopener">Netherlands</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://podcasts.apple.com/us/podcast/perth-indymedia/id1244713881" target="_blank" rel="noreferrer noopener">Perth</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://indymedia.pt/">Portugal</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://www.indybay.org/" target="_blank" rel="noreferrer noopener">San Francisco</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://www.indybay.org/santa-cruz/">Santa Cruz</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://www.ucimc.org/" target="_blank" rel="noreferrer noopener">Urbana Champain</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://indymedia-venezuela.contrapoder.org/?lang=es" target="_blank" rel="noreferrer noopener">Venezuela</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://dcindymedia.org/">Washington DC</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://www.centrodemedioslibres.org/" target="_blank" rel="noreferrer noopener">Centro de Medios Libres</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://reseaumutu.info/" target="_blank" rel="noreferrer noopener">Reseau Mutu</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://www.anarkismo.net/">Anarkismo.net</a></p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:image {"id":17,"sizeSlug":"full","linkDestination":"none"} -->
|
||||
<figure class="wp-block-image size-full"><img src="http://localhost:8080/wp-content/uploads/2026/03/70E14994-6BDF-4C4A-A31F-E49FC8EFB9D5.jpg" alt="" class="wp-image-17"/></figure>
|
||||
<!-- /wp:image -->
|
||||
|
||||
<!-- wp:details -->
|
||||
<details class="wp-block-details"><summary>RADIO</summary><!-- wp:paragraph {"placeholder":"Type / to add a hidden block"} -->
|
||||
<p></p>
|
||||
<!-- /wp:paragraph --></details>
|
||||
<!-- /wp:details -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><strong><a href="https://www.radio4all.net/">Radio 4 All</a></strong></p>
|
||||
<!-- /wp:paragraph --></details>
|
||||
<!-- /wp:details -->
|
||||
|
||||
<!-- wp:details -->
|
||||
<details class="wp-block-details"><summary><strong>NEWSWIRE</strong></summary><!-- wp:query {"queryId":2,"query":{"perPage":20,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":false,"taxQuery":null,"parents":[],"format":[]},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-query"><!-- wp:post-template {"style":{"elements":{"link":{"color":{"text":"var:preset|color|base"}}},"spacing":{"blockGap":"0"}},"fontSize":"medium","layout":{"type":"default","columnCount":null,"minimumColumnWidth":"12rem"}} -->
|
||||
<!-- wp:group {"align":"full","style":{"spacing":{"blockGap":"0","padding":{"top":"var:preset|spacing|20","bottom":"var:preset|spacing|20"}}},"fontSize":"medium","layout":{"type":"flex","orientation":"vertical"}} -->
|
||||
<div class="wp-block-group alignfull has-medium-font-size" style="padding-top:var(--wp--preset--spacing--20);padding-bottom:var(--wp--preset--spacing--20)"><!-- wp:post-title {"level":1,"isLink":true,"linkTarget":"_blank","style":{"layout":{"selfStretch":"fit","flexSize":null},"typography":{"fontStyle":"normal","fontWeight":"400","textTransform":"uppercase"},"elements":{"link":{":hover":{"color":{"text":"var:preset|color|accent-1"}},"color":{"text":"var:preset|color|accent-1"}}}},"textColor":"accent-1","fontSize":"small","fontFamily":"inclusive-sans"} /-->
|
||||
|
||||
<!-- wp:post-date {"metadata":{"bindings":{"datetime":{"source":"core/post-data","args":{"field":"date"}}}},"style":{"typography":{"fontSize":"0.8rem"},"elements":{"link":{"color":{"text":"var:preset|color|base"}}}},"textColor":"base"} /-->
|
||||
|
||||
<!-- wp:post-terms {"term":"post_tag","style":{"typography":{"fontSize":"0.7rem"}}} /--></div>
|
||||
<!-- /wp:group -->
|
||||
<!-- /wp:post-template -->
|
||||
|
||||
<!-- wp:query-pagination {"paginationArrow":"arrow","showLabel":false,"fontSize":"large","layout":{"type":"flex","justifyContent":"space-between"}} -->
|
||||
<!-- wp:query-pagination-previous /-->
|
||||
|
||||
<!-- wp:query-pagination-next /-->
|
||||
<!-- /wp:query-pagination --></div>
|
||||
<!-- /wp:query --></details>
|
||||
<!-- /wp:details -->
|
||||
|
||||
<!-- wp:details -->
|
||||
<details class="wp-block-details"><summary><strong>RADIO</strong></summary><!-- wp:paragraph -->
|
||||
<p><a href="https://radio.indymedia.pt"><strong>radio.indymedia.org</strong></a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:rss {"feedURL":"https://radio.indymedia.org/rss.xml","displayAuthor":true,"displayDate":true} /-->
|
||||
|
||||
<!-- wp:paragraph {"placeholder":"Type / to add a hidden block"} -->
|
||||
<p><a href="https://www.radio4all.net"><strong>Radio 4 All</strong></a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:rss {"feedURL":"https://www.radio4all.net/podcast.xml"} /--></details>
|
||||
<!-- /wp:details --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
|
|
@ -0,0 +1 @@
|
|||
<!-- wp:pattern {"slug":"twentytwentyfive/vertical-header"} /-->
|
||||
|
|
@ -0,0 +1,100 @@
|
|||
## Independent Media Center
|
||||
|
||||
A ready‑to‑run codebase for a fully‑featured **IndyMedia** hub, rebuilt from the archived version of [indymedia.org](https://web.archive.org/web/*/indymedia.org).
|
||||
|
||||
### Features
|
||||
|
||||
1. **Newswire** – Publish and aggregate short news items.
|
||||
2. **Open Publishing Form** – Front‑end submission for articles, podcasts, and videos.
|
||||
3. **Media Archive** – Store and browse images, audio, and video with searchable metadata.
|
||||
|
||||
---
|
||||
|
||||
## Included Plugins
|
||||
|
||||
When you run `composer install` the plugins below are fetched from **WPackagist** (a Composer mirror of the WordPress.org plugin directory) and installed into `wp‑content/plugins/{$name}/`.
|
||||
|
||||
1. **indymedia/indymedia-wordpress** – Core IndyMedia functionality.
|
||||
2. **activitypub** – Federated social publishing (ActivityPub).
|
||||
- Source: <https://wordpress.org/plugins/activitypub/>
|
||||
3. **antispam-bee** – Spam protection for comments/forms.
|
||||
- Source: <https://wordpress.org/plugins/antispam-bee/>
|
||||
4. **archiveo-importer-wayback** – Import Wayback Machine archives.
|
||||
- Source: <https://wordpress.org/plugins/archiveo-importer-wayback/>
|
||||
5. **easyfonts** – Simple font management.
|
||||
- Source: <https://wordpress.org/plugins/easyfonts/>
|
||||
6. **embed-privacy** – Privacy‑friendly embeds (YouTube, etc.).
|
||||
- Source: <https://wordpress.org/plugins/embed-privacy/>
|
||||
7. **exif-remover** – Strips EXIF data from uploaded images.
|
||||
- Source: <https://wordpress.org/plugins/exif-remover/>
|
||||
8. **frontend-post-submission-manager-lite** – Front‑end post submission handling.
|
||||
- Source: <https://wordpress.org/plugins/frontend-post-submission-manager-lite/>
|
||||
9. **indieweb** – IndieWeb micro‑formats, endpoints, webmentions.
|
||||
- Source: <https://wordpress.org/plugins/indieweb/>
|
||||
10. **lh-wayback-machine** – Wayback Machine integration.
|
||||
- Source: <https://wordpress.org/plugins/lh-wayback-machine/>
|
||||
11. **og** – Adds Open Graph meta tags.
|
||||
- Source: <https://wordpress.org/plugins/og/>
|
||||
12. **pretty-rss-feeds** – Cleaner RSS feed output.
|
||||
- Source: <https://wordpress.org/plugins/pretty-rss-feeds/>
|
||||
13. **remove-ip** – Anonymizes IP addresses in comments.
|
||||
- Source: <https://wordpress.org/plugins/remove-ip/>
|
||||
14. **safe-paste** – Secure paste‑bin functionality.
|
||||
- Source: <https://wordpress.org/plugins/safe-paste/>
|
||||
15. **syndication-links** – Auto‑generates syndication links (Twitter, Mastodon, etc.).
|
||||
- Source: <https://wordpress.org/plugins/syndication-links/>
|
||||
16. **unpredictable-image-filenames** – Randomizes uploaded image filenames for privacy.
|
||||
- Source: <https://wordpress.org/plugins/unpredictable-image-filenames/>
|
||||
17. **webmention** – Webmention support (IndieWeb).
|
||||
- Source: <https://wordpress.org/plugins/webmention/>
|
||||
18. **wp-super-cache** – Page‑caching to improve performance.
|
||||
- Source: <https://wordpress.org/plugins/wp-super-cache/>
|
||||
|
||||
---
|
||||
|
||||
## Installation
|
||||
|
||||
1. Clone or download the repository.
|
||||
2. From the project root run:
|
||||
|
||||
```bash
|
||||
composer install
|
||||
```
|
||||
|
||||
Composer pulls all listed plugins from WPackagist and places them in `wp-content/plugins/`.
|
||||
3. In WordPress admin go to **Plugins → Installed Plugins** and activate the plugins you need.
|
||||
|
||||
---
|
||||
|
||||
## Base Theme
|
||||
|
||||
The project uses the **Twenty Twenty‑Five** theme (GPLv2+).
|
||||
|
||||
```
|
||||
Contributors: wordpressdotorg
|
||||
Requires at least: 6.7
|
||||
Tested up to: 6.8
|
||||
Requires PHP: 7.2
|
||||
Stable tag: 1.3
|
||||
License: GPLv2 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
```
|
||||
|
||||
### Copyright & License
|
||||
|
||||
Twenty Twenty‑Five WordPress Theme, © 2024‑2025 WordPress.org and contributors.
|
||||
Distributed under the **GNU GPL v2 or later**.
|
||||
|
||||
The theme also incorporates code from **Twenty Twenty‑Four** (GPLv2+).
|
||||
|
||||
---
|
||||
|
||||
## Contributing
|
||||
|
||||
- Fork the repo, make changes, and submit a pull request.
|
||||
- Keep `composer.json` up‑to‑date when adding or updating plugins.
|
||||
- All contributions are accepted under the same GPL license.
|
||||
|
||||
---
|
||||
|
||||
*Additional developer notes are in the `docs/` folder.*
|
||||
|
After Width: | Height: | Size: 191 KiB |
|
|
@ -0,0 +1,61 @@
|
|||
/*
|
||||
Theme Name: Twenty Twenty-Five
|
||||
Theme URI: https://wordpress.org/themes/twentytwentyfive/
|
||||
Author: the WordPress team
|
||||
Author URI: https://wordpress.org
|
||||
Description: Twenty Twenty-Five emphasizes simplicity and adaptability. It offers flexible design options, supported by a variety of patterns for different page types, such as services and landing pages, making it ideal for building personal blogs, professional portfolios, online magazines, or business websites. Its templates cater to various blog styles, from text-focused to image-heavy layouts. Additionally, it supports international typography and diverse color palettes, ensuring accessibility and customization for users worldwide.
|
||||
Requires at least: 6.7
|
||||
Tested up to: 6.8
|
||||
Requires PHP: 7.2
|
||||
Version: 1.3
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
Text Domain: twentytwentyfive
|
||||
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, wide-blocks, block-styles, style-variations, accessibility-ready, blog, portfolio, news
|
||||
*/
|
||||
|
||||
/*
|
||||
* Link styles
|
||||
* https://github.com/WordPress/gutenberg/issues/42319
|
||||
*/
|
||||
a {
|
||||
text-decoration-thickness: 1px !important;
|
||||
text-underline-offset: .1em;
|
||||
}
|
||||
|
||||
/* Focus styles */
|
||||
:where(.wp-site-blocks *:focus) {
|
||||
outline-width: 2px;
|
||||
outline-style: solid;
|
||||
}
|
||||
|
||||
/* Increase the bottom margin on submenus, so that the outline is visible. */
|
||||
.wp-block-navigation .wp-block-navigation-submenu .wp-block-navigation-item:not(:last-child) {
|
||||
margin-bottom: 3px;
|
||||
}
|
||||
|
||||
/* Increase the outline offset on the parent menu items, so that the outline does not touch the text. */
|
||||
.wp-block-navigation .wp-block-navigation-item .wp-block-navigation-item__content {
|
||||
outline-offset: 4px;
|
||||
}
|
||||
|
||||
/* Remove outline offset from the submenus, otherwise the outline is visible outside the submenu container. */
|
||||
.wp-block-navigation .wp-block-navigation-item ul.wp-block-navigation__submenu-container .wp-block-navigation-item__content {
|
||||
outline-offset: 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* Progressive enhancement to reduce widows and orphans
|
||||
* https://github.com/WordPress/gutenberg/issues/55190
|
||||
*/
|
||||
h1, h2, h3, h4, h5, h6, blockquote, caption, figcaption, p {
|
||||
text-wrap: pretty;
|
||||
}
|
||||
|
||||
/*
|
||||
* Change the position of the more block on the front, by making it a block level element.
|
||||
* https://github.com/WordPress/gutenberg/issues/65934
|
||||
*/
|
||||
.more-link {
|
||||
display: block;
|
||||
}
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"$schema": "https://schemas.wp.org/wp/6.7/theme.json",
|
||||
"version": 3,
|
||||
"title": "Display",
|
||||
"slug": "text-display",
|
||||
"blockTypes": ["core/heading", "core/paragraph"],
|
||||
"styles": {
|
||||
"typography": {
|
||||
"fontSize": "clamp(2.2rem, 2.2rem + ((1vw - 0.2rem) * 1.333), 3.5rem)",
|
||||
"lineHeight": "1.2"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"$schema": "https://schemas.wp.org/wp/6.7/theme.json",
|
||||
"version": 3,
|
||||
"title": "Subtitle",
|
||||
"slug": "text-subtitle",
|
||||
"blockTypes": ["core/heading", "core/paragraph"],
|
||||
"styles": {
|
||||
"typography": {
|
||||
"fontSize": "clamp(1.5rem, 1.5rem + ((1vw - 0.2rem) * 0.392), 1.75rem)",
|
||||
"lineHeight": "1.2"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,36 @@
|
|||
{
|
||||
"$schema": "https://schemas.wp.org/wp/6.7/theme.json",
|
||||
"version": 3,
|
||||
"title": "Annotation",
|
||||
"slug": "text-annotation",
|
||||
"blockTypes": ["core/heading", "core/paragraph"],
|
||||
"styles": {
|
||||
"css": "width: fit-content",
|
||||
"typography": {
|
||||
"fontSize": "var:preset|font-size|small",
|
||||
"lineHeight": "1.5",
|
||||
"letterSpacing": "normal"
|
||||
},
|
||||
"border": {
|
||||
"color": "currentColor",
|
||||
"style": "solid",
|
||||
"width": "1px",
|
||||
"radius": "16px"
|
||||
},
|
||||
"spacing": {
|
||||
"padding": {
|
||||
"top": "0.2rem",
|
||||
"right": "0.6rem",
|
||||
"bottom": "0.25rem",
|
||||
"left": "0.6rem"
|
||||
}
|
||||
},
|
||||
"elements": {
|
||||
"link": {
|
||||
"typography": {
|
||||
"textDecoration": "none"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
{
|
||||
"version": 3,
|
||||
"$schema": "https://schemas.wp.org/wp/6.7/theme.json",
|
||||
"title": "Pill shaped",
|
||||
"slug": "post-terms-1",
|
||||
"blockTypes": ["core/post-terms"],
|
||||
"styles": {
|
||||
"elements": {
|
||||
"link": {
|
||||
"border": {
|
||||
"color": "var:preset|color|accent-6",
|
||||
"radius": "20px",
|
||||
"width": "0.8px",
|
||||
"style": "solid"
|
||||
},
|
||||
"spacing": {
|
||||
"padding": {
|
||||
"top": "5px",
|
||||
"right": "10px",
|
||||
"bottom": "5px",
|
||||
"left": "10px"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontWeight": "400",
|
||||
"lineHeight": "2.8",
|
||||
"textDecoration": "none"
|
||||
},
|
||||
":hover": {
|
||||
"typography": {
|
||||
"textDecoration": "underline"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,130 @@
|
|||
{
|
||||
"$schema": "https://schemas.wp.org/wp/6.7/theme.json",
|
||||
"version": 3,
|
||||
"slug": "section-1",
|
||||
"title": "Style 1",
|
||||
"blockTypes": [
|
||||
"core/group",
|
||||
"core/columns",
|
||||
"core/column"
|
||||
],
|
||||
"styles": {
|
||||
"color": {
|
||||
"background": "var:preset|color|accent-5",
|
||||
"text": "var:preset|color|contrast"
|
||||
},
|
||||
"blocks": {
|
||||
"core/separator": {
|
||||
"color": {
|
||||
"text": "color-mix(in srgb, currentColor 25%, transparent)"
|
||||
}
|
||||
},
|
||||
"core/site-title": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
},
|
||||
"elements": {
|
||||
"link": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/post-author-name": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
},
|
||||
"elements": {
|
||||
"link": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/post-date": {
|
||||
"color":{
|
||||
"text": "color-mix(in srgb, currentColor 85%, transparent)"
|
||||
},
|
||||
"elements": {
|
||||
"link": {
|
||||
"color" : {
|
||||
"text": "color-mix(in srgb, currentColor 85%, transparent)"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/post-terms": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
},
|
||||
"elements": {
|
||||
"link": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/comment-author-name": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
},
|
||||
"elements": {
|
||||
"link": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/comment-date": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
},
|
||||
"elements": {
|
||||
"link": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/comment-edit-link": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
},
|
||||
"elements": {
|
||||
"link": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/comment-reply-link": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
},
|
||||
"elements": {
|
||||
"link": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/pullquote": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
}
|
||||
},
|
||||
"core/quote": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,118 @@
|
|||
{
|
||||
"$schema": "https://schemas.wp.org/wp/6.7/theme.json",
|
||||
"version": 3,
|
||||
"slug": "section-2",
|
||||
"title": "Style 2",
|
||||
"blockTypes": [
|
||||
"core/group",
|
||||
"core/columns",
|
||||
"core/column"
|
||||
],
|
||||
"styles": {
|
||||
"color": {
|
||||
"background": "var:preset|color|accent-2",
|
||||
"text": "var:preset|color|contrast"
|
||||
},
|
||||
"blocks": {
|
||||
"core/separator": {
|
||||
"color": {
|
||||
"text": "color-mix(in srgb, currentColor 25%, transparent)"
|
||||
}
|
||||
},
|
||||
"core/post-author-name": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
},
|
||||
"elements": {
|
||||
"link": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/post-date": {
|
||||
"color":{
|
||||
"text": "color-mix(in srgb, currentColor 85%, transparent)"
|
||||
},
|
||||
"elements": {
|
||||
"link": {
|
||||
"color" : {
|
||||
"text": "color-mix(in srgb, currentColor 85%, transparent)"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/post-terms": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
},
|
||||
"elements": {
|
||||
"link": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/comment-author-name": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
},
|
||||
"elements": {
|
||||
"link": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/comment-date": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
},
|
||||
"elements": {
|
||||
"link": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/comment-edit-link": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
},
|
||||
"elements": {
|
||||
"link": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/comment-reply-link": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
},
|
||||
"elements": {
|
||||
"link": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/pullquote": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
}
|
||||
},
|
||||
"core/quote": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,118 @@
|
|||
{
|
||||
"$schema": "https://schemas.wp.org/wp/6.7/theme.json",
|
||||
"version": 3,
|
||||
"slug": "section-3",
|
||||
"title": "Style 3",
|
||||
"blockTypes": [
|
||||
"core/group",
|
||||
"core/columns",
|
||||
"core/column"
|
||||
],
|
||||
"styles": {
|
||||
"color": {
|
||||
"background": "var:preset|color|accent-1",
|
||||
"text": "var:preset|color|contrast"
|
||||
},
|
||||
"blocks": {
|
||||
"core/separator": {
|
||||
"color": {
|
||||
"text": "color-mix(in srgb, currentColor 25%, transparent)"
|
||||
}
|
||||
},
|
||||
"core/post-author-name": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
},
|
||||
"elements": {
|
||||
"link": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/post-date": {
|
||||
"color":{
|
||||
"text": "color-mix(in srgb, currentColor 85%, transparent)"
|
||||
},
|
||||
"elements": {
|
||||
"link": {
|
||||
"color" : {
|
||||
"text": "color-mix(in srgb, currentColor 85%, transparent)"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/post-terms": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
},
|
||||
"elements": {
|
||||
"link": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/comment-author-name": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
},
|
||||
"elements": {
|
||||
"link": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/comment-date": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
},
|
||||
"elements": {
|
||||
"link": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/comment-edit-link": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
},
|
||||
"elements": {
|
||||
"link": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/comment-reply-link": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
},
|
||||
"elements": {
|
||||
"link": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/pullquote": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
}
|
||||
},
|
||||
"core/quote": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,132 @@
|
|||
{
|
||||
"$schema": "https://schemas.wp.org/wp/6.7/theme.json",
|
||||
"version": 3,
|
||||
"slug": "section-4",
|
||||
"title": "Style 4",
|
||||
"blockTypes": [
|
||||
"core/group",
|
||||
"core/columns",
|
||||
"core/column"
|
||||
],
|
||||
"styles": {
|
||||
"color": {
|
||||
"background": "var:preset|color|accent-3",
|
||||
"text": "var:preset|color|accent-2"
|
||||
},
|
||||
"blocks": {
|
||||
"core/separator": {
|
||||
"color": {
|
||||
"text": "color-mix(in srgb, currentColor 25%, transparent)"
|
||||
}
|
||||
},
|
||||
"core/post-author-name": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
},
|
||||
"elements": {
|
||||
"link": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/post-date": {
|
||||
"color":{
|
||||
"text": "color-mix(in srgb, currentColor 85%, transparent)"
|
||||
},
|
||||
"elements": {
|
||||
"link": {
|
||||
"color" : {
|
||||
"text": "color-mix(in srgb, currentColor 85%, transparent)"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/post-terms": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
},
|
||||
"elements": {
|
||||
"link": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/comment-author-name": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
},
|
||||
"elements": {
|
||||
"link": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/comment-date": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
},
|
||||
"elements": {
|
||||
"link": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/comment-edit-link": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
},
|
||||
"elements": {
|
||||
"link": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/comment-reply-link": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
},
|
||||
"elements": {
|
||||
"link": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/pullquote": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
}
|
||||
},
|
||||
"core/quote": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
}
|
||||
}
|
||||
},
|
||||
"elements": {
|
||||
"button": {
|
||||
"color": {
|
||||
"background": "var:preset|color|accent-2",
|
||||
"text": "var:preset|color|accent-3"
|
||||
},
|
||||
":hover": {
|
||||
"color": {
|
||||
"background": "color-mix(in srgb, var(--wp--preset--color--accent-2) 85%, transparent)",
|
||||
"text": "var:preset|color|accent-3"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,132 @@
|
|||
{
|
||||
"$schema": "https://schemas.wp.org/wp/6.7/theme.json",
|
||||
"version": 3,
|
||||
"slug": "section-5",
|
||||
"title": "Style 5",
|
||||
"blockTypes": [
|
||||
"core/group",
|
||||
"core/columns",
|
||||
"core/column"
|
||||
],
|
||||
"styles": {
|
||||
"color": {
|
||||
"background": "var:preset|color|contrast",
|
||||
"text": "var:preset|color|base"
|
||||
},
|
||||
"blocks": {
|
||||
"core/separator": {
|
||||
"color": {
|
||||
"text": "color-mix(in srgb, currentColor 25%, transparent)"
|
||||
}
|
||||
},
|
||||
"core/post-author-name": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
},
|
||||
"elements": {
|
||||
"link": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/post-date": {
|
||||
"color":{
|
||||
"text": "color-mix(in srgb, currentColor 85%, transparent)"
|
||||
},
|
||||
"elements": {
|
||||
"link": {
|
||||
"color" : {
|
||||
"text": "color-mix(in srgb, currentColor 85%, transparent)"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/post-terms": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
},
|
||||
"elements": {
|
||||
"link": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/comment-author-name": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
},
|
||||
"elements": {
|
||||
"link": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/comment-date": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
},
|
||||
"elements": {
|
||||
"link": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/comment-edit-link": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
},
|
||||
"elements": {
|
||||
"link": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/comment-reply-link": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
},
|
||||
"elements": {
|
||||
"link": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/pullquote": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
}
|
||||
},
|
||||
"core/quote": {
|
||||
"color": {
|
||||
"text": "currentColor"
|
||||
}
|
||||
}
|
||||
},
|
||||
"elements": {
|
||||
"button": {
|
||||
"color": {
|
||||
"background": "var:preset|color|base",
|
||||
"text": "var:preset|color|contrast"
|
||||
},
|
||||
":hover": {
|
||||
"color": {
|
||||
"background": "color-mix(in srgb, var(--wp--preset--color--base) 80%, transparent)",
|
||||
"text": "var:preset|color|contrast"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,292 @@
|
|||
{
|
||||
"version": 3,
|
||||
"$schema": "https://schemas.wp.org/wp/6.7/theme.json",
|
||||
"title": "Beiruti & Literata",
|
||||
"slug": "typography-preset-1",
|
||||
"settings": {
|
||||
"typography": {
|
||||
"fontFamilies": [
|
||||
{
|
||||
"name": "Beiruti",
|
||||
"slug": "beiruti",
|
||||
"fontFamily": "Beiruti, sans-serif",
|
||||
"fontFace": [
|
||||
{
|
||||
"fontFamily": "Beiruti",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "200 900",
|
||||
"src": [
|
||||
"file:./assets/fonts/beiruti/Beiruti-VariableFont_wght.woff2"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Literata",
|
||||
"slug": "literata",
|
||||
"fontFamily": "Literata, serif",
|
||||
"fontFace": [
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-ExtraLight.woff2"
|
||||
],
|
||||
"fontWeight": "200",
|
||||
"fontStyle": "normal",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-ExtraLightItalic.woff2"
|
||||
],
|
||||
"fontWeight": "200",
|
||||
"fontStyle": "italic",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-Light.woff2"
|
||||
],
|
||||
"fontWeight": "300",
|
||||
"fontStyle": "normal",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-LightItalic.woff2"
|
||||
],
|
||||
"fontWeight": "300",
|
||||
"fontStyle": "italic",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-Regular.woff2"
|
||||
],
|
||||
"fontWeight": "400",
|
||||
"fontStyle": "normal",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-RegularItalic.woff2"
|
||||
],
|
||||
"fontWeight": "400",
|
||||
"fontStyle": "italic",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-Medium.woff2"
|
||||
],
|
||||
"fontWeight": "500",
|
||||
"fontStyle": "normal",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-MediumItalic.woff2"
|
||||
],
|
||||
"fontWeight": "500",
|
||||
"fontStyle": "italic",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-SemiBold.woff2"
|
||||
],
|
||||
"fontWeight": "600",
|
||||
"fontStyle": "normal",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-SemiBoldItalic.woff2"
|
||||
],
|
||||
"fontWeight": "600",
|
||||
"fontStyle": "italic",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-Bold.woff2"
|
||||
],
|
||||
"fontWeight": "700",
|
||||
"fontStyle": "normal",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-BoldItalic.woff2"
|
||||
],
|
||||
"fontWeight": "700",
|
||||
"fontStyle": "italic",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-ExtraBold.woff2"
|
||||
],
|
||||
"fontWeight": "800",
|
||||
"fontStyle": "normal",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-ExtraBoldItalic.woff2"
|
||||
],
|
||||
"fontWeight": "800",
|
||||
"fontStyle": "italic",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-Black.woff2"
|
||||
],
|
||||
"fontWeight": "900",
|
||||
"fontStyle": "normal",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-BlackItalic.woff2"
|
||||
],
|
||||
"fontWeight": "900",
|
||||
"fontStyle": "italic",
|
||||
"fontFamily": "Literata"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"fontSizes": [
|
||||
{
|
||||
"fluid": false,
|
||||
"name": "Small",
|
||||
"size": "0.9rem",
|
||||
"slug": "small"
|
||||
},
|
||||
{
|
||||
"fluid": {
|
||||
"max": "1.2rem",
|
||||
"min": "1rem"
|
||||
},
|
||||
"name": "Medium",
|
||||
"size": "1rem",
|
||||
"slug": "medium"
|
||||
},
|
||||
{
|
||||
"fluid": {
|
||||
"max": "1.8rem",
|
||||
"min": "1.6rem"
|
||||
},
|
||||
"name": "Large",
|
||||
"size": "1.6rem",
|
||||
"slug": "large"
|
||||
},
|
||||
{
|
||||
"fluid": {
|
||||
"max": "2.2rem",
|
||||
"min": "1.8em"
|
||||
},
|
||||
"name": "Extra Large",
|
||||
"size": "1.8rem",
|
||||
"slug": "x-large"
|
||||
},
|
||||
{
|
||||
"fluid": {
|
||||
"max": "2.8rem",
|
||||
"min": "2rem"
|
||||
},
|
||||
"name": "Extra Extra Large",
|
||||
"size": "2rem",
|
||||
"slug": "xx-large"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"styles": {
|
||||
"typography": {
|
||||
"fontFamily": "var:preset|font-family|literata",
|
||||
"fontSize": "var:preset|font-size|medium",
|
||||
"letterSpacing": "-0.01em",
|
||||
"lineHeight": "1.6"
|
||||
},
|
||||
"blocks": {
|
||||
"core/button": {
|
||||
"typography": {
|
||||
"fontFamily": "var:preset|font-family|beiruti"
|
||||
}
|
||||
},
|
||||
"core/list": {
|
||||
"typography": {
|
||||
"lineHeight": "1.3"
|
||||
}
|
||||
},
|
||||
"core/loginout": {
|
||||
"typography": {
|
||||
"fontSize": "var:preset|font-size|medium"
|
||||
}
|
||||
},
|
||||
"core/post-terms": {
|
||||
"typography": {
|
||||
"fontWeight": "300"
|
||||
}
|
||||
},
|
||||
"core/pullquote": {
|
||||
"typography": {
|
||||
"fontFamily": "var:preset|font-family|beiruti",
|
||||
"fontWeight": "500",
|
||||
"lineHeight": "1"
|
||||
}
|
||||
},
|
||||
"core/quote": {
|
||||
"typography": {
|
||||
"fontSize": "var:preset|font-size|medium"
|
||||
}
|
||||
},
|
||||
"core/query-pagination": {
|
||||
"typography": {
|
||||
"fontWeight": "300"
|
||||
}
|
||||
},
|
||||
"core/site-tagline": {
|
||||
"typography": {
|
||||
"fontSize": "var:preset|font-size|small"
|
||||
}
|
||||
},
|
||||
"core/site-title": {
|
||||
"typography": {
|
||||
"fontFamily": "var:preset|font-family|beiruti",
|
||||
"fontWeight": "600",
|
||||
"letterSpacing": "2.4px",
|
||||
"textTransform": "uppercase"
|
||||
}
|
||||
}
|
||||
},
|
||||
"elements": {
|
||||
"h4": {
|
||||
"typography": {
|
||||
"fontSize": "var:preset|font-size|large"
|
||||
}
|
||||
},
|
||||
"h5": {
|
||||
"typography": {
|
||||
"fontSize": "var:preset|font-size|medium",
|
||||
"letterSpacing": "0px"
|
||||
}
|
||||
},
|
||||
"h6": {
|
||||
"typography": {
|
||||
"fontSize": "var:preset|font-size|small"
|
||||
}
|
||||
},
|
||||
"heading": {
|
||||
"typography": {
|
||||
"fontFamily": "var:preset|font-family|beiruti",
|
||||
"fontWeight": "500",
|
||||
"letterSpacing": "-0.02em",
|
||||
"lineHeight": "1.02"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,150 @@
|
|||
{
|
||||
"version": 3,
|
||||
"$schema": "https://schemas.wp.org/wp/6.7/theme.json",
|
||||
"title": "Vollkorn & Fira Code",
|
||||
"slug": "typography-preset-2",
|
||||
"settings": {
|
||||
"typography": {
|
||||
"fontFamilies": [
|
||||
{
|
||||
"name": "Vollkorn",
|
||||
"slug": "vollkorn",
|
||||
"fontFamily": "Vollkorn, serif",
|
||||
"fontFace": [
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/vollkorn/Vollkorn-Italic-VariableFont_wght.woff2"
|
||||
],
|
||||
"fontWeight": "400 900",
|
||||
"fontStyle": "italic",
|
||||
"fontFamily": "Vollkorn"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/vollkorn/Vollkorn-VariableFont_wght.woff2"
|
||||
],
|
||||
"fontWeight": "400 900",
|
||||
"fontStyle": "normal",
|
||||
"fontFamily": "Vollkorn"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Fira Code",
|
||||
"slug": "fira-code",
|
||||
"fontFamily": "\"Fira Code\", monospace",
|
||||
"fontFace": [
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/fira-code/FiraCode-VariableFont_wght.woff2"
|
||||
],
|
||||
"fontWeight": "300 700",
|
||||
"fontStyle": "normal",
|
||||
"fontFamily": "\"Fira Code\""
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"styles": {
|
||||
"typography": {
|
||||
"fontFamily": "var:preset|font-family|fira-code",
|
||||
"fontSize": "var:preset|font-size|medium",
|
||||
"letterSpacing": "-0.18px",
|
||||
"lineHeight": "1.5"
|
||||
},
|
||||
"blocks": {
|
||||
"core/post-author-name": {
|
||||
"typography": {
|
||||
"fontWeight": "300"
|
||||
}
|
||||
},
|
||||
"core/post-terms": {
|
||||
"typography": {
|
||||
"fontWeight": "300"
|
||||
}
|
||||
},
|
||||
"core/post-title": {
|
||||
"typography": {
|
||||
"fontWeight": "400",
|
||||
"letterSpacing": "-0.96px"
|
||||
}
|
||||
},
|
||||
"core/pullquote": {
|
||||
"typography": {
|
||||
"fontFamily": "var:preset|font-family|vollkorn",
|
||||
"fontSize": "var:preset|font-size|x-large",
|
||||
"fontWeight": "400"
|
||||
},
|
||||
"elements": {
|
||||
"cite": {
|
||||
"typography": {
|
||||
"fontFamily": "var:preset|font-family|fira-code",
|
||||
"fontWeight": "300",
|
||||
"letterSpacing": "-0.14px"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/quote": {
|
||||
"typography": {
|
||||
"fontFamily": "var:preset|font-family|fira-code",
|
||||
"fontWeight": "500",
|
||||
"letterSpacing": "-0.18px"
|
||||
}
|
||||
},
|
||||
"core/site-title": {
|
||||
"typography": {
|
||||
"fontFamily": "var:preset|font-family|vollkorn",
|
||||
"fontSize": "var:preset|font-size|x-large"
|
||||
}
|
||||
}
|
||||
},
|
||||
"elements": {
|
||||
"button": {
|
||||
"typography": {
|
||||
"fontFamily": "var:preset|font-family|fira-code",
|
||||
"fontSize": "var:preset|font-size|medium",
|
||||
"fontWeight": "400",
|
||||
"letterSpacing": "-0.36px"
|
||||
}
|
||||
},
|
||||
"heading": {
|
||||
"typography": {
|
||||
"fontFamily": "var:preset|font-family|vollkorn"
|
||||
}
|
||||
},
|
||||
"h1": {
|
||||
"typography": {
|
||||
"fontSize": "48px",
|
||||
"letterSpacing": "-0.96px;"
|
||||
}
|
||||
},
|
||||
"h2": {
|
||||
"typography": {
|
||||
"fontSize": "38px",
|
||||
"letterSpacing": "-0.96px"
|
||||
}
|
||||
},
|
||||
"h3": {
|
||||
"typography": {
|
||||
"fontSize": "32px",
|
||||
"letterSpacing": "-0.64px"
|
||||
}
|
||||
},
|
||||
"h4": {
|
||||
"typography": {
|
||||
"fontSize": "28px",
|
||||
"letterSpacing": "-0.56px"
|
||||
}
|
||||
},
|
||||
"h5": {
|
||||
"typography": {
|
||||
"fontSize": "24px",
|
||||
"letterSpacing": "-0.48px"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,186 @@
|
|||
{
|
||||
"version": 3,
|
||||
"$schema": "https://schemas.wp.org/wp/6.7/theme.json",
|
||||
"title": "Platypi & Ysabeau Office",
|
||||
"slug": "typography-preset-3",
|
||||
"settings": {
|
||||
"typography": {
|
||||
"fontFamilies": [
|
||||
{
|
||||
"name": "Platypi",
|
||||
"slug": "platypi",
|
||||
"fontFamily": "Platypi",
|
||||
"fontFace": [
|
||||
{
|
||||
"fontFamily": "Platypi",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "300 800",
|
||||
"src": [
|
||||
"file:./assets/fonts/platypi/Platypi-VariableFont_wght.woff2"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "Platypi",
|
||||
"fontStyle": "italic",
|
||||
"fontWeight": "300 800",
|
||||
"src": [
|
||||
"file:./assets/fonts/platypi/Platypi-Italic-VariableFont_wght.woff2"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Ysabeau Office",
|
||||
"slug": "ysabeau-office",
|
||||
"fontFamily": "\"Ysabeau Office\", sans-serif",
|
||||
"fontFace": [
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/ysabeau-office/YsabeauOffice-VariableFont_wght.woff2"
|
||||
],
|
||||
"fontWeight": "100 900",
|
||||
"fontStyle": "normal",
|
||||
"fontFamily": "\"Ysabeau Office\""
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/ysabeau-office/YsabeauOffice-Italic-VariableFont_wght.woff2"
|
||||
],
|
||||
"fontWeight": "100 900",
|
||||
"fontStyle": "italic",
|
||||
"fontFamily": "\"Ysabeau Office\""
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"fontSizes": [
|
||||
{
|
||||
"fluid": false,
|
||||
"name": "Small",
|
||||
"size": "0.875rem",
|
||||
"slug": "small"
|
||||
},
|
||||
{
|
||||
"fluid": {
|
||||
"max": "1.125rem",
|
||||
"min": "1rem"
|
||||
},
|
||||
"name": "Medium",
|
||||
"size": "1rem",
|
||||
"slug": "medium"
|
||||
},
|
||||
{
|
||||
"fluid": {
|
||||
"max": "1.375rem",
|
||||
"min": "1.125rem"
|
||||
},
|
||||
"name": "Large",
|
||||
"size": "1.38rem",
|
||||
"slug": "large"
|
||||
},
|
||||
{
|
||||
"fluid": {
|
||||
"max": "1.8rem",
|
||||
"min": "1.4rem"
|
||||
},
|
||||
"name": "Extra Large",
|
||||
"size": "1.4rem",
|
||||
"slug": "x-large"
|
||||
},
|
||||
{
|
||||
"fluid": {
|
||||
"max": "2.6rem",
|
||||
"min": "2rem"
|
||||
},
|
||||
"name": "Extra Extra Large",
|
||||
"size": "2rem",
|
||||
"slug": "xx-large"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"styles": {
|
||||
"typography": {
|
||||
"fontFamily": "var:preset|font-family|ysabeau-office",
|
||||
"letterSpacing": "-0.22px",
|
||||
"lineHeight": "1.5"
|
||||
},
|
||||
"blocks":{
|
||||
"core/code": {
|
||||
"typography": {
|
||||
"letterSpacing": "0px"
|
||||
}
|
||||
},
|
||||
"core/heading": {
|
||||
"typography": {
|
||||
"lineHeight": "1.2"
|
||||
}
|
||||
},
|
||||
"core/list": {
|
||||
"typography": {
|
||||
"lineHeight": "1.3"
|
||||
}
|
||||
},
|
||||
"core/loginout": {
|
||||
"typography": {
|
||||
"fontSize": "var:preset|font-size|medium"
|
||||
}
|
||||
},
|
||||
"core/post-terms": {
|
||||
"typography": {
|
||||
"fontWeight": "400"
|
||||
}
|
||||
},
|
||||
"core/pullquote": {
|
||||
"typography": {
|
||||
"fontFamily": "var:preset|font-family|platypi",
|
||||
"letterSpacing": "-0.01em",
|
||||
"lineHeight": "1.1"
|
||||
}
|
||||
},
|
||||
"core/quote": {
|
||||
"typography": {
|
||||
"fontWeight": "300"
|
||||
}
|
||||
},
|
||||
"core/site-title": {
|
||||
"typography": {
|
||||
"fontFamily": "var:preset|font-family|ysabeau-office",
|
||||
"fontSize": "var:preset|font-size|large",
|
||||
"letterSpacing": "1.44px",
|
||||
"textTransform": "uppercase"
|
||||
}
|
||||
}
|
||||
},
|
||||
"elements": {
|
||||
"button": {
|
||||
"typography": {
|
||||
"fontFamily": "var:preset|font-family|ysabeau-office",
|
||||
"fontWeight": "600",
|
||||
"letterSpacing": "1.44px",
|
||||
"textTransform": "uppercase"
|
||||
}
|
||||
},
|
||||
"heading": {
|
||||
"typography": {
|
||||
"fontFamily": "var:preset|font-family|platypi"
|
||||
}
|
||||
},
|
||||
"h5": {
|
||||
"typography": {
|
||||
"fontSize": "var:preset|font-size|medium",
|
||||
"letterSpacing": "normal"
|
||||
}
|
||||
},
|
||||
"h6": {
|
||||
"typography": {
|
||||
"fontSize": "var:preset|font-size|small",
|
||||
"fontWeight": "400",
|
||||
"fontStyle": "initial",
|
||||
"letterSpacing": "initial",
|
||||
"textTransform": "initial"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,154 @@
|
|||
{
|
||||
"version": 3,
|
||||
"$schema": "https://schemas.wp.org/wp/6.7/theme.json",
|
||||
"title": "Roboto Slab & Manrope",
|
||||
"slug": "typography-preset-4",
|
||||
"settings": {
|
||||
"typography": {
|
||||
"fontFamilies": [
|
||||
{
|
||||
"name": "Roboto Slab",
|
||||
"slug": "roboto-slab",
|
||||
"fontFamily": "\"Roboto Slab\", serif",
|
||||
"fontFace": [
|
||||
{
|
||||
"fontFamily": "\"Roboto Slab\"",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "100 900",
|
||||
"src": [
|
||||
"file:./assets/fonts/roboto-slab/RobotoSlab-VariableFont_wght.woff2"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Manrope",
|
||||
"slug": "manrope",
|
||||
"fontFamily": "Manrope, sans-serif",
|
||||
"fontFace": [
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/manrope/Manrope-VariableFont_wght.woff2"
|
||||
],
|
||||
"fontWeight": "200 800",
|
||||
"fontStyle": "normal",
|
||||
"fontFamily": "Manrope"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"fontSizes": [
|
||||
{
|
||||
"fluid": false,
|
||||
"name": "Small",
|
||||
"size": "0.875rem",
|
||||
"slug": "small"
|
||||
},
|
||||
{
|
||||
"fluid": {
|
||||
"max": "1.125rem",
|
||||
"min": "1rem"
|
||||
},
|
||||
"name": "Medium",
|
||||
"size": "1rem",
|
||||
"slug": "medium"
|
||||
},
|
||||
{
|
||||
"fluid": {
|
||||
"max": "1.375rem",
|
||||
"min": "1.125rem"
|
||||
},
|
||||
"name": "Large",
|
||||
"size": "1.38rem",
|
||||
"slug": "large"
|
||||
},
|
||||
{
|
||||
"fluid": {
|
||||
"max": "2rem",
|
||||
"min": "1.75rem"
|
||||
},
|
||||
"name": "Extra Large",
|
||||
"size": "1.75rem",
|
||||
"slug": "x-large"
|
||||
},
|
||||
{
|
||||
"fluid": {
|
||||
"max": "2.4rem",
|
||||
"min": "2.15rem"
|
||||
},
|
||||
"name": "Extra Extra Large",
|
||||
"size": "2.15rem",
|
||||
"slug": "xx-large"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"styles": {
|
||||
"typography": {
|
||||
"letterSpacing": "0"
|
||||
},
|
||||
"blocks": {
|
||||
"core/navigation": {
|
||||
"typography": {
|
||||
"fontSize": "var:preset|font-size|large",
|
||||
"letterSpacing": "-0.28px",
|
||||
"textTransform": "uppercase"
|
||||
}
|
||||
},
|
||||
"core/post-author": {
|
||||
"typography": {
|
||||
"fontSize": "var:preset|font-size|small"
|
||||
}
|
||||
},
|
||||
"core/post-author-name": {
|
||||
"typography": {
|
||||
"fontSize": "var:preset|font-size|small"
|
||||
}
|
||||
},
|
||||
"core/post-terms": {
|
||||
"typography": {
|
||||
"fontWeight": "500"
|
||||
}
|
||||
},
|
||||
"core/pullquote": {
|
||||
"typography": {
|
||||
"fontFamily": "var:preset|font-family|roboto-slab",
|
||||
"fontSize": "var:preset|font-size|xx-large",
|
||||
"fontWeight": "200"
|
||||
}
|
||||
},
|
||||
"core/search": {
|
||||
"typography": {
|
||||
"textTransform": "uppercase"
|
||||
}
|
||||
},
|
||||
"core/site-tagline": {
|
||||
"typography": {
|
||||
"fontSize": "var:preset|font-size|large"
|
||||
}
|
||||
},
|
||||
"core/site-title": {
|
||||
"typography": {
|
||||
"textTransform": "uppercase"
|
||||
}
|
||||
}
|
||||
},
|
||||
"elements": {
|
||||
"button": {
|
||||
"typography": {
|
||||
"fontWeight": "500",
|
||||
"letterSpacing": "-0.36px",
|
||||
"textTransform": "uppercase"
|
||||
}
|
||||
},
|
||||
"heading": {
|
||||
"typography": {
|
||||
"fontFamily": "var:preset|font-family|roboto-slab",
|
||||
"fontWeight": "300",
|
||||
"letterSpacing": "-0.5px",
|
||||
"lineHeight": "1.2"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,303 @@
|
|||
{
|
||||
"version": 3,
|
||||
"$schema": "https://schemas.wp.org/wp/6.7/theme.json",
|
||||
"title": "Literata & Ysabeau Office",
|
||||
"slug": "typography-preset-5",
|
||||
"settings": {
|
||||
"typography": {
|
||||
"fontFamilies": [
|
||||
{
|
||||
"name": "Literata",
|
||||
"slug": "literata",
|
||||
"fontFamily": "Literata, serif",
|
||||
"fontFace": [
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-ExtraLight.woff2"
|
||||
],
|
||||
"fontWeight": "200",
|
||||
"fontStyle": "normal",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-ExtraLightItalic.woff2"
|
||||
],
|
||||
"fontWeight": "200",
|
||||
"fontStyle": "italic",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-Light.woff2"
|
||||
],
|
||||
"fontWeight": "300",
|
||||
"fontStyle": "normal",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-LightItalic.woff2"
|
||||
],
|
||||
"fontWeight": "300",
|
||||
"fontStyle": "italic",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-Regular.woff2"
|
||||
],
|
||||
"fontWeight": "400",
|
||||
"fontStyle": "normal",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-RegularItalic.woff2"
|
||||
],
|
||||
"fontWeight": "400",
|
||||
"fontStyle": "italic",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-Medium.woff2"
|
||||
],
|
||||
"fontWeight": "500",
|
||||
"fontStyle": "normal",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-MediumItalic.woff2"
|
||||
],
|
||||
"fontWeight": "500",
|
||||
"fontStyle": "italic",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-SemiBold.woff2"
|
||||
],
|
||||
"fontWeight": "600",
|
||||
"fontStyle": "normal",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-SemiBoldItalic.woff2"
|
||||
],
|
||||
"fontWeight": "600",
|
||||
"fontStyle": "italic",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-Bold.woff2"
|
||||
],
|
||||
"fontWeight": "700",
|
||||
"fontStyle": "normal",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-BoldItalic.woff2"
|
||||
],
|
||||
"fontWeight": "700",
|
||||
"fontStyle": "italic",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-ExtraBold.woff2"
|
||||
],
|
||||
"fontWeight": "800",
|
||||
"fontStyle": "normal",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-ExtraBoldItalic.woff2"
|
||||
],
|
||||
"fontWeight": "800",
|
||||
"fontStyle": "italic",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-Black.woff2"
|
||||
],
|
||||
"fontWeight": "900",
|
||||
"fontStyle": "normal",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-BlackItalic.woff2"
|
||||
],
|
||||
"fontWeight": "900",
|
||||
"fontStyle": "italic",
|
||||
"fontFamily": "Literata"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Ysabeau Office",
|
||||
"slug": "ysabeau-office",
|
||||
"fontFamily": "\"Ysabeau Office\", sans-serif",
|
||||
"fontFace": [
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/ysabeau-office/YsabeauOffice-VariableFont_wght.woff2"
|
||||
],
|
||||
"fontWeight": "100 900",
|
||||
"fontStyle": "normal",
|
||||
"fontFamily": "\"Ysabeau Office\""
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/ysabeau-office/YsabeauOffice-Italic-VariableFont_wght.woff2"
|
||||
],
|
||||
"fontWeight": "100 900",
|
||||
"fontStyle": "italic",
|
||||
"fontFamily": "\"Ysabeau Office\""
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"fontSizes": [
|
||||
{
|
||||
"fluid": false,
|
||||
"name": "Small",
|
||||
"size": "0.875rem",
|
||||
"slug": "small"
|
||||
},
|
||||
{
|
||||
"fluid": {
|
||||
"max": "1.125rem",
|
||||
"min": "1rem"
|
||||
},
|
||||
"name": "Medium",
|
||||
"size": "1rem",
|
||||
"slug": "medium"
|
||||
},
|
||||
{
|
||||
"fluid": {
|
||||
"max": "1.375rem",
|
||||
"min": "1.125rem"
|
||||
},
|
||||
"name": "Large",
|
||||
"size": "1.38rem",
|
||||
"slug": "large"
|
||||
},
|
||||
{
|
||||
"fluid": {
|
||||
"max": "2rem",
|
||||
"min": "1.75rem"
|
||||
},
|
||||
"name": "Extra Large",
|
||||
"size": "1.75rem",
|
||||
"slug": "x-large"
|
||||
},
|
||||
{
|
||||
"fluid": {
|
||||
"max": "2.6rem",
|
||||
"min": "1.4rem"
|
||||
},
|
||||
"name": "Extra Extra Large",
|
||||
"size": "2.6rem",
|
||||
"slug": "xx-large"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"styles": {
|
||||
"typography": {
|
||||
"fontFamily": "var:preset|font-family|ysabeau-office",
|
||||
"letterSpacing": "-0.24px"
|
||||
},
|
||||
"blocks": {
|
||||
"core/navigation": {
|
||||
"typography": {
|
||||
"fontSize": "1.25rem"
|
||||
}
|
||||
},
|
||||
"core/post-title": {
|
||||
"typography": {
|
||||
"fontWeight": "900",
|
||||
"letterSpacing": "-0.96px"
|
||||
}
|
||||
},
|
||||
"core/pullquote": {
|
||||
"typography": {
|
||||
"fontSize": "var:preset|font-size|xx-large"
|
||||
},
|
||||
"elements": {
|
||||
"cite": {
|
||||
"typography": {
|
||||
"fontSize": "var:preset|font-size|medium",
|
||||
"letterSpacing": "-0.14px"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/quote": {
|
||||
"elements": {
|
||||
"cite": {
|
||||
"typography": {
|
||||
"fontSize": "var:preset|font-size|medium",
|
||||
"letterSpacing": "-0.14px"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/query-title": {
|
||||
"typography": {
|
||||
"fontWeight": "900"
|
||||
}
|
||||
},
|
||||
"core/site-title": {
|
||||
"typography": {
|
||||
"fontFamily": "var:preset|font-family|ysabeau-office",
|
||||
"textTransform": "uppercase",
|
||||
"letterSpacing": "1.6px"
|
||||
}
|
||||
}
|
||||
},
|
||||
"elements": {
|
||||
"button": {
|
||||
"typography": {
|
||||
"fontFamily": "var:preset|font-family|literata",
|
||||
"fontSize": "var:preset|font-size|medium",
|
||||
"fontWeight": "900",
|
||||
"letterSpacing": "-0.36px"
|
||||
}
|
||||
},
|
||||
"heading": {
|
||||
"typography": {
|
||||
"fontFamily": "var:preset|font-family|literata",
|
||||
"fontWeight": "900",
|
||||
"lineHeight": "1.2"
|
||||
}
|
||||
},
|
||||
"h5": {
|
||||
"typography": {
|
||||
"letterSpacing": "0px"
|
||||
}
|
||||
},
|
||||
"h6": {
|
||||
"typography": {
|
||||
"fontWeight": "900",
|
||||
"letterSpacing": "0px"
|
||||
}
|
||||
}
|
||||
},
|
||||
"variations": {
|
||||
"post-terms-1": {
|
||||
"typography": {
|
||||
"fontSize": "var:preset|font-size|medium"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,257 @@
|
|||
{
|
||||
"version": 3,
|
||||
"$schema": "https://schemas.wp.org/wp/6.7/theme.json",
|
||||
"title": "Platypi & Literata",
|
||||
"slug": "typography-preset-6",
|
||||
"settings": {
|
||||
"typography": {
|
||||
"fontFamilies": [
|
||||
{
|
||||
"name": "Platypi",
|
||||
"slug": "platypi",
|
||||
"fontFamily": "Platypi",
|
||||
"fontFace": [
|
||||
{
|
||||
"fontFamily": "Platypi",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "300 800",
|
||||
"src": [
|
||||
"file:./assets/fonts/platypi/Platypi-VariableFont_wght.woff2"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "Platypi",
|
||||
"fontStyle": "italic",
|
||||
"fontWeight": "300 800",
|
||||
"src": [
|
||||
"file:./assets/fonts/platypi/Platypi-Italic-VariableFont_wght.woff2"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Literata",
|
||||
"slug": "literata",
|
||||
"fontFamily": "Literata, serif",
|
||||
"fontFace": [
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-ExtraLight.woff2"
|
||||
],
|
||||
"fontWeight": "200",
|
||||
"fontStyle": "normal",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-ExtraLightItalic.woff2"
|
||||
],
|
||||
"fontWeight": "200",
|
||||
"fontStyle": "italic",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-Light.woff2"
|
||||
],
|
||||
"fontWeight": "300",
|
||||
"fontStyle": "normal",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-LightItalic.woff2"
|
||||
],
|
||||
"fontWeight": "300",
|
||||
"fontStyle": "italic",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-Regular.woff2"
|
||||
],
|
||||
"fontWeight": "400",
|
||||
"fontStyle": "normal",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-RegularItalic.woff2"
|
||||
],
|
||||
"fontWeight": "400",
|
||||
"fontStyle": "italic",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-Medium.woff2"
|
||||
],
|
||||
"fontWeight": "500",
|
||||
"fontStyle": "normal",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-MediumItalic.woff2"
|
||||
],
|
||||
"fontWeight": "500",
|
||||
"fontStyle": "italic",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-SemiBold.woff2"
|
||||
],
|
||||
"fontWeight": "600",
|
||||
"fontStyle": "normal",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-SemiBoldItalic.woff2"
|
||||
],
|
||||
"fontWeight": "600",
|
||||
"fontStyle": "italic",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-Bold.woff2"
|
||||
],
|
||||
"fontWeight": "700",
|
||||
"fontStyle": "normal",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-BoldItalic.woff2"
|
||||
],
|
||||
"fontWeight": "700",
|
||||
"fontStyle": "italic",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-ExtraBold.woff2"
|
||||
],
|
||||
"fontWeight": "800",
|
||||
"fontStyle": "normal",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-ExtraBoldItalic.woff2"
|
||||
],
|
||||
"fontWeight": "800",
|
||||
"fontStyle": "italic",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-Black.woff2"
|
||||
],
|
||||
"fontWeight": "900",
|
||||
"fontStyle": "normal",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-BlackItalic.woff2"
|
||||
],
|
||||
"fontWeight": "900",
|
||||
"fontStyle": "italic",
|
||||
"fontFamily": "Literata"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"styles": {
|
||||
"typography": {
|
||||
"fontFamily": "var:preset|font-family|literata",
|
||||
"fontSize": "1.5rem",
|
||||
"letterSpacing": "-0.24px",
|
||||
"lineHeight": "1.3"
|
||||
},
|
||||
"blocks": {
|
||||
"core/navigation": {
|
||||
"typography": {
|
||||
"fontSize": "1.25rem"
|
||||
}
|
||||
},
|
||||
"core/post-terms": {
|
||||
"typography": {
|
||||
"fontWeight": "400"
|
||||
}
|
||||
},
|
||||
"core/post-title": {
|
||||
"typography": {
|
||||
"fontWeight": "800",
|
||||
"letterSpacing": "-0.96px"
|
||||
}
|
||||
},
|
||||
"core/pullquote": {
|
||||
"typography": {
|
||||
"fontFamily": "var:preset|font-family|platypi",
|
||||
"fontSize": "var:preset|font-size|x-large",
|
||||
"letterSpacing": "-0.76px",
|
||||
"fontWeight": "800"
|
||||
},
|
||||
"elements": {
|
||||
"cite": {
|
||||
"typography": {
|
||||
"fontFamily": "var:preset|font-family|literata",
|
||||
"fontWeight": "400",
|
||||
"letterSpacing": "-0.14px"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/quote": {
|
||||
"typography": {
|
||||
"fontSize": "1.5rem",
|
||||
"fontWeight": "600",
|
||||
"letterSpacing": "-0.24px"
|
||||
},
|
||||
"elements": {
|
||||
"cite": {
|
||||
"typography": {
|
||||
"letterSpacing": "-0.14px"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/site-title": {
|
||||
"typography": {
|
||||
"fontFamily": "var:preset|font-family|platypi",
|
||||
"fontSize": "30px",
|
||||
"fontWeight": "800",
|
||||
"letterSpacing": "-0.6px"
|
||||
}
|
||||
}
|
||||
},
|
||||
"elements": {
|
||||
"button": {
|
||||
"typography": {
|
||||
"fontFamily": "var:preset|font-family|platypi",
|
||||
"fontSize": "1.5rem",
|
||||
"fontWeight": "800"
|
||||
}
|
||||
},
|
||||
"heading": {
|
||||
"typography": {
|
||||
"fontFamily": "var:preset|font-family|platypi",
|
||||
"fontWeight": "800"
|
||||
}
|
||||
}
|
||||
},
|
||||
"variations": {
|
||||
"post-terms-1": {
|
||||
"typography": {
|
||||
"fontSize": "16px"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,411 @@
|
|||
{
|
||||
"version": 3,
|
||||
"$schema": "https://schemas.wp.org/wp/6.7/theme.json",
|
||||
"title": "Literata & Fira Sans",
|
||||
"slug": "typography-preset-7",
|
||||
"settings": {
|
||||
"typography": {
|
||||
"fontFamilies": [
|
||||
{
|
||||
"name": "Literata",
|
||||
"slug": "literata",
|
||||
"fontFamily": "Literata, serif",
|
||||
"fontFace": [
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-ExtraLight.woff2"
|
||||
],
|
||||
"fontWeight": "200",
|
||||
"fontStyle": "normal",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-ExtraLightItalic.woff2"
|
||||
],
|
||||
"fontWeight": "200",
|
||||
"fontStyle": "italic",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-Light.woff2"
|
||||
],
|
||||
"fontWeight": "300",
|
||||
"fontStyle": "normal",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-LightItalic.woff2"
|
||||
],
|
||||
"fontWeight": "300",
|
||||
"fontStyle": "italic",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-Regular.woff2"
|
||||
],
|
||||
"fontWeight": "400",
|
||||
"fontStyle": "normal",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-RegularItalic.woff2"
|
||||
],
|
||||
"fontWeight": "400",
|
||||
"fontStyle": "italic",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-Medium.woff2"
|
||||
],
|
||||
"fontWeight": "500",
|
||||
"fontStyle": "normal",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-MediumItalic.woff2"
|
||||
],
|
||||
"fontWeight": "500",
|
||||
"fontStyle": "italic",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-SemiBold.woff2"
|
||||
],
|
||||
"fontWeight": "600",
|
||||
"fontStyle": "normal",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-SemiBoldItalic.woff2"
|
||||
],
|
||||
"fontWeight": "600",
|
||||
"fontStyle": "italic",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-Bold.woff2"
|
||||
],
|
||||
"fontWeight": "700",
|
||||
"fontStyle": "normal",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-BoldItalic.woff2"
|
||||
],
|
||||
"fontWeight": "700",
|
||||
"fontStyle": "italic",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-ExtraBold.woff2"
|
||||
],
|
||||
"fontWeight": "800",
|
||||
"fontStyle": "normal",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-ExtraBoldItalic.woff2"
|
||||
],
|
||||
"fontWeight": "800",
|
||||
"fontStyle": "italic",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-Black.woff2"
|
||||
],
|
||||
"fontWeight": "900",
|
||||
"fontStyle": "normal",
|
||||
"fontFamily": "Literata"
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/literata/Literata72pt-BlackItalic.woff2"
|
||||
],
|
||||
"fontWeight": "900",
|
||||
"fontStyle": "italic",
|
||||
"fontFamily": "Literata"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Fira Sans",
|
||||
"slug": "fira-sans",
|
||||
"fontFamily": "\"Fira Sans\", sans-serif",
|
||||
"fontFace": [
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/fira-sans/FiraSans-Thin.woff2"
|
||||
],
|
||||
"fontWeight": "100",
|
||||
"fontStyle": "normal",
|
||||
"fontFamily": "\"Fira Sans\""
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/fira-sans/FiraSans-ThinItalic.woff2"
|
||||
],
|
||||
"fontWeight": "100",
|
||||
"fontStyle": "italic",
|
||||
"fontFamily": "\"Fira Sans\""
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/fira-sans/FiraSans-ExtraLight.woff2"
|
||||
],
|
||||
"fontWeight": "200",
|
||||
"fontStyle": "normal",
|
||||
"fontFamily": "\"Fira Sans\""
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/fira-sans/FiraSans-ExtraLightItalic.woff2"
|
||||
],
|
||||
"fontWeight": "200",
|
||||
"fontStyle": "italic",
|
||||
"fontFamily": "\"Fira Sans\""
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/fira-sans/FiraSans-Light.woff2"
|
||||
],
|
||||
"fontWeight": "300",
|
||||
"fontStyle": "normal",
|
||||
"fontFamily": "\"Fira Sans\""
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/fira-sans/FiraSans-LightItalic.woff2"
|
||||
],
|
||||
"fontWeight": "300",
|
||||
"fontStyle": "italic",
|
||||
"fontFamily": "\"Fira Sans\""
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/fira-sans/FiraSans-Italic.woff2"
|
||||
],
|
||||
"fontWeight": "400",
|
||||
"fontStyle": "italic",
|
||||
"fontFamily": "\"Fira Sans\""
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/fira-sans/FiraSans-Regular.woff2"
|
||||
],
|
||||
"fontWeight": "400",
|
||||
"fontStyle": "normal",
|
||||
"fontFamily": "\"Fira Sans\""
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/fira-sans/FiraSans-Medium.woff2"
|
||||
],
|
||||
"fontWeight": "500",
|
||||
"fontStyle": "normal",
|
||||
"fontFamily": "\"Fira Sans\""
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/fira-sans/FiraSans-MediumItalic.woff2"
|
||||
],
|
||||
"fontWeight": "500",
|
||||
"fontStyle": "italic",
|
||||
"fontFamily": "\"Fira Sans\""
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/fira-sans/FiraSans-SemiBold.woff2"
|
||||
],
|
||||
"fontWeight": "600",
|
||||
"fontStyle": "normal",
|
||||
"fontFamily": "\"Fira Sans\""
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/fira-sans/FiraSans-SemiBoldItalic.woff2"
|
||||
],
|
||||
"fontWeight": "600",
|
||||
"fontStyle": "italic",
|
||||
"fontFamily": "\"Fira Sans\""
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/fira-sans/FiraSans-Bold.woff2"
|
||||
],
|
||||
"fontWeight": "700",
|
||||
"fontStyle": "normal",
|
||||
"fontFamily": "\"Fira Sans\""
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/fira-sans/FiraSans-BoldItalic.woff2"
|
||||
],
|
||||
"fontWeight": "700",
|
||||
"fontStyle": "italic",
|
||||
"fontFamily": "\"Fira Sans\""
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/fira-sans/FiraSans-ExtraBold.woff2"
|
||||
],
|
||||
"fontWeight": "800",
|
||||
"fontStyle": "normal",
|
||||
"fontFamily": "\"Fira Sans\""
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/fira-sans/FiraSans-ExtraBoldItalic.woff2"
|
||||
],
|
||||
"fontWeight": "800",
|
||||
"fontStyle": "italic",
|
||||
"fontFamily": "\"Fira Sans\""
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/fira-sans/FiraSans-Black.woff2"
|
||||
],
|
||||
"fontWeight": "900",
|
||||
"fontStyle": "normal",
|
||||
"fontFamily": "\"Fira Sans\""
|
||||
},
|
||||
{
|
||||
"src": [
|
||||
"file:./assets/fonts/fira-sans/FiraSans-BlackItalic.woff2"
|
||||
],
|
||||
"fontWeight": "900",
|
||||
"fontStyle": "italic",
|
||||
"fontFamily": "\"Fira Sans\""
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"fontSizes": [
|
||||
{
|
||||
"fluid": false,
|
||||
"name": "Small",
|
||||
"size": "0.9rem",
|
||||
"slug": "small"
|
||||
},
|
||||
{
|
||||
"fluid": {
|
||||
"max": "1.2rem",
|
||||
"min": "0.9rem"
|
||||
},
|
||||
"name": "Medium",
|
||||
"size": "1rem",
|
||||
"slug": "medium"
|
||||
},
|
||||
{
|
||||
"fluid": {
|
||||
"max": "1.8rem",
|
||||
"min": "1.2rem"
|
||||
},
|
||||
"name": "Large",
|
||||
"size": "1.2rem",
|
||||
"slug": "large"
|
||||
},
|
||||
{
|
||||
"fluid": {
|
||||
"max": "2.2rem",
|
||||
"min": "1.8rem"
|
||||
},
|
||||
"name": "Extra Large",
|
||||
"size": "1.8rem",
|
||||
"slug": "x-large"
|
||||
},
|
||||
{
|
||||
"fluid": {
|
||||
"max": "2.8rem",
|
||||
"min": "2rem"
|
||||
},
|
||||
"name": "Extra Extra Large",
|
||||
"size": "2rem",
|
||||
"slug": "xx-large"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"styles": {
|
||||
"typography": {
|
||||
"fontSize": "var:preset|font-size|medium",
|
||||
"fontFamily": "var:preset|font-family|fira-sans",
|
||||
"letterSpacing": "-0.01em",
|
||||
"lineHeight": "1.5"
|
||||
},
|
||||
"blocks": {
|
||||
"core/post-title": {
|
||||
"typography": {
|
||||
"fontWeight": "200"
|
||||
}
|
||||
},
|
||||
"core/pullquote": {
|
||||
"typography": {
|
||||
"fontFamily": "var:preset|font-family|literata",
|
||||
"fontWeight": "200",
|
||||
"letterSpacing": "0em"
|
||||
}
|
||||
},
|
||||
"core/query-pagination": {
|
||||
"typography": {
|
||||
"fontWeight": "300",
|
||||
"letterSpacing": "0px"
|
||||
}
|
||||
},
|
||||
"core/quote": {
|
||||
"typography": {
|
||||
"fontSize": "var:preset|font-size|medium",
|
||||
"letterSpacing": "-0.01em",
|
||||
"lineHeight": "1.5",
|
||||
"fontWeight": "300"
|
||||
}
|
||||
},
|
||||
"core/site-title": {
|
||||
"typography": {
|
||||
"fontFamily": "var:preset|font-family|literata",
|
||||
"fontSize": "var:preset|font-size|x-large",
|
||||
"fontWeight": "300",
|
||||
"letterSpacing": "-0.56px",
|
||||
"textTransform": "uppercase"
|
||||
}
|
||||
}
|
||||
},
|
||||
"elements": {
|
||||
"button": {
|
||||
"typography": {
|
||||
"fontFamily": "var:preset|font-family|literata",
|
||||
"fontSize": "var:preset|font-size|medium",
|
||||
"fontWeight": "400",
|
||||
"letterSpacing": "-0.01em",
|
||||
"textTransform": "uppercase"
|
||||
}
|
||||
},
|
||||
"heading": {
|
||||
"typography": {
|
||||
"fontFamily": "var:preset|font-family|literata",
|
||||
"fontWeight": "200",
|
||||
"letterSpacing": "-0.02em",
|
||||
"lineHeight": "1.24"
|
||||
}
|
||||
},
|
||||
"h6": {
|
||||
"typography": {
|
||||
"fontWeight": "200"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,29 @@
|
|||
<!-- wp:template-part {"slug":"header"} /-->
|
||||
|
||||
<!-- wp:group {"tagName":"main","layout":{"type":"constrained"}} -->
|
||||
<main class="wp-block-group"><!-- wp:spacer {"height":"var(\u002d\u002dwp\u002d\u002dpreset\u002d\u002dspacing\u002d\u002d30)"} -->
|
||||
<div style="height:var(--wp--preset--spacing--30)" aria-hidden="true" class="wp-block-spacer"></div>
|
||||
<!-- /wp:spacer -->
|
||||
|
||||
<!-- wp:group {"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group"><!-- wp:heading {"level":6,"align":"wide"} -->
|
||||
<h6 class="wp-block-heading alignwide">404</h6>
|
||||
<!-- /wp:heading -->
|
||||
|
||||
<!-- wp:group {"align":"wide","style":{"spacing":{"margin":{"top":"5px"}}},"layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group alignwide" style="margin-top:5px"><!-- wp:paragraph -->
|
||||
<p>Não foi possível encontrar esta página.</p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"elements":{"link":{"color":{"text":"var:preset|color|tertiary"},":hover":{"color":{"text":"var:preset|color|primary"}}}}}} -->
|
||||
<p class="has-link-color"><a href="https://indymedia.pt">Volta à página incial</a></p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:spacer {"height":"493px"} -->
|
||||
<div style="height:493px" aria-hidden="true" class="wp-block-spacer"></div>
|
||||
<!-- /wp:spacer --></main>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer"} /-->
|
||||
|
|
@ -0,0 +1,211 @@
|
|||
<!-- wp:group {"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group"><!-- wp:columns {"align":"full","style":{"spacing":{"blockGap":{"left":"var:preset|spacing|20"}}}} -->
|
||||
<div class="wp-block-columns alignfull"><!-- wp:column {"width":"80%"} -->
|
||||
<div class="wp-block-column" style="flex-basis:80%"><!-- wp:template-part {"slug":"header"} /-->
|
||||
|
||||
<!-- wp:group {"align":"full","style":{"color":{"background":"#2f2f2f"},"spacing":{"padding":{"right":"0","left":"0"},"margin":{"top":"10px","bottom":"10px"},"blockGap":"5px"}},"layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group alignfull has-background" style="background-color:#2f2f2f;margin-top:10px;margin-bottom:10px;padding-right:0;padding-left:0"><!-- wp:post-title {"textAlign":"left","level":5,"align":"wide","style":{"spacing":{"padding":{"right":"var:preset|spacing|30","left":"var:preset|spacing|30","top":"var:preset|spacing|20","bottom":"var:preset|spacing|20"}},"border":{"top":{"color":"var:preset|color|accent-6","width":"1px"},"right":{"width":"0px","style":"none"},"bottom":{"width":"0px","style":"none"},"left":{"width":"0px","style":"none"}},"color":{"background":"#480000"}},"fontSize":"medium"} /--></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"tagName":"main","style":{"spacing":{"margin":{"top":"var:preset|spacing|30","bottom":"var:preset|spacing|30"}}},"layout":{"type":"constrained"}} -->
|
||||
<main class="wp-block-group" style="margin-top:var(--wp--preset--spacing--30);margin-bottom:var(--wp--preset--spacing--30)"><!-- wp:search {"label":"\u003cbr\u003ePesquisar","showLabel":false,"width":220,"widthUnit":"px","buttonText":"Pesquisar","buttonPosition":"button-inside","buttonUseIcon":true} /-->
|
||||
|
||||
<!-- wp:query-title {"type":"archive","level":5} /-->
|
||||
|
||||
<!-- wp:query {"queryId":10,"query":{"perPage":10,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":true}} -->
|
||||
<div class="wp-block-query"><!-- wp:post-template -->
|
||||
<!-- wp:group {"align":"full","style":{"spacing":{"blockGap":"0"}},"layout":{"type":"flex","orientation":"vertical"}} -->
|
||||
<div class="wp-block-group alignfull"><!-- wp:group {"align":"full","style":{"spacing":{"blockGap":"0","padding":{"top":"var:preset|spacing|20","bottom":"var:preset|spacing|20"}}},"fontSize":"medium","layout":{"type":"flex","orientation":"vertical"}} -->
|
||||
<div class="wp-block-group alignfull has-medium-font-size" style="padding-top:var(--wp--preset--spacing--20);padding-bottom:var(--wp--preset--spacing--20)"><!-- wp:post-title {"level":1,"isLink":true,"linkTarget":"_blank","style":{"layout":{"selfStretch":"fit","flexSize":null},"typography":{"fontStyle":"normal","fontWeight":"400","textTransform":"uppercase"},"elements":{"link":{":hover":{"color":{"text":"var:preset|color|accent-1"}},"color":{"text":"var:preset|color|accent-1"}}}},"textColor":"accent-1","fontSize":"small","fontFamily":"inclusive-sans"} /-->
|
||||
|
||||
<!-- wp:post-excerpt {"showMoreOnNewLine":false,"excerptLength":10,"fontSize":"small"} /-->
|
||||
|
||||
<!-- wp:post-date {"metadata":{"bindings":{"datetime":{"source":"core/post-data","args":{"field":"date"}}}},"style":{"typography":{"fontSize":"0.8rem"},"elements":{"link":{"color":{"text":"var:preset|color|base"}}}},"textColor":"base"} /-->
|
||||
|
||||
<!-- wp:post-terms {"term":"post_tag","style":{"typography":{"fontSize":"0.7rem"}}} /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
<!-- /wp:post-template --></div>
|
||||
<!-- /wp:query --></main>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"width":"20%"} -->
|
||||
<div class="wp-block-column" style="flex-basis:20%"><!-- wp:group {"style":{"spacing":{"padding":{"right":"0","left":"0","top":"0","bottom":"var:preset|spacing|20"}}},"backgroundColor":"accent-4","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group has-accent-4-background-color has-background" style="padding-top:0;padding-right:0;padding-bottom:var(--wp--preset--spacing--20);padding-left:0"><!-- wp:image {"id":14,"sizeSlug":"full","linkDestination":"none","align":"full"} -->
|
||||
<figure class="wp-block-image alignfull size-full"><img src="http://localhost:8080/wp-content/uploads/2026/03/imcbannerlogo.gif" alt="" class="wp-image-14"/></figure>
|
||||
<!-- /wp:image -->
|
||||
|
||||
<!-- wp:group {"align":"full","layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group alignfull"><!-- wp:group {"style":{"spacing":{"padding":{"right":"var:preset|spacing|20","left":"var:preset|spacing|20"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="padding-right:var(--wp--preset--spacing--20);padding-left:var(--wp--preset--spacing--20)"><!-- wp:image {"id":16,"sizeSlug":"full","linkDestination":"none","align":"wide","style":{"spacing":{"margin":{"top":"0","bottom":"0","left":"0","right":"0"}}}} -->
|
||||
<figure class="wp-block-image alignwide size-full" style="margin-top:0;margin-right:0;margin-bottom:0;margin-left:0"><img src="http://localhost:8080/wp-content/uploads/2026/03/imclogo2-2.gif" alt="" class="wp-image-16"/></figure>
|
||||
<!-- /wp:image --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"right":"var:preset|spacing|20","left":"var:preset|spacing|20"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="padding-right:var(--wp--preset--spacing--20);padding-left:var(--wp--preset--spacing--20)"><!-- wp:paragraph {"fontSize":"small"} -->
|
||||
<p class="has-small-font-size"><small>Indymedia is a collective of independent media organizations and hundreds of journalists offering grassroots, non-corporate coverage. Indymedia is a democratic media outlet for the creation of radical, accurate, and passionate tellings of truth.</small></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:details {"showContent":true,"fontSize":"small"} -->
|
||||
<details class="wp-block-details has-small-font-size" open><summary><strong>participate</strong></summary><!-- wp:paragraph {"style":{"spacing":{"padding":{"top":"2px","bottom":"2px"}}},"fontSize":"small"} -->
|
||||
<p class="has-small-font-size" style="padding-top:2px;padding-bottom:2px"><a href="https://indymedia.pt/publicar/" data-type="page" data-id="88"></a><a href="https://web.archive.org/web/20161020124538/https://publish.indymedia.org/earth/servlet/OpenMir?do=opensession&sessiontype=content">post your news</a> <br>instantly upload your audio, video, photo or text directly from your browser</p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"spacing":{"padding":{"top":"2px","bottom":"2px"}}},"fontSize":"small"} -->
|
||||
<p class="has-small-font-size" style="padding-top:2px;padding-bottom:2px"><a href="https://radio.indymedia.org">radio.indymedia.org</a> (<a href="https://archive.org/details/@r_dio_paralelo_porto">arquivo</a>)<br><a href="https://indymedia.pt/about/" data-type="page" data-id="21">about</a><br><a href="https://indymedia.pt/contact/" data-type="page" data-id="228713">contact</a><br><a href="https://indymedia.pt/rss/" data-type="page" data-id="226885">RSS</a><br><a href="https://indymedia.pt/links/" data-type="page" data-id="7366">links</a><br>wiki<br><a href="https://unite.openworlds.info/Open-Media-Network/Wordpress">code</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p>IndyMedia Network - IMC's</p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"margin":{"top":"var:preset|spacing|20","bottom":"var:preset|spacing|20"},"blockGap":"0"}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="margin-top:var(--wp--preset--spacing--20);margin-bottom:var(--wp--preset--spacing--20)"><!-- wp:paragraph -->
|
||||
<p><a href="http://indymedia.org/" target="_blank" rel="noreferrer noopener">indymedia.org</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="http://radio.indymedia.org/" target="_blank" rel="noreferrer noopener">radio.indymedia.org</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://argentina.indymedia.org/" target="_blank" rel="noreferrer noopener">Argentina</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://athens.indymedia.org/" target="_blank" rel="noreferrer noopener">Athens</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="http://barcelona.indymedia.org/" target="_blank" rel="noreferrer noopener">Barcelona</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://bxl.indymedia.org/?lang=fr">Belgium</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://midiaindependente.org/" target="_blank" rel="noreferrer noopener">Brasil</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://chicago.indymedia.org/" target="_blank" rel="noreferrer noopener">Chicago</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://ecuadorindymedia.org/" target="_blank" rel="noreferrer noopener">Ecuador </a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://de.indymedia.org/" target="_blank" rel="noreferrer noopener">Germany</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://cmiguate.org/" target="_blank" rel="noreferrer noopener">Guatemala</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="http://www.indymedia.ie/" target="_blank" rel="noreferrer noopener">Ireland</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://archive.autistici.org/ai/20210701082026/https://italy.indymedia.org/index.php" target="_blank" rel="noreferrer noopener">Italy</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://lille.indymedia.org/?lang=fr" target="_blank" rel="noreferrer noopener">Lille</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://la.indymedia.org/" target="_blank" rel="noreferrer noopener">Los Angeles</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="http://mexico.indymedia.org/" target="_blank" rel="noreferrer noopener">México</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://nantes.indymedia.org/" target="_blank" rel="noreferrer noopener">Nantes</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://indymedia.nl/" target="_blank" rel="noreferrer noopener">Netherlands</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://podcasts.apple.com/us/podcast/perth-indymedia/id1244713881" target="_blank" rel="noreferrer noopener">Perth</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://indymedia.pt/">Portugal</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://www.indybay.org/" target="_blank" rel="noreferrer noopener">San Francisco</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://www.indybay.org/santa-cruz/">Santa Cruz</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://www.ucimc.org/" target="_blank" rel="noreferrer noopener">Urbana Champain</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://indymedia-venezuela.contrapoder.org/?lang=es" target="_blank" rel="noreferrer noopener">Venezuela</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://dcindymedia.org/">Washington DC</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://www.centrodemedioslibres.org/" target="_blank" rel="noreferrer noopener">Centro de Medios Libres</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://reseaumutu.info/" target="_blank" rel="noreferrer noopener">Reseau Mutu</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://www.anarkismo.net/">Anarkismo.net</a></p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:image {"id":17,"sizeSlug":"full","linkDestination":"none"} -->
|
||||
<figure class="wp-block-image size-full"><img src="http://localhost:8080/wp-content/uploads/2026/03/70E14994-6BDF-4C4A-A31F-E49FC8EFB9D5.jpg" alt="" class="wp-image-17"/></figure>
|
||||
<!-- /wp:image --></details>
|
||||
<!-- /wp:details -->
|
||||
|
||||
<!-- wp:separator {"align":"full","backgroundColor":"accent-4"} -->
|
||||
<hr class="wp-block-separator alignfull has-text-color has-accent-4-color has-alpha-channel-opacity has-accent-4-background-color has-background"/>
|
||||
<!-- /wp:separator -->
|
||||
|
||||
<!-- wp:group {"align":"full","style":{"border":{"width":"0px","style":"none"},"spacing":{"padding":{"right":"var:preset|spacing|20","left":"var:preset|spacing|20"},"margin":{"top":"0","bottom":"0"},"blockGap":"0"}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group alignfull" style="border-style:none;border-width:0px;margin-top:0;margin-bottom:0;padding-right:var(--wp--preset--spacing--20);padding-left:var(--wp--preset--spacing--20)"><!-- wp:group {"align":"wide","layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"center"}} -->
|
||||
<div class="wp-block-group alignwide"><!-- wp:group {"style":{"spacing":{"padding":{"top":"0","bottom":"0","left":"0","right":"0"}}},"layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group" style="padding-top:0;padding-right:0;padding-bottom:0;padding-left:0"><!-- wp:group {"style":{"spacing":{"padding":{"right":"0","left":"0"}}},"layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"center"}} -->
|
||||
<div class="wp-block-group" style="padding-right:0;padding-left:0"><!-- wp:heading {"style":{"typography":{"textTransform":"lowercase","textAlign":"left"},"elements":{"link":{"color":{"text":"var:preset|color|base"}}}},"textColor":"base","fontSize":"small"} -->
|
||||
<h2 class="wp-block-heading has-text-align-left has-base-color has-text-color has-link-color has-small-font-size" style="text-transform:lowercase"><a href="https://radio.indymedia.pt"><strong>radio.indymedia.org</strong></a></h2>
|
||||
<!-- /wp:heading --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:rss {"feedURL":"https://radio.indymedia.org/rss.xml"} /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p></p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer"} /-->
|
||||
|
|
@ -0,0 +1,211 @@
|
|||
<!-- wp:columns {"align":"full","style":{"spacing":{"blockGap":{"left":"var:preset|spacing|20"}}}} -->
|
||||
<div class="wp-block-columns alignfull"><!-- wp:column {"width":"80%"} -->
|
||||
<div class="wp-block-column" style="flex-basis:80%"><!-- wp:template-part {"slug":"header"} /-->
|
||||
|
||||
<!-- wp:group {"align":"full","style":{"color":{"background":"#2f2f2f"},"spacing":{"padding":{"right":"0","left":"0"},"margin":{"top":"10px","bottom":"10px"},"blockGap":"5px"}},"layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group alignfull has-background" style="background-color:#2f2f2f;margin-top:10px;margin-bottom:10px;padding-right:0;padding-left:0"><!-- wp:post-title {"textAlign":"left","level":5,"align":"wide","style":{"spacing":{"padding":{"right":"var:preset|spacing|30","left":"var:preset|spacing|30","top":"var:preset|spacing|20","bottom":"var:preset|spacing|20"}},"border":{"top":{"color":"var:preset|color|accent-6","width":"1px"},"right":{"width":"0px","style":"none"},"bottom":{"width":"0px","style":"none"},"left":{"width":"0px","style":"none"}},"color":{"background":"#480000"}},"fontSize":"medium"} /--></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"tagName":"main","style":{"spacing":{"margin":{"top":"var:preset|spacing|30","bottom":"var:preset|spacing|30"}}},"layout":{"type":"constrained"}} -->
|
||||
<main class="wp-block-group" style="margin-top:var(--wp--preset--spacing--30);margin-bottom:var(--wp--preset--spacing--30)"><!-- wp:group {"align":"full","style":{"spacing":{"padding":{"right":"0","left":"0"},"blockGap":"var:preset|spacing|20"}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group alignfull" style="padding-right:0;padding-left:0"><!-- wp:query-title {"type":"archive","level":5,"align":"full","style":{"spacing":{"padding":{"right":"var:preset|spacing|30","left":"var:preset|spacing|30"}}}} /-->
|
||||
|
||||
<!-- wp:query {"queryId":10,"query":{"perPage":10,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":true},"align":"full"} -->
|
||||
<div class="wp-block-query alignfull"><!-- wp:post-template -->
|
||||
<!-- wp:group {"align":"full","style":{"spacing":{"blockGap":"0","padding":{"right":"var:preset|spacing|30","left":"var:preset|spacing|30"}}},"layout":{"type":"flex","orientation":"vertical"}} -->
|
||||
<div class="wp-block-group alignfull" style="padding-right:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)"><!-- wp:group {"align":"full","style":{"spacing":{"blockGap":"0","padding":{"top":"var:preset|spacing|20","bottom":"var:preset|spacing|20"}}},"fontSize":"medium","layout":{"type":"flex","orientation":"vertical"}} -->
|
||||
<div class="wp-block-group alignfull has-medium-font-size" style="padding-top:var(--wp--preset--spacing--20);padding-bottom:var(--wp--preset--spacing--20)"><!-- wp:post-title {"level":1,"isLink":true,"linkTarget":"_blank","style":{"layout":{"selfStretch":"fit","flexSize":null},"typography":{"fontStyle":"normal","fontWeight":"400","textTransform":"uppercase"},"elements":{"link":{":hover":{"color":{"text":"var:preset|color|accent-1"}},"color":{"text":"var:preset|color|accent-1"}}}},"textColor":"accent-1","fontSize":"small","fontFamily":"inclusive-sans"} /-->
|
||||
|
||||
<!-- wp:post-excerpt {"showMoreOnNewLine":false,"excerptLength":10,"fontSize":"small"} /-->
|
||||
|
||||
<!-- wp:post-date {"metadata":{"bindings":{"datetime":{"source":"core/post-data","args":{"field":"date"}}}},"style":{"typography":{"fontSize":"0.8rem"},"elements":{"link":{"color":{"text":"var:preset|color|base"}}}},"textColor":"base"} /-->
|
||||
|
||||
<!-- wp:post-terms {"term":"post_tag","style":{"typography":{"fontSize":"0.7rem"}}} /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
<!-- /wp:post-template --></div>
|
||||
<!-- /wp:query --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:search {"label":"\u003cbr\u003ePesquisar","showLabel":false,"width":645,"widthUnit":"px","buttonText":"Pesquisar","buttonPosition":"button-inside","buttonUseIcon":true,"backgroundColor":"contrast"} /--></main>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"width":"20%"} -->
|
||||
<div class="wp-block-column" style="flex-basis:20%"><!-- wp:group {"style":{"spacing":{"padding":{"right":"0","left":"0","top":"0","bottom":"var:preset|spacing|20"}}},"backgroundColor":"accent-4","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group has-accent-4-background-color has-background" style="padding-top:0;padding-right:0;padding-bottom:var(--wp--preset--spacing--20);padding-left:0"><!-- wp:image {"id":14,"sizeSlug":"full","linkDestination":"none","align":"full"} -->
|
||||
<figure class="wp-block-image alignfull size-full"><img src="http://localhost:8080/wp-content/uploads/2026/03/imcbannerlogo.gif" alt="" class="wp-image-14"/></figure>
|
||||
<!-- /wp:image -->
|
||||
|
||||
<!-- wp:group {"align":"full","layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group alignfull"><!-- wp:group {"style":{"spacing":{"padding":{"right":"var:preset|spacing|20","left":"var:preset|spacing|20"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="padding-right:var(--wp--preset--spacing--20);padding-left:var(--wp--preset--spacing--20)"><!-- wp:image {"id":16,"sizeSlug":"full","linkDestination":"none","align":"wide","style":{"spacing":{"margin":{"top":"0","bottom":"0","left":"0","right":"0"}}}} -->
|
||||
<figure class="wp-block-image alignwide size-full" style="margin-top:0;margin-right:0;margin-bottom:0;margin-left:0"><img src="http://localhost:8080/wp-content/uploads/2026/03/imclogo2-2.gif" alt="" class="wp-image-16"/></figure>
|
||||
<!-- /wp:image --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"right":"var:preset|spacing|20","left":"var:preset|spacing|20"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="padding-right:var(--wp--preset--spacing--20);padding-left:var(--wp--preset--spacing--20)"><!-- wp:paragraph {"fontSize":"small"} -->
|
||||
<p class="has-small-font-size"><small>Indymedia is a collective of independent media organizations and hundreds of journalists offering grassroots, non-corporate coverage. Indymedia is a democratic media outlet for the creation of radical, accurate, and passionate tellings of truth.</small></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:details {"showContent":true,"fontSize":"small"} -->
|
||||
<details class="wp-block-details has-small-font-size" open><summary><strong>participate</strong></summary><!-- wp:paragraph {"style":{"spacing":{"padding":{"top":"2px","bottom":"2px"}}},"fontSize":"small"} -->
|
||||
<p class="has-small-font-size" style="padding-top:2px;padding-bottom:2px"><a href="https://indymedia.pt/publicar/" data-type="page" data-id="88"></a><a href="https://web.archive.org/web/20161020124538/https://publish.indymedia.org/earth/servlet/OpenMir?do=opensession&sessiontype=content">post your news</a> <br>instantly upload your audio, video, photo or text directly from your browser</p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"spacing":{"padding":{"top":"2px","bottom":"2px"}}},"fontSize":"small"} -->
|
||||
<p class="has-small-font-size" style="padding-top:2px;padding-bottom:2px"><a href="https://radio.indymedia.org">radio.indymedia.org</a> (<a href="https://archive.org/details/@r_dio_paralelo_porto">arquivo</a>)<br><a href="https://indymedia.pt/about/" data-type="page" data-id="21">about</a><br><a href="https://indymedia.pt/contact/" data-type="page" data-id="228713">contact</a><br><a href="https://indymedia.pt/rss/" data-type="page" data-id="226885">RSS</a><br><a href="https://indymedia.pt/links/" data-type="page" data-id="7366">links</a><br>wiki<br><a href="https://unite.openworlds.info/Open-Media-Network/Wordpress">code</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p>IndyMedia Network - IMC's</p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"margin":{"top":"var:preset|spacing|20","bottom":"var:preset|spacing|20"},"blockGap":"0"}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="margin-top:var(--wp--preset--spacing--20);margin-bottom:var(--wp--preset--spacing--20)"><!-- wp:paragraph -->
|
||||
<p><a href="http://indymedia.org/" target="_blank" rel="noreferrer noopener">indymedia.org</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="http://radio.indymedia.org/" target="_blank" rel="noreferrer noopener">radio.indymedia.org</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://argentina.indymedia.org/" target="_blank" rel="noreferrer noopener">Argentina</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://athens.indymedia.org/" target="_blank" rel="noreferrer noopener">Athens</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="http://barcelona.indymedia.org/" target="_blank" rel="noreferrer noopener">Barcelona</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://bxl.indymedia.org/?lang=fr">Belgium</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://midiaindependente.org/" target="_blank" rel="noreferrer noopener">Brasil</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://chicago.indymedia.org/" target="_blank" rel="noreferrer noopener">Chicago</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://ecuadorindymedia.org/" target="_blank" rel="noreferrer noopener">Ecuador </a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://de.indymedia.org/" target="_blank" rel="noreferrer noopener">Germany</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://cmiguate.org/" target="_blank" rel="noreferrer noopener">Guatemala</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="http://www.indymedia.ie/" target="_blank" rel="noreferrer noopener">Ireland</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://archive.autistici.org/ai/20210701082026/https://italy.indymedia.org/index.php" target="_blank" rel="noreferrer noopener">Italy</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://lille.indymedia.org/?lang=fr" target="_blank" rel="noreferrer noopener">Lille</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://la.indymedia.org/" target="_blank" rel="noreferrer noopener">Los Angeles</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="http://mexico.indymedia.org/" target="_blank" rel="noreferrer noopener">México</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://nantes.indymedia.org/" target="_blank" rel="noreferrer noopener">Nantes</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://indymedia.nl/" target="_blank" rel="noreferrer noopener">Netherlands</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://podcasts.apple.com/us/podcast/perth-indymedia/id1244713881" target="_blank" rel="noreferrer noopener">Perth</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://indymedia.pt/">Portugal</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://www.indybay.org/" target="_blank" rel="noreferrer noopener">San Francisco</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://www.indybay.org/santa-cruz/">Santa Cruz</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://www.ucimc.org/" target="_blank" rel="noreferrer noopener">Urbana Champain</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://indymedia-venezuela.contrapoder.org/?lang=es" target="_blank" rel="noreferrer noopener">Venezuela</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://dcindymedia.org/">Washington DC</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://www.centrodemedioslibres.org/" target="_blank" rel="noreferrer noopener">Centro de Medios Libres</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://reseaumutu.info/" target="_blank" rel="noreferrer noopener">Reseau Mutu</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://www.anarkismo.net/">Anarkismo.net</a></p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:image {"id":17,"sizeSlug":"full","linkDestination":"none"} -->
|
||||
<figure class="wp-block-image size-full"><img src="http://localhost:8080/wp-content/uploads/2026/03/70E14994-6BDF-4C4A-A31F-E49FC8EFB9D5.jpg" alt="" class="wp-image-17"/></figure>
|
||||
<!-- /wp:image --></details>
|
||||
<!-- /wp:details -->
|
||||
|
||||
<!-- wp:separator {"align":"full","backgroundColor":"accent-4"} -->
|
||||
<hr class="wp-block-separator alignfull has-text-color has-accent-4-color has-alpha-channel-opacity has-accent-4-background-color has-background"/>
|
||||
<!-- /wp:separator -->
|
||||
|
||||
<!-- wp:group {"align":"full","style":{"border":{"width":"0px","style":"none"},"spacing":{"padding":{"right":"var:preset|spacing|20","left":"var:preset|spacing|20"},"margin":{"top":"0","bottom":"0"},"blockGap":"0"}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group alignfull" style="border-style:none;border-width:0px;margin-top:0;margin-bottom:0;padding-right:var(--wp--preset--spacing--20);padding-left:var(--wp--preset--spacing--20)"><!-- wp:group {"align":"wide","layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"center"}} -->
|
||||
<div class="wp-block-group alignwide"><!-- wp:group {"style":{"spacing":{"padding":{"top":"0","bottom":"0","left":"0","right":"0"}}},"layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group" style="padding-top:0;padding-right:0;padding-bottom:0;padding-left:0"><!-- wp:group {"style":{"spacing":{"padding":{"right":"0","left":"0"}}},"layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"center"}} -->
|
||||
<div class="wp-block-group" style="padding-right:0;padding-left:0"><!-- wp:heading {"style":{"typography":{"textTransform":"lowercase","textAlign":"left"},"elements":{"link":{"color":{"text":"var:preset|color|base"}}}},"textColor":"base","fontSize":"small"} -->
|
||||
<h2 class="wp-block-heading has-text-align-left has-base-color has-text-color has-link-color has-small-font-size" style="text-transform:lowercase"><a href="https://radio.indymedia.pt"><strong>radio.indymedia.org</strong></a></h2>
|
||||
<!-- /wp:heading --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:rss {"feedURL":"https://radio.indymedia.org/rss.xml"} /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p></p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer"} /-->
|
||||
|
|
@ -0,0 +1,341 @@
|
|||
<!-- wp:columns {"style":{"spacing":{"blockGap":{"top":"0","left":"0"},"margin":{"top":"0","bottom":"0"}}}} -->
|
||||
<div class="wp-block-columns" style="margin-top:0;margin-bottom:0"><!-- wp:column {"width":"20%","backgroundColor":"accent-3"} -->
|
||||
<div class="wp-block-column has-accent-3-background-color has-background" style="flex-basis:20%"><!-- wp:group {"align":"full","style":{"spacing":{"padding":{"top":"0","bottom":"0"},"margin":{"top":"0","bottom":"0"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group alignfull" style="margin-top:0;margin-bottom:0;padding-top:0;padding-bottom:0"><!-- wp:group {"align":"full","style":{"spacing":{"margin":{"top":"0","bottom":"0"},"padding":{"top":"0","bottom":"0"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group alignfull" style="margin-top:0;margin-bottom:0;padding-top:0;padding-bottom:0"><!-- wp:group {"align":"full","style":{"position":{"type":""}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group alignfull"><!-- wp:group {"align":"full","style":{"spacing":{"padding":{"top":"var:preset|spacing|20","bottom":"var:preset|spacing|20","left":"0","right":"0"},"margin":{"top":"0","bottom":"0"},"blockGap":"0"}},"backgroundColor":"accent-4","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group alignfull has-accent-4-background-color has-background" style="margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--20);padding-right:0;padding-bottom:var(--wp--preset--spacing--20);padding-left:0"><!-- wp:template-part {"slug":"header"} /--></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p></p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="/publish">publish your news</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:group {"align":"full","style":{"spacing":{"padding":{"right":"0","left":"0"},"blockGap":"0","margin":{"top":"0","bottom":"0"}}},"layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group alignfull" style="margin-top:0;margin-bottom:0;padding-right:0;padding-left:0"><!-- wp:group {"style":{"spacing":{"padding":{"bottom":"var:preset|spacing|30","left":"var:preset|spacing|20","top":"0px","right":"var:preset|spacing|20"},"margin":{"top":"0","bottom":"0"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="margin-top:0;margin-bottom:0;padding-top:0px;padding-right:var(--wp--preset--spacing--20);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--20)"><!-- wp:group {"align":"full","style":{"spacing":{"padding":{"top":"0","bottom":"0"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group alignfull" style="padding-top:0;padding-bottom:0"><!-- wp:query {"queryId":2,"query":{"perPage":20,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":false,"taxQuery":null,"parents":[],"format":[]},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-query"><!-- wp:post-template {"style":{"elements":{"link":{"color":{"text":"var:preset|color|base"}}},"spacing":{"blockGap":"0"}},"fontSize":"medium","layout":{"type":"default","columnCount":null,"minimumColumnWidth":"12rem"}} -->
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontStyle":"normal","fontWeight":"700"}}} -->
|
||||
<p style="font-style:normal;font-weight:700">NEWSWIRE</p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:group {"align":"full","style":{"spacing":{"blockGap":"0","padding":{"top":"0","bottom":"0"}}},"fontSize":"medium","layout":{"type":"flex","orientation":"vertical"}} -->
|
||||
<div class="wp-block-group alignfull has-medium-font-size" style="padding-top:0;padding-bottom:0"><!-- wp:post-title {"level":1,"isLink":true,"linkTarget":"_blank","style":{"layout":{"selfStretch":"fit","flexSize":null},"typography":{"fontStyle":"normal","fontWeight":"400","textTransform":"uppercase"},"elements":{"link":{":hover":{"color":{"text":"var:preset|color|accent-1"}},"color":{"text":"var:preset|color|accent-1"}}}},"textColor":"accent-1","fontSize":"small","fontFamily":"inclusive-sans"} /-->
|
||||
|
||||
<!-- wp:post-excerpt {"showMoreOnNewLine":false,"excerptLength":10,"fontSize":"small"} /-->
|
||||
|
||||
<!-- wp:post-date {"metadata":{"bindings":{"datetime":{"source":"core/post-data","args":{"field":"date"}}}},"style":{"typography":{"fontSize":"0.8rem"},"elements":{"link":{"color":{"text":"var:preset|color|base"}}}},"textColor":"base"} /-->
|
||||
|
||||
<!-- wp:post-terms {"term":"post_tag","style":{"typography":{"fontSize":"0.7rem"}}} /--></div>
|
||||
<!-- /wp:group -->
|
||||
<!-- /wp:post-template -->
|
||||
|
||||
<!-- wp:query-pagination {"paginationArrow":"arrow","showLabel":false,"fontSize":"large","layout":{"type":"flex","justifyContent":"space-between"}} -->
|
||||
<!-- wp:query-pagination-previous /-->
|
||||
|
||||
<!-- wp:query-pagination-next /-->
|
||||
<!-- /wp:query-pagination --></div>
|
||||
<!-- /wp:query --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:paragraph {"fontSize":"small"} -->
|
||||
<p class="has-small-font-size"><a href="/newswire/">News</a> | <a href="/archive/" data-type="link" data-id="https://indymedia.pt/arquivo/">Archive</a></p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"width":"60%"} -->
|
||||
<div class="wp-block-column" style="flex-basis:60%"><!-- wp:group {"style":{"spacing":{"padding":{"top":"0px","bottom":"0px","left":"5px","right":"5px"},"margin":{"top":"0","bottom":"0"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="margin-top:0;margin-bottom:0;padding-top:0px;padding-right:5px;padding-bottom:0px;padding-left:5px"><!-- wp:group {"align":"wide","style":{"spacing":{"margin":{"top":"0px","bottom":"0px"},"padding":{"top":"0","bottom":"0","left":"0","right":"0"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group alignwide" style="margin-top:0px;margin-bottom:0px;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0"><!-- wp:group {"align":"full","style":{"spacing":{"margin":{"top":"0px"},"padding":{"top":"0px","bottom":"0px","left":"0","right":"0"}}},"backgroundColor":"accent-4","layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group alignfull has-accent-4-background-color has-background" style="margin-top:0px;padding-top:0px;padding-right:0;padding-bottom:0px;padding-left:0"><!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|30","padding":{"top":"0px","bottom":"0px","left":"0","right":"0"},"margin":{"top":"0","bottom":"0"}},"typography":{"textTransform":"uppercase"},"elements":{"link":{"color":{"text":"var:preset|color|base"}}}},"textColor":"base","fontSize":"small","layout":{"type":"flex","flexWrap":"wrap","justifyContent":"left"}} -->
|
||||
<div class="wp-block-group has-base-color has-text-color has-link-color has-small-font-size" style="margin-top:0;margin-bottom:0;padding-top:0px;padding-right:0;padding-bottom:0px;padding-left:0;text-transform:uppercase"><!-- wp:group {"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group"><!-- wp:image {"lightbox":{"enabled":false},"id":23,"width":"30px","sizeSlug":"full","linkDestination":"custom"} -->
|
||||
<figure class="wp-block-image size-full is-resized"><a href="/newswire"><img src="http://localhost:8080/wp-content/uploads/2026/03/indymedia-features.png" alt="" class="wp-image-23" style="width:30px"/></a></figure>
|
||||
<!-- /wp:image --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="/archive">archive</a> | <a href="https://web.archive.org/web/20161020124538/https://indymedia.org/or/newswire/archive.shtml">newswire</a> | <a href="/publish">publish</a> | <a href="https://web.archive.org/web/20161020124538/https://indymedia.org/or/static/links.shtml">links</a> | <a href="https://web.archive.org/web/20161020124538/https://indymedia.org/or/static/about.shtml">about</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:group {"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group"><!-- wp:image {"id":121,"sizeSlug":"full","linkDestination":"none"} -->
|
||||
<figure class="wp-block-image size-full"><img src="http://localhost:8080/wp-content/uploads/2026/03/rss-feed.png" alt="" class="wp-image-121"/></figure>
|
||||
<!-- /wp:image --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:details {"showContent":true,"align":"wide"} -->
|
||||
<details class="wp-block-details alignwide" open><summary>Features</summary><!-- wp:group {"align":"wide","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group alignwide"><!-- wp:query {"queryId":30,"query":{"perPage":19,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":false},"metadata":{"categories":["posts"],"patternName":"core/query-small-posts","name":"Pequena imagem e título"},"align":"wide"} -->
|
||||
<div class="wp-block-query alignwide"><!-- wp:post-template {"style":{"spacing":{"blockGap":"0"}},"fontSize":"small","layout":{"type":"default"}} -->
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"2px","bottom":"2px","left":"5px","right":"5px"}}},"backgroundColor":"custom-header","fontSize":"small","layout":{"type":"flex","flexWrap":"nowrap"}} -->
|
||||
<div class="wp-block-group has-custom-header-background-color has-background has-small-font-size" style="padding-top:2px;padding-right:5px;padding-bottom:2px;padding-left:5px"><!-- wp:post-terms {"term":"category","suffix":":","style":{"elements":{"link":{"color":{"text":"var:preset|color|secondary"}}},"typography":{"fontStyle":"normal","fontWeight":"300","textTransform":"uppercase"}},"fontSize":"small"} /-->
|
||||
|
||||
<!-- wp:post-terms {"term":"post_tag","style":{"typography":{"fontStyle":"normal","fontWeight":"400","textTransform":"uppercase"}},"fontSize":"small"} /-->
|
||||
|
||||
<!-- wp:post-date {"format":"M j, Y","metadata":{"bindings":{"datetime":{"source":"core/post-data","args":{"field":"date"}}}},"style":{"spacing":{"padding":{"top":"0","bottom":"0"}},"typography":{"textTransform":"uppercase"},"elements":{"link":{"color":{"text":"var:preset|color|base"}}}},"textColor":"base","fontSize":"small"} /--></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"align":"full","style":{"spacing":{"blockGap":"0"}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group alignfull"><!-- wp:group {"align":"full","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group alignfull"><!-- wp:post-title {"isLink":true,"linkTarget":"_blank","align":"wide","style":{"elements":{"link":{"color":{"text":"var:preset|color|base"}}},"spacing":{"padding":{"top":"10px","bottom":"10px","left":"0","right":"0"}},"typography":{"fontSize":"1.2rem"}},"textColor":"base"} /-->
|
||||
|
||||
<!-- wp:group {"align":"full","style":{"spacing":{"margin":{"top":"0","bottom":"0"},"padding":{"top":"0","bottom":"0"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group alignfull" style="margin-top:0;margin-bottom:0;padding-top:0;padding-bottom:0"><!-- wp:columns {"align":"wide","style":{"spacing":{"blockGap":{"top":"0","left":"0"}}}} -->
|
||||
<div class="wp-block-columns alignwide"><!-- wp:column {"width":"80%"} -->
|
||||
<div class="wp-block-column" style="flex-basis:80%"><!-- wp:post-excerpt {"textAlign":"left","moreText":"» continu@r","showMoreOnNewLine":false,"excerptLength":100,"style":{"spacing":{"margin":{"top":"0","bottom":"0"},"padding":{"top":"0","bottom":"0","left":"0","right":"0"}},"layout":{"selfStretch":"fit","flexSize":null},"typography":{"fontSize":"1rem"}},"textColor":"accent-2"} /--></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"width":"20%","style":{"spacing":{"blockGap":"5px","padding":{"top":"0","bottom":"0"}}}} -->
|
||||
<div class="wp-block-column" style="padding-top:0;padding-bottom:0;flex-basis:20%"><!-- wp:group {"layout":{"type":"flex","flexWrap":"nowrap"}} -->
|
||||
<div class="wp-block-group"><!-- wp:post-featured-image {"isLink":true,"aspectRatio":"1","width":"100%","height":"100px","scale":"contain","sizeSlug":"medium","style":{"layout":{"selfStretch":"fit","flexSize":null},"spacing":{"margin":{"right":"0","left":"0","top":"0","bottom":"0"}}}} /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"align":"full","className":"is-style-default","style":{"spacing":{"margin":{"top":"0","bottom":"0"},"padding":{"right":"0","left":"0"},"blockGap":"0"}},"backgroundColor":"accent-4","layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group alignfull is-style-default has-accent-4-background-color has-background" style="margin-top:0;margin-bottom:0;padding-right:0;padding-left:0"><!-- wp:separator {"className":"is-style-wide","style":{"spacing":{"margin":{"top":"var:preset|spacing|20","bottom":"var:preset|spacing|20"}}},"backgroundColor":"accent-5"} -->
|
||||
<hr class="wp-block-separator has-text-color has-accent-5-color has-alpha-channel-opacity has-accent-5-background-color has-background is-style-wide" style="margin-top:var(--wp--preset--spacing--20);margin-bottom:var(--wp--preset--spacing--20)"/>
|
||||
<!-- /wp:separator --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
<!-- /wp:post-template -->
|
||||
|
||||
<!-- wp:query-pagination {"paginationArrow":"arrow","fontSize":"medium","layout":{"type":"flex","justifyContent":"space-between"}} -->
|
||||
<!-- wp:query-pagination-previous {"label":""} /-->
|
||||
|
||||
<!-- wp:query-pagination-next {"label":""} /-->
|
||||
<!-- /wp:query-pagination --></div>
|
||||
<!-- /wp:query --></div>
|
||||
<!-- /wp:group --></details>
|
||||
<!-- /wp:details --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"width":"20%","backgroundColor":"accent-4"} -->
|
||||
<div class="wp-block-column has-accent-4-background-color has-background" style="flex-basis:20%"><!-- wp:group {"style":{"spacing":{"padding":{"right":"0","left":"0","top":"0","bottom":"var:preset|spacing|20"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="padding-top:0;padding-right:0;padding-bottom:var(--wp--preset--spacing--20);padding-left:0"><!-- wp:group {"align":"full","layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group alignfull"><!-- wp:image {"lightbox":{"enabled":false},"id":125,"sizeSlug":"full","linkDestination":"custom","align":"full"} -->
|
||||
<figure class="wp-block-image alignfull size-full"><a href="/"><img src="http://localhost:8080/wp-content/uploads/2026/03/imcbannerlogo.gif" alt="" class="wp-image-125"/></a></figure>
|
||||
<!-- /wp:image -->
|
||||
|
||||
<!-- wp:image {"lightbox":{"enabled":false},"id":124,"sizeSlug":"full","linkDestination":"custom","align":"full"} -->
|
||||
<figure class="wp-block-image alignfull size-full"><a href="https://indymedia.org"><img src="http://localhost:8080/wp-content/uploads/2026/03/imclogo2.gif" alt="" class="wp-image-124"/></a></figure>
|
||||
<!-- /wp:image --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"right":"var:preset|spacing|20","left":"var:preset|spacing|20"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="padding-right:var(--wp--preset--spacing--20);padding-left:var(--wp--preset--spacing--20)"><!-- wp:paragraph {"fontSize":"small"} -->
|
||||
<p class="has-small-font-size"><small>Indymedia is a collective of independent media organizations and hundreds of journalists offering grassroots, non-corporate coverage. Indymedia is a democratic media outlet for the creation of radical, accurate, and passionate tellings of truth.</small></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:group {"align":"full","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group alignfull"><!-- wp:details {"showContent":true,"fontSize":"small"} -->
|
||||
<details class="wp-block-details has-small-font-size" open><summary><strong>PARTICIPATE</strong></summary><!-- wp:paragraph {"style":{"spacing":{"padding":{"top":"2px","bottom":"2px"}}},"fontSize":"small"} -->
|
||||
<p class="has-small-font-size" style="padding-top:2px;padding-bottom:2px"><a href="https://indymedia.pt/publicar/" data-type="page" data-id="88"></a><a href="https://web.archive.org/web/20161020124538/https://publish.indymedia.org/earth/servlet/OpenMir?do=opensession&sessiontype=content">post your news</a> <br>instantly upload your audio, video, photo or text directly from your browser</p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"spacing":{"padding":{"top":"2px","bottom":"2px"}}},"fontSize":"small"} -->
|
||||
<p class="has-small-font-size" style="padding-top:2px;padding-bottom:2px"><a href="https://radio.indymedia.org">radio.indymedia.org</a> (<a href="https://archive.org/details/@r_dio_paralelo_porto">arquivo</a>)<br><a href="https://indymedia.pt/about/" data-type="page" data-id="21">about</a><br><a href="https://indymedia.pt/contact/" data-type="page" data-id="228713">contact</a><br><a href="https://indymedia.pt/rss/" data-type="page" data-id="226885">RSS</a><br><a href="https://indymedia.pt/links/" data-type="page" data-id="7366">links</a><br>wiki<br><a href="https://unite.openworlds.info/Open-Media-Network/Wordpress">code</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p>IndyMedia Network - IMC's</p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"margin":{"top":"var:preset|spacing|20","bottom":"var:preset|spacing|20"},"blockGap":"0"}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="margin-top:var(--wp--preset--spacing--20);margin-bottom:var(--wp--preset--spacing--20)"><!-- wp:paragraph -->
|
||||
<p><a href="http://indymedia.org/" target="_blank" rel="noreferrer noopener">indymedia.org</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="http://radio.indymedia.org/" target="_blank" rel="noreferrer noopener">radio.indymedia.org</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://argentina.indymedia.org/" target="_blank" rel="noreferrer noopener">Argentina</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://athens.indymedia.org/" target="_blank" rel="noreferrer noopener">Athens</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="http://barcelona.indymedia.org/" target="_blank" rel="noreferrer noopener">Barcelona</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://bxl.indymedia.org/?lang=fr">Belgium</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://midiaindependente.org/" target="_blank" rel="noreferrer noopener">Brasil</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://chicago.indymedia.org/" target="_blank" rel="noreferrer noopener">Chicago</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://ecuadorindymedia.org/" target="_blank" rel="noreferrer noopener">Ecuador </a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://de.indymedia.org/" target="_blank" rel="noreferrer noopener">Germany</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://cmiguate.org/" target="_blank" rel="noreferrer noopener">Guatemala</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="http://www.indymedia.ie/" target="_blank" rel="noreferrer noopener">Ireland</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://archive.autistici.org/ai/20210701082026/https://italy.indymedia.org/index.php" target="_blank" rel="noreferrer noopener">Italy</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://lille.indymedia.org/?lang=fr" target="_blank" rel="noreferrer noopener">Lille</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://la.indymedia.org/" target="_blank" rel="noreferrer noopener">Los Angeles</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="http://mexico.indymedia.org/" target="_blank" rel="noreferrer noopener">México</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://nantes.indymedia.org/" target="_blank" rel="noreferrer noopener">Nantes</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://indymedia.nl/" target="_blank" rel="noreferrer noopener">Netherlands</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://podcasts.apple.com/us/podcast/perth-indymedia/id1244713881" target="_blank" rel="noreferrer noopener">Perth</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://indymedia.pt/">Portugal</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://www.indybay.org/" target="_blank" rel="noreferrer noopener">San Francisco</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://www.indybay.org/santa-cruz/">Santa Cruz</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://www.ucimc.org/" target="_blank" rel="noreferrer noopener">Urbana Champain</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://indymedia-venezuela.contrapoder.org/?lang=es" target="_blank" rel="noreferrer noopener">Venezuela</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://dcindymedia.org/">Washington DC</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://www.centrodemedioslibres.org/" target="_blank" rel="noreferrer noopener">Centro de Medios Libres</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://reseaumutu.info/" target="_blank" rel="noreferrer noopener">Reseau Mutu</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://www.anarkismo.net/">Anarkismo.net</a></p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:image {"id":17,"sizeSlug":"full","linkDestination":"none"} -->
|
||||
<figure class="wp-block-image size-full"><img src="http://localhost:8080/wp-content/uploads/2026/03/70E14994-6BDF-4C4A-A31F-E49FC8EFB9D5.jpg" alt="" class="wp-image-17"/></figure>
|
||||
<!-- /wp:image -->
|
||||
|
||||
<!-- wp:details -->
|
||||
<details class="wp-block-details"><summary>RADIO</summary><!-- wp:paragraph {"placeholder":"Type / to add a hidden block"} -->
|
||||
<p></p>
|
||||
<!-- /wp:paragraph --></details>
|
||||
<!-- /wp:details -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><strong><a href="https://www.radio4all.net/">Radio 4 All</a></strong></p>
|
||||
<!-- /wp:paragraph --></details>
|
||||
<!-- /wp:details -->
|
||||
|
||||
<!-- wp:details -->
|
||||
<details class="wp-block-details"><summary><strong>NEWSWIRE</strong></summary><!-- wp:query {"queryId":2,"query":{"perPage":20,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":false,"taxQuery":null,"parents":[],"format":[]},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-query"><!-- wp:post-template {"style":{"elements":{"link":{"color":{"text":"var:preset|color|base"}}},"spacing":{"blockGap":"0"}},"fontSize":"medium","layout":{"type":"default","columnCount":null,"minimumColumnWidth":"12rem"}} -->
|
||||
<!-- wp:group {"align":"full","style":{"spacing":{"blockGap":"0","padding":{"top":"var:preset|spacing|20","bottom":"var:preset|spacing|20"}}},"fontSize":"medium","layout":{"type":"flex","orientation":"vertical"}} -->
|
||||
<div class="wp-block-group alignfull has-medium-font-size" style="padding-top:var(--wp--preset--spacing--20);padding-bottom:var(--wp--preset--spacing--20)"><!-- wp:post-title {"level":1,"isLink":true,"linkTarget":"_blank","style":{"layout":{"selfStretch":"fit","flexSize":null},"typography":{"fontStyle":"normal","fontWeight":"400","textTransform":"uppercase"},"elements":{"link":{":hover":{"color":{"text":"var:preset|color|accent-1"}},"color":{"text":"var:preset|color|accent-1"}}}},"textColor":"accent-1","fontSize":"small","fontFamily":"inclusive-sans"} /-->
|
||||
|
||||
<!-- wp:post-date {"metadata":{"bindings":{"datetime":{"source":"core/post-data","args":{"field":"date"}}}},"style":{"typography":{"fontSize":"0.8rem"},"elements":{"link":{"color":{"text":"var:preset|color|base"}}}},"textColor":"base"} /-->
|
||||
|
||||
<!-- wp:post-terms {"term":"post_tag","style":{"typography":{"fontSize":"0.7rem"}}} /--></div>
|
||||
<!-- /wp:group -->
|
||||
<!-- /wp:post-template -->
|
||||
|
||||
<!-- wp:query-pagination {"paginationArrow":"arrow","showLabel":false,"fontSize":"large","layout":{"type":"flex","justifyContent":"space-between"}} -->
|
||||
<!-- wp:query-pagination-previous /-->
|
||||
|
||||
<!-- wp:query-pagination-next /-->
|
||||
<!-- /wp:query-pagination --></div>
|
||||
<!-- /wp:query --></details>
|
||||
<!-- /wp:details -->
|
||||
|
||||
<!-- wp:details -->
|
||||
<details class="wp-block-details"><summary><strong>RADIO</strong></summary><!-- wp:paragraph -->
|
||||
<p><a href="https://radio.indymedia.pt"><strong>radio.indymedia.org</strong></a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:rss {"feedURL":"https://radio.indymedia.org/rss.xml","displayAuthor":true,"displayDate":true} /-->
|
||||
|
||||
<!-- wp:paragraph {"placeholder":"Type / to add a hidden block"} -->
|
||||
<p><a href="https://www.radio4all.net"><strong>Radio 4 All</strong></a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:rss {"feedURL":"https://www.radio4all.net/podcast.xml"} /--></details>
|
||||
<!-- /wp:details --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer"} /-->
|
||||
|
|
@ -0,0 +1,209 @@
|
|||
<!-- wp:columns {"align":"full","style":{"spacing":{"blockGap":{"left":"var:preset|spacing|20"}}}} -->
|
||||
<div class="wp-block-columns alignfull"><!-- wp:column {"width":"80%"} -->
|
||||
<div class="wp-block-column" style="flex-basis:80%"><!-- wp:template-part {"slug":"header"} /-->
|
||||
|
||||
<!-- wp:group {"align":"full","style":{"color":{"background":"#2f2f2f"},"spacing":{"padding":{"right":"0","left":"0"},"margin":{"top":"10px","bottom":"10px"},"blockGap":"5px"}},"layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group alignfull has-background" style="background-color:#2f2f2f;margin-top:10px;margin-bottom:10px;padding-right:0;padding-left:0"><!-- wp:post-title {"textAlign":"left","level":5,"align":"wide","style":{"spacing":{"padding":{"right":"var:preset|spacing|30","left":"var:preset|spacing|30","top":"var:preset|spacing|20","bottom":"var:preset|spacing|20"}},"border":{"top":{"color":"var:preset|color|accent-6","width":"1px"},"right":{"width":"0px","style":"none"},"bottom":{"width":"0px","style":"none"},"left":{"width":"0px","style":"none"}},"color":{"background":"#480000"}},"fontSize":"medium"} /--></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"tagName":"main","style":{"spacing":{"margin":{"top":"var:preset|spacing|30","bottom":"var:preset|spacing|30"}}},"layout":{"type":"constrained"}} -->
|
||||
<main class="wp-block-group" style="margin-top:var(--wp--preset--spacing--30);margin-bottom:var(--wp--preset--spacing--30)"><!-- wp:search {"label":"\u003cbr\u003ePesquisar","showLabel":false,"width":645,"widthUnit":"px","buttonText":"Pesquisar","buttonPosition":"button-inside","buttonUseIcon":true} /-->
|
||||
|
||||
<!-- wp:query-title {"type":"archive","level":5} /-->
|
||||
|
||||
<!-- wp:query {"queryId":10,"query":{"perPage":10,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":true}} -->
|
||||
<div class="wp-block-query"><!-- wp:post-template -->
|
||||
<!-- wp:group {"align":"full","style":{"spacing":{"blockGap":"0"}},"layout":{"type":"flex","orientation":"vertical"}} -->
|
||||
<div class="wp-block-group alignfull"><!-- wp:group {"align":"full","style":{"spacing":{"blockGap":"0","padding":{"top":"var:preset|spacing|20","bottom":"var:preset|spacing|20"}}},"fontSize":"medium","layout":{"type":"flex","orientation":"vertical"}} -->
|
||||
<div class="wp-block-group alignfull has-medium-font-size" style="padding-top:var(--wp--preset--spacing--20);padding-bottom:var(--wp--preset--spacing--20)"><!-- wp:post-title {"level":1,"isLink":true,"linkTarget":"_blank","style":{"layout":{"selfStretch":"fit","flexSize":null},"typography":{"fontStyle":"normal","fontWeight":"400","textTransform":"uppercase"},"elements":{"link":{":hover":{"color":{"text":"var:preset|color|accent-1"}},"color":{"text":"var:preset|color|accent-1"}}}},"textColor":"accent-1","fontSize":"small","fontFamily":"inclusive-sans"} /-->
|
||||
|
||||
<!-- wp:post-excerpt {"showMoreOnNewLine":false,"excerptLength":10,"fontSize":"small"} /-->
|
||||
|
||||
<!-- wp:post-date {"metadata":{"bindings":{"datetime":{"source":"core/post-data","args":{"field":"date"}}}},"style":{"typography":{"fontSize":"0.8rem"},"elements":{"link":{"color":{"text":"var:preset|color|base"}}}},"textColor":"base"} /-->
|
||||
|
||||
<!-- wp:post-terms {"term":"post_tag","style":{"typography":{"fontSize":"0.7rem"}}} /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
<!-- /wp:post-template --></div>
|
||||
<!-- /wp:query --></main>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"width":"20%"} -->
|
||||
<div class="wp-block-column" style="flex-basis:20%"><!-- wp:group {"style":{"spacing":{"padding":{"right":"0","left":"0","top":"0","bottom":"var:preset|spacing|20"}}},"backgroundColor":"accent-4","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group has-accent-4-background-color has-background" style="padding-top:0;padding-right:0;padding-bottom:var(--wp--preset--spacing--20);padding-left:0"><!-- wp:image {"id":14,"sizeSlug":"full","linkDestination":"none","align":"full"} -->
|
||||
<figure class="wp-block-image alignfull size-full"><img src="http://localhost:8080/wp-content/uploads/2026/03/imcbannerlogo.gif" alt="" class="wp-image-14"/></figure>
|
||||
<!-- /wp:image -->
|
||||
|
||||
<!-- wp:group {"align":"full","layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group alignfull"><!-- wp:group {"style":{"spacing":{"padding":{"right":"var:preset|spacing|20","left":"var:preset|spacing|20"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="padding-right:var(--wp--preset--spacing--20);padding-left:var(--wp--preset--spacing--20)"><!-- wp:image {"id":16,"sizeSlug":"full","linkDestination":"none","align":"wide","style":{"spacing":{"margin":{"top":"0","bottom":"0","left":"0","right":"0"}}}} -->
|
||||
<figure class="wp-block-image alignwide size-full" style="margin-top:0;margin-right:0;margin-bottom:0;margin-left:0"><img src="http://localhost:8080/wp-content/uploads/2026/03/imclogo2-2.gif" alt="" class="wp-image-16"/></figure>
|
||||
<!-- /wp:image --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"right":"var:preset|spacing|20","left":"var:preset|spacing|20"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="padding-right:var(--wp--preset--spacing--20);padding-left:var(--wp--preset--spacing--20)"><!-- wp:paragraph {"fontSize":"small"} -->
|
||||
<p class="has-small-font-size"><small>Indymedia is a collective of independent media organizations and hundreds of journalists offering grassroots, non-corporate coverage. Indymedia is a democratic media outlet for the creation of radical, accurate, and passionate tellings of truth.</small></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:details {"showContent":true,"fontSize":"small"} -->
|
||||
<details class="wp-block-details has-small-font-size" open><summary><strong>participate</strong></summary><!-- wp:paragraph {"style":{"spacing":{"padding":{"top":"2px","bottom":"2px"}}},"fontSize":"small"} -->
|
||||
<p class="has-small-font-size" style="padding-top:2px;padding-bottom:2px"><a href="https://indymedia.pt/publicar/" data-type="page" data-id="88"></a><a href="https://web.archive.org/web/20161020124538/https://publish.indymedia.org/earth/servlet/OpenMir?do=opensession&sessiontype=content">post your news</a> <br>instantly upload your audio, video, photo or text directly from your browser</p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"spacing":{"padding":{"top":"2px","bottom":"2px"}}},"fontSize":"small"} -->
|
||||
<p class="has-small-font-size" style="padding-top:2px;padding-bottom:2px"><a href="https://radio.indymedia.org">radio.indymedia.org</a> (<a href="https://archive.org/details/@r_dio_paralelo_porto">arquivo</a>)<br><a href="https://indymedia.pt/about/" data-type="page" data-id="21">about</a><br><a href="https://indymedia.pt/contact/" data-type="page" data-id="228713">contact</a><br><a href="https://indymedia.pt/rss/" data-type="page" data-id="226885">RSS</a><br><a href="https://indymedia.pt/links/" data-type="page" data-id="7366">links</a><br>wiki<br><a href="https://unite.openworlds.info/Open-Media-Network/Wordpress">code</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p>IndyMedia Network - IMC's</p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"margin":{"top":"var:preset|spacing|20","bottom":"var:preset|spacing|20"},"blockGap":"0"}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="margin-top:var(--wp--preset--spacing--20);margin-bottom:var(--wp--preset--spacing--20)"><!-- wp:paragraph -->
|
||||
<p><a href="http://indymedia.org/" target="_blank" rel="noreferrer noopener">indymedia.org</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="http://radio.indymedia.org/" target="_blank" rel="noreferrer noopener">radio.indymedia.org</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://argentina.indymedia.org/" target="_blank" rel="noreferrer noopener">Argentina</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://athens.indymedia.org/" target="_blank" rel="noreferrer noopener">Athens</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="http://barcelona.indymedia.org/" target="_blank" rel="noreferrer noopener">Barcelona</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://bxl.indymedia.org/?lang=fr">Belgium</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://midiaindependente.org/" target="_blank" rel="noreferrer noopener">Brasil</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://chicago.indymedia.org/" target="_blank" rel="noreferrer noopener">Chicago</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://ecuadorindymedia.org/" target="_blank" rel="noreferrer noopener">Ecuador </a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://de.indymedia.org/" target="_blank" rel="noreferrer noopener">Germany</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://cmiguate.org/" target="_blank" rel="noreferrer noopener">Guatemala</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="http://www.indymedia.ie/" target="_blank" rel="noreferrer noopener">Ireland</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://archive.autistici.org/ai/20210701082026/https://italy.indymedia.org/index.php" target="_blank" rel="noreferrer noopener">Italy</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://lille.indymedia.org/?lang=fr" target="_blank" rel="noreferrer noopener">Lille</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://la.indymedia.org/" target="_blank" rel="noreferrer noopener">Los Angeles</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="http://mexico.indymedia.org/" target="_blank" rel="noreferrer noopener">México</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://nantes.indymedia.org/" target="_blank" rel="noreferrer noopener">Nantes</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://indymedia.nl/" target="_blank" rel="noreferrer noopener">Netherlands</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://podcasts.apple.com/us/podcast/perth-indymedia/id1244713881" target="_blank" rel="noreferrer noopener">Perth</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://indymedia.pt/">Portugal</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://www.indybay.org/" target="_blank" rel="noreferrer noopener">San Francisco</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://www.indybay.org/santa-cruz/">Santa Cruz</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://www.ucimc.org/" target="_blank" rel="noreferrer noopener">Urbana Champain</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://indymedia-venezuela.contrapoder.org/?lang=es" target="_blank" rel="noreferrer noopener">Venezuela</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://dcindymedia.org/">Washington DC</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://www.centrodemedioslibres.org/" target="_blank" rel="noreferrer noopener">Centro de Medios Libres</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://reseaumutu.info/" target="_blank" rel="noreferrer noopener">Reseau Mutu</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://www.anarkismo.net/">Anarkismo.net</a></p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:image {"id":17,"sizeSlug":"full","linkDestination":"none"} -->
|
||||
<figure class="wp-block-image size-full"><img src="http://localhost:8080/wp-content/uploads/2026/03/70E14994-6BDF-4C4A-A31F-E49FC8EFB9D5.jpg" alt="" class="wp-image-17"/></figure>
|
||||
<!-- /wp:image --></details>
|
||||
<!-- /wp:details -->
|
||||
|
||||
<!-- wp:separator {"align":"full","backgroundColor":"accent-4"} -->
|
||||
<hr class="wp-block-separator alignfull has-text-color has-accent-4-color has-alpha-channel-opacity has-accent-4-background-color has-background"/>
|
||||
<!-- /wp:separator -->
|
||||
|
||||
<!-- wp:group {"align":"full","style":{"border":{"width":"0px","style":"none"},"spacing":{"padding":{"right":"var:preset|spacing|20","left":"var:preset|spacing|20"},"margin":{"top":"0","bottom":"0"},"blockGap":"0"}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group alignfull" style="border-style:none;border-width:0px;margin-top:0;margin-bottom:0;padding-right:var(--wp--preset--spacing--20);padding-left:var(--wp--preset--spacing--20)"><!-- wp:group {"align":"wide","layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"center"}} -->
|
||||
<div class="wp-block-group alignwide"><!-- wp:group {"style":{"spacing":{"padding":{"top":"0","bottom":"0","left":"0","right":"0"}}},"layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group" style="padding-top:0;padding-right:0;padding-bottom:0;padding-left:0"><!-- wp:group {"style":{"spacing":{"padding":{"right":"0","left":"0"}}},"layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"center"}} -->
|
||||
<div class="wp-block-group" style="padding-right:0;padding-left:0"><!-- wp:heading {"style":{"typography":{"textTransform":"lowercase","textAlign":"left"},"elements":{"link":{"color":{"text":"var:preset|color|base"}}}},"textColor":"base","fontSize":"small"} -->
|
||||
<h2 class="wp-block-heading has-text-align-left has-base-color has-text-color has-link-color has-small-font-size" style="text-transform:lowercase"><a href="https://radio.indymedia.pt"><strong>radio.indymedia.org</strong></a></h2>
|
||||
<!-- /wp:heading --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:rss {"feedURL":"https://radio.indymedia.org/rss.xml"} /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p></p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer"} /-->
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
<!-- wp:template-part {"slug":"header"} /-->
|
||||
|
||||
<!-- wp:group {"tagName":"main","style":{"spacing":{"margin":{"top":"0"}}}} -->
|
||||
<main class="wp-block-group" style="margin-top:0"><!-- wp:post-content {"lock":{"move":false,"remove":true},"metadata":{"ignoredHookedBlocks":["activitypub/reactions"]},"layout":{"type":"constrained"}} /--></main>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer"} /-->
|
||||
|
|
@ -0,0 +1,191 @@
|
|||
<!-- wp:group {"tagName":"main","style":{"spacing":{"margin":{"top":"0"}}},"layout":{"type":"constrained"}} -->
|
||||
<main class="wp-block-group" style="margin-top:0"><!-- wp:columns {"align":"full","style":{"spacing":{"blockGap":{"left":"var:preset|spacing|20"}}}} -->
|
||||
<div class="wp-block-columns alignfull"><!-- wp:column {"width":"80%"} -->
|
||||
<div class="wp-block-column" style="flex-basis:80%"><!-- wp:template-part {"slug":"header"} /-->
|
||||
|
||||
<!-- wp:group {"align":"full","style":{"color":{"background":"#2f2f2f"},"spacing":{"padding":{"right":"0","left":"0"},"margin":{"top":"10px","bottom":"10px"},"blockGap":"5px"}},"layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group alignfull has-background" style="background-color:#2f2f2f;margin-top:10px;margin-bottom:10px;padding-right:0;padding-left:0"><!-- wp:post-title {"textAlign":"left","level":5,"align":"wide","style":{"spacing":{"padding":{"right":"var:preset|spacing|30","left":"var:preset|spacing|30","top":"var:preset|spacing|20","bottom":"var:preset|spacing|20"}},"border":{"top":{"color":"var:preset|color|accent-6","width":"1px"},"right":{"width":"0px","style":"none"},"bottom":{"width":"0px","style":"none"},"left":{"width":"0px","style":"none"}},"color":{"background":"#480000"}},"fontSize":"medium"} /--></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:post-content {"metadata":{"ignoredHookedBlocks":["activitypub/reactions"]},"align":"wide","style":{"spacing":{"blockGap":"var:preset|spacing|30","margin":{"right":"var:preset|spacing|20","left":"var:preset|spacing|20"}}},"fontSize":"medium","layout":{"type":"default"}} /--></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"width":"20%"} -->
|
||||
<div class="wp-block-column" style="flex-basis:20%"><!-- wp:group {"style":{"spacing":{"padding":{"right":"0","left":"0","top":"0","bottom":"var:preset|spacing|20"}}},"backgroundColor":"accent-4","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group has-accent-4-background-color has-background" style="padding-top:0;padding-right:0;padding-bottom:var(--wp--preset--spacing--20);padding-left:0"><!-- wp:image {"id":14,"sizeSlug":"full","linkDestination":"none","align":"full"} -->
|
||||
<figure class="wp-block-image alignfull size-full"><img src="http://localhost:8080/wp-content/uploads/2026/03/imcbannerlogo.gif" alt="" class="wp-image-14"/></figure>
|
||||
<!-- /wp:image -->
|
||||
|
||||
<!-- wp:group {"align":"full","layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group alignfull"><!-- wp:group {"style":{"spacing":{"padding":{"right":"var:preset|spacing|20","left":"var:preset|spacing|20"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="padding-right:var(--wp--preset--spacing--20);padding-left:var(--wp--preset--spacing--20)"><!-- wp:image {"id":16,"sizeSlug":"full","linkDestination":"none","align":"wide","style":{"spacing":{"margin":{"top":"0","bottom":"0","left":"0","right":"0"}}}} -->
|
||||
<figure class="wp-block-image alignwide size-full" style="margin-top:0;margin-right:0;margin-bottom:0;margin-left:0"><img src="http://localhost:8080/wp-content/uploads/2026/03/imclogo2-2.gif" alt="" class="wp-image-16"/></figure>
|
||||
<!-- /wp:image --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"right":"var:preset|spacing|20","left":"var:preset|spacing|20"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="padding-right:var(--wp--preset--spacing--20);padding-left:var(--wp--preset--spacing--20)"><!-- wp:paragraph {"fontSize":"small"} -->
|
||||
<p class="has-small-font-size"><small>Indymedia is a collective of independent media organizations and hundreds of journalists offering grassroots, non-corporate coverage. Indymedia is a democratic media outlet for the creation of radical, accurate, and passionate tellings of truth.</small></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:details {"showContent":true,"fontSize":"small"} -->
|
||||
<details class="wp-block-details has-small-font-size" open><summary><strong>participate</strong></summary><!-- wp:paragraph {"style":{"spacing":{"padding":{"top":"2px","bottom":"2px"}}},"fontSize":"small"} -->
|
||||
<p class="has-small-font-size" style="padding-top:2px;padding-bottom:2px"><a href="https://indymedia.pt/publicar/" data-type="page" data-id="88"></a><a href="https://web.archive.org/web/20161020124538/https://publish.indymedia.org/earth/servlet/OpenMir?do=opensession&sessiontype=content">post your news</a> <br>instantly upload your audio, video, photo or text directly from your browser</p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"spacing":{"padding":{"top":"2px","bottom":"2px"}}},"fontSize":"small"} -->
|
||||
<p class="has-small-font-size" style="padding-top:2px;padding-bottom:2px"><a href="https://radio.indymedia.org">radio.indymedia.org</a> (<a href="https://archive.org/details/@r_dio_paralelo_porto">arquivo</a>)<br><a href="https://indymedia.pt/about/" data-type="page" data-id="21">about</a><br><a href="https://indymedia.pt/contact/" data-type="page" data-id="228713">contact</a><br><a href="https://indymedia.pt/rss/" data-type="page" data-id="226885">RSS</a><br><a href="https://indymedia.pt/links/" data-type="page" data-id="7366">links</a><br>wiki<br><a href="https://unite.openworlds.info/Open-Media-Network/Wordpress">code</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p>IndyMedia Network - IMC's</p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"margin":{"top":"var:preset|spacing|20","bottom":"var:preset|spacing|20"},"blockGap":"0"}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="margin-top:var(--wp--preset--spacing--20);margin-bottom:var(--wp--preset--spacing--20)"><!-- wp:paragraph -->
|
||||
<p><a href="http://indymedia.org/" target="_blank" rel="noreferrer noopener">indymedia.org</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="http://radio.indymedia.org/" target="_blank" rel="noreferrer noopener">radio.indymedia.org</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://argentina.indymedia.org/" target="_blank" rel="noreferrer noopener">Argentina</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://athens.indymedia.org/" target="_blank" rel="noreferrer noopener">Athens</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="http://barcelona.indymedia.org/" target="_blank" rel="noreferrer noopener">Barcelona</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://bxl.indymedia.org/?lang=fr">Belgium</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://midiaindependente.org/" target="_blank" rel="noreferrer noopener">Brasil</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://chicago.indymedia.org/" target="_blank" rel="noreferrer noopener">Chicago</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://ecuadorindymedia.org/" target="_blank" rel="noreferrer noopener">Ecuador </a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://de.indymedia.org/" target="_blank" rel="noreferrer noopener">Germany</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://cmiguate.org/" target="_blank" rel="noreferrer noopener">Guatemala</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="http://www.indymedia.ie/" target="_blank" rel="noreferrer noopener">Ireland</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://archive.autistici.org/ai/20210701082026/https://italy.indymedia.org/index.php" target="_blank" rel="noreferrer noopener">Italy</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://lille.indymedia.org/?lang=fr" target="_blank" rel="noreferrer noopener">Lille</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://la.indymedia.org/" target="_blank" rel="noreferrer noopener">Los Angeles</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="http://mexico.indymedia.org/" target="_blank" rel="noreferrer noopener">México</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://nantes.indymedia.org/" target="_blank" rel="noreferrer noopener">Nantes</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://indymedia.nl/" target="_blank" rel="noreferrer noopener">Netherlands</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://podcasts.apple.com/us/podcast/perth-indymedia/id1244713881" target="_blank" rel="noreferrer noopener">Perth</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://indymedia.pt/">Portugal</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://www.indybay.org/" target="_blank" rel="noreferrer noopener">San Francisco</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://www.indybay.org/santa-cruz/">Santa Cruz</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://www.ucimc.org/" target="_blank" rel="noreferrer noopener">Urbana Champain</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://indymedia-venezuela.contrapoder.org/?lang=es" target="_blank" rel="noreferrer noopener">Venezuela</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://dcindymedia.org/">Washington DC</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://www.centrodemedioslibres.org/" target="_blank" rel="noreferrer noopener">Centro de Medios Libres</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://reseaumutu.info/" target="_blank" rel="noreferrer noopener">Reseau Mutu</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://www.anarkismo.net/">Anarkismo.net</a></p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:image {"id":17,"sizeSlug":"full","linkDestination":"none"} -->
|
||||
<figure class="wp-block-image size-full"><img src="http://localhost:8080/wp-content/uploads/2026/03/70E14994-6BDF-4C4A-A31F-E49FC8EFB9D5.jpg" alt="" class="wp-image-17"/></figure>
|
||||
<!-- /wp:image --></details>
|
||||
<!-- /wp:details -->
|
||||
|
||||
<!-- wp:separator {"align":"full","backgroundColor":"accent-4"} -->
|
||||
<hr class="wp-block-separator alignfull has-text-color has-accent-4-color has-alpha-channel-opacity has-accent-4-background-color has-background"/>
|
||||
<!-- /wp:separator -->
|
||||
|
||||
<!-- wp:group {"align":"full","style":{"border":{"width":"0px","style":"none"},"spacing":{"padding":{"right":"var:preset|spacing|20","left":"var:preset|spacing|20"},"margin":{"top":"0","bottom":"0"},"blockGap":"0"}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group alignfull" style="border-style:none;border-width:0px;margin-top:0;margin-bottom:0;padding-right:var(--wp--preset--spacing--20);padding-left:var(--wp--preset--spacing--20)"><!-- wp:group {"align":"wide","layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"center"}} -->
|
||||
<div class="wp-block-group alignwide"><!-- wp:group {"style":{"spacing":{"padding":{"top":"0","bottom":"0","left":"0","right":"0"}}},"layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group" style="padding-top:0;padding-right:0;padding-bottom:0;padding-left:0"><!-- wp:group {"style":{"spacing":{"padding":{"right":"0","left":"0"}}},"layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"center"}} -->
|
||||
<div class="wp-block-group" style="padding-right:0;padding-left:0"><!-- wp:heading {"style":{"typography":{"textTransform":"lowercase","textAlign":"left"},"elements":{"link":{"color":{"text":"var:preset|color|base"}}}},"textColor":"base","fontSize":"small"} -->
|
||||
<h2 class="wp-block-heading has-text-align-left has-base-color has-text-color has-link-color has-small-font-size" style="text-transform:lowercase"><a href="https://radio.indymedia.pt"><strong>radio.indymedia.org</strong></a></h2>
|
||||
<!-- /wp:heading --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:rss {"feedURL":"https://radio.indymedia.org/rss.xml"} /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p></p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns --></main>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer"} /-->
|
||||
|
|
@ -0,0 +1,31 @@
|
|||
<!-- wp:template-part {"slug":"header","area":"header"} /-->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"right":"0","left":"0"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="padding-right:0;padding-left:0"><!-- wp:group {"align":"full","layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group alignfull"><!-- wp:group {"align":"full","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group alignfull"><!-- wp:group {"align":"full","style":{"spacing":{"padding":{"right":"10px","left":"10px"}}},"layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group alignfull" style="padding-right:10px;padding-left:10px"><!-- wp:group {"align":"wide","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group alignwide"><!-- wp:post-title {"level":5,"isLink":true,"align":"wide","fontSize":"medium"} /-->
|
||||
|
||||
<!-- wp:group {"align":"wide","layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group alignwide"><!-- wp:paragraph {"fontSize":"medium"} -->
|
||||
<p class="has-medium-font-size">Nunca publicaste antes? Lê a <a href="https://indymedia.pt/guia-de-publicacao" data-type="page" data-id="214576">guia de publicação</a>.</p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"fontSize":"medium"} -->
|
||||
<p class="has-medium-font-size">Publica eventos no calendário: <a href="https://eventos.coletivos.org" data-type="link" data-id="https://eventos.coletivos.org">eventos.coletivos.org</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"fontSize":"medium"} -->
|
||||
<p class="has-medium-font-size">Ver: <a href="https://indymedia.pt/about">Política de privacidade e termos de uso.</a></p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"align":"wide","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group alignwide"><!-- wp:post-content {"metadata":{"ignoredHookedBlocks":["activitypub/reactions"]},"align":"wide","style":{"spacing":{"blockGap":"var:preset|spacing|30"}},"layout":{"type":"default"}} /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
|
|
@ -0,0 +1,209 @@
|
|||
<!-- wp:columns {"align":"full","style":{"spacing":{"blockGap":{"left":"var:preset|spacing|20"}}}} -->
|
||||
<div class="wp-block-columns alignfull"><!-- wp:column {"width":"80%"} -->
|
||||
<div class="wp-block-column" style="flex-basis:80%"><!-- wp:template-part {"slug":"header"} /-->
|
||||
|
||||
<!-- wp:group {"align":"full","style":{"color":{"background":"#2f2f2f"},"spacing":{"padding":{"right":"0","left":"0"},"margin":{"top":"10px","bottom":"10px"},"blockGap":"5px"}},"layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group alignfull has-background" style="background-color:#2f2f2f;margin-top:10px;margin-bottom:10px;padding-right:0;padding-left:0"><!-- wp:post-title {"textAlign":"left","level":5,"align":"wide","style":{"spacing":{"padding":{"right":"var:preset|spacing|30","left":"var:preset|spacing|30","top":"var:preset|spacing|20","bottom":"var:preset|spacing|20"}},"border":{"top":{"color":"var:preset|color|accent-6","width":"1px"},"right":{"width":"0px","style":"none"},"bottom":{"width":"0px","style":"none"},"left":{"width":"0px","style":"none"}},"color":{"background":"#480000"}},"fontSize":"medium"} /--></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"tagName":"main","style":{"spacing":{"margin":{"top":"var:preset|spacing|30","bottom":"var:preset|spacing|30"}}},"layout":{"type":"constrained"}} -->
|
||||
<main class="wp-block-group" style="margin-top:var(--wp--preset--spacing--30);margin-bottom:var(--wp--preset--spacing--30)"><!-- wp:search {"label":"\u003cbr\u003ePesquisar","showLabel":false,"width":220,"widthUnit":"px","buttonText":"Pesquisar","buttonPosition":"button-inside","buttonUseIcon":true} /-->
|
||||
|
||||
<!-- wp:query-title {"type":"archive","level":5} /-->
|
||||
|
||||
<!-- wp:query {"queryId":10,"query":{"perPage":10,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":true}} -->
|
||||
<div class="wp-block-query"><!-- wp:post-template -->
|
||||
<!-- wp:group {"align":"full","style":{"spacing":{"blockGap":"0"}},"layout":{"type":"flex","orientation":"vertical"}} -->
|
||||
<div class="wp-block-group alignfull"><!-- wp:group {"align":"full","style":{"spacing":{"blockGap":"0","padding":{"top":"var:preset|spacing|20","bottom":"var:preset|spacing|20"}}},"fontSize":"medium","layout":{"type":"flex","orientation":"vertical"}} -->
|
||||
<div class="wp-block-group alignfull has-medium-font-size" style="padding-top:var(--wp--preset--spacing--20);padding-bottom:var(--wp--preset--spacing--20)"><!-- wp:post-title {"level":1,"isLink":true,"linkTarget":"_blank","style":{"layout":{"selfStretch":"fit","flexSize":null},"typography":{"fontStyle":"normal","fontWeight":"400","textTransform":"uppercase"},"elements":{"link":{":hover":{"color":{"text":"var:preset|color|accent-1"}},"color":{"text":"var:preset|color|accent-1"}}}},"textColor":"accent-1","fontSize":"small","fontFamily":"inclusive-sans"} /-->
|
||||
|
||||
<!-- wp:post-excerpt {"showMoreOnNewLine":false,"excerptLength":10,"fontSize":"small"} /-->
|
||||
|
||||
<!-- wp:post-date {"metadata":{"bindings":{"datetime":{"source":"core/post-data","args":{"field":"date"}}}},"style":{"typography":{"fontSize":"0.8rem"},"elements":{"link":{"color":{"text":"var:preset|color|base"}}}},"textColor":"base"} /-->
|
||||
|
||||
<!-- wp:post-terms {"term":"post_tag","style":{"typography":{"fontSize":"0.7rem"}}} /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
<!-- /wp:post-template --></div>
|
||||
<!-- /wp:query --></main>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"width":"20%"} -->
|
||||
<div class="wp-block-column" style="flex-basis:20%"><!-- wp:group {"style":{"spacing":{"padding":{"right":"0","left":"0","top":"0","bottom":"var:preset|spacing|20"}}},"backgroundColor":"accent-4","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group has-accent-4-background-color has-background" style="padding-top:0;padding-right:0;padding-bottom:var(--wp--preset--spacing--20);padding-left:0"><!-- wp:image {"id":14,"sizeSlug":"full","linkDestination":"none","align":"full"} -->
|
||||
<figure class="wp-block-image alignfull size-full"><img src="http://localhost:8080/wp-content/uploads/2026/03/imcbannerlogo.gif" alt="" class="wp-image-14"/></figure>
|
||||
<!-- /wp:image -->
|
||||
|
||||
<!-- wp:group {"align":"full","layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group alignfull"><!-- wp:group {"style":{"spacing":{"padding":{"right":"var:preset|spacing|20","left":"var:preset|spacing|20"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="padding-right:var(--wp--preset--spacing--20);padding-left:var(--wp--preset--spacing--20)"><!-- wp:image {"id":16,"sizeSlug":"full","linkDestination":"none","align":"wide","style":{"spacing":{"margin":{"top":"0","bottom":"0","left":"0","right":"0"}}}} -->
|
||||
<figure class="wp-block-image alignwide size-full" style="margin-top:0;margin-right:0;margin-bottom:0;margin-left:0"><img src="http://localhost:8080/wp-content/uploads/2026/03/imclogo2-2.gif" alt="" class="wp-image-16"/></figure>
|
||||
<!-- /wp:image --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"right":"var:preset|spacing|20","left":"var:preset|spacing|20"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="padding-right:var(--wp--preset--spacing--20);padding-left:var(--wp--preset--spacing--20)"><!-- wp:paragraph {"fontSize":"small"} -->
|
||||
<p class="has-small-font-size"><small>Indymedia is a collective of independent media organizations and hundreds of journalists offering grassroots, non-corporate coverage. Indymedia is a democratic media outlet for the creation of radical, accurate, and passionate tellings of truth.</small></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:details {"showContent":true,"fontSize":"small"} -->
|
||||
<details class="wp-block-details has-small-font-size" open><summary><strong>participate</strong></summary><!-- wp:paragraph {"style":{"spacing":{"padding":{"top":"2px","bottom":"2px"}}},"fontSize":"small"} -->
|
||||
<p class="has-small-font-size" style="padding-top:2px;padding-bottom:2px"><a href="https://indymedia.pt/publicar/" data-type="page" data-id="88"></a><a href="https://web.archive.org/web/20161020124538/https://publish.indymedia.org/earth/servlet/OpenMir?do=opensession&sessiontype=content">post your news</a> <br>instantly upload your audio, video, photo or text directly from your browser</p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"spacing":{"padding":{"top":"2px","bottom":"2px"}}},"fontSize":"small"} -->
|
||||
<p class="has-small-font-size" style="padding-top:2px;padding-bottom:2px"><a href="https://radio.indymedia.org">radio.indymedia.org</a> (<a href="https://archive.org/details/@r_dio_paralelo_porto">arquivo</a>)<br><a href="https://indymedia.pt/about/" data-type="page" data-id="21">about</a><br><a href="https://indymedia.pt/contact/" data-type="page" data-id="228713">contact</a><br><a href="https://indymedia.pt/rss/" data-type="page" data-id="226885">RSS</a><br><a href="https://indymedia.pt/links/" data-type="page" data-id="7366">links</a><br>wiki<br><a href="https://unite.openworlds.info/Open-Media-Network/Wordpress">code</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p>IndyMedia Network - IMC's</p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"margin":{"top":"var:preset|spacing|20","bottom":"var:preset|spacing|20"},"blockGap":"0"}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="margin-top:var(--wp--preset--spacing--20);margin-bottom:var(--wp--preset--spacing--20)"><!-- wp:paragraph -->
|
||||
<p><a href="http://indymedia.org/" target="_blank" rel="noreferrer noopener">indymedia.org</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="http://radio.indymedia.org/" target="_blank" rel="noreferrer noopener">radio.indymedia.org</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://argentina.indymedia.org/" target="_blank" rel="noreferrer noopener">Argentina</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://athens.indymedia.org/" target="_blank" rel="noreferrer noopener">Athens</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="http://barcelona.indymedia.org/" target="_blank" rel="noreferrer noopener">Barcelona</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://bxl.indymedia.org/?lang=fr">Belgium</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://midiaindependente.org/" target="_blank" rel="noreferrer noopener">Brasil</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://chicago.indymedia.org/" target="_blank" rel="noreferrer noopener">Chicago</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://ecuadorindymedia.org/" target="_blank" rel="noreferrer noopener">Ecuador </a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://de.indymedia.org/" target="_blank" rel="noreferrer noopener">Germany</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://cmiguate.org/" target="_blank" rel="noreferrer noopener">Guatemala</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="http://www.indymedia.ie/" target="_blank" rel="noreferrer noopener">Ireland</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://archive.autistici.org/ai/20210701082026/https://italy.indymedia.org/index.php" target="_blank" rel="noreferrer noopener">Italy</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://lille.indymedia.org/?lang=fr" target="_blank" rel="noreferrer noopener">Lille</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://la.indymedia.org/" target="_blank" rel="noreferrer noopener">Los Angeles</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="http://mexico.indymedia.org/" target="_blank" rel="noreferrer noopener">México</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://nantes.indymedia.org/" target="_blank" rel="noreferrer noopener">Nantes</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://indymedia.nl/" target="_blank" rel="noreferrer noopener">Netherlands</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://podcasts.apple.com/us/podcast/perth-indymedia/id1244713881" target="_blank" rel="noreferrer noopener">Perth</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://indymedia.pt/">Portugal</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://www.indybay.org/" target="_blank" rel="noreferrer noopener">San Francisco</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://www.indybay.org/santa-cruz/">Santa Cruz</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://www.ucimc.org/" target="_blank" rel="noreferrer noopener">Urbana Champain</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://indymedia-venezuela.contrapoder.org/?lang=es" target="_blank" rel="noreferrer noopener">Venezuela</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://dcindymedia.org/">Washington DC</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://www.centrodemedioslibres.org/" target="_blank" rel="noreferrer noopener">Centro de Medios Libres</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://reseaumutu.info/" target="_blank" rel="noreferrer noopener">Reseau Mutu</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://www.anarkismo.net/">Anarkismo.net</a></p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:image {"id":17,"sizeSlug":"full","linkDestination":"none"} -->
|
||||
<figure class="wp-block-image size-full"><img src="http://localhost:8080/wp-content/uploads/2026/03/70E14994-6BDF-4C4A-A31F-E49FC8EFB9D5.jpg" alt="" class="wp-image-17"/></figure>
|
||||
<!-- /wp:image --></details>
|
||||
<!-- /wp:details -->
|
||||
|
||||
<!-- wp:separator {"align":"full","backgroundColor":"accent-4"} -->
|
||||
<hr class="wp-block-separator alignfull has-text-color has-accent-4-color has-alpha-channel-opacity has-accent-4-background-color has-background"/>
|
||||
<!-- /wp:separator -->
|
||||
|
||||
<!-- wp:group {"align":"full","style":{"border":{"width":"0px","style":"none"},"spacing":{"padding":{"right":"var:preset|spacing|20","left":"var:preset|spacing|20"},"margin":{"top":"0","bottom":"0"},"blockGap":"0"}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group alignfull" style="border-style:none;border-width:0px;margin-top:0;margin-bottom:0;padding-right:var(--wp--preset--spacing--20);padding-left:var(--wp--preset--spacing--20)"><!-- wp:group {"align":"wide","layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"center"}} -->
|
||||
<div class="wp-block-group alignwide"><!-- wp:group {"style":{"spacing":{"padding":{"top":"0","bottom":"0","left":"0","right":"0"}}},"layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group" style="padding-top:0;padding-right:0;padding-bottom:0;padding-left:0"><!-- wp:group {"style":{"spacing":{"padding":{"right":"0","left":"0"}}},"layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"center"}} -->
|
||||
<div class="wp-block-group" style="padding-right:0;padding-left:0"><!-- wp:heading {"style":{"typography":{"textTransform":"lowercase","textAlign":"left"},"elements":{"link":{"color":{"text":"var:preset|color|base"}}}},"textColor":"base","fontSize":"small"} -->
|
||||
<h2 class="wp-block-heading has-text-align-left has-base-color has-text-color has-link-color has-small-font-size" style="text-transform:lowercase"><a href="https://radio.indymedia.pt"><strong>radio.indymedia.org</strong></a></h2>
|
||||
<!-- /wp:heading --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:rss {"feedURL":"https://radio.indymedia.org/rss.xml"} /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p></p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer","align":"center"} /-->
|
||||
|
|
@ -0,0 +1,255 @@
|
|||
<!-- wp:group {"tagName":"main","style":{"spacing":{"margin":{"top":"0"},"blockGap":"var:preset|spacing|20"}},"layout":{"type":"constrained"}} -->
|
||||
<main class="wp-block-group" style="margin-top:0"><!-- wp:columns {"align":"full","style":{"spacing":{"blockGap":{"left":"var:preset|spacing|20"}}}} -->
|
||||
<div class="wp-block-columns alignfull"><!-- wp:column {"width":"80%","style":{"spacing":{"padding":{"right":"var:preset|spacing|20","left":"var:preset|spacing|20"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-column" style="padding-right:var(--wp--preset--spacing--20);padding-left:var(--wp--preset--spacing--20);flex-basis:80%"><!-- wp:template-part {"slug":"header"} /-->
|
||||
|
||||
<!-- wp:group {"align":"full","style":{"spacing":{"padding":{"right":"0","left":"0"}}},"layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group alignfull" style="padding-right:0;padding-left:0"><!-- wp:post-title {"textAlign":"left","level":4,"isLink":true,"style":{"spacing":{"padding":{"top":"0","bottom":"0","left":"0","right":"0"},"margin":{"top":"0","bottom":"0"}}},"backgroundColor":"custom-header","fontSize":"x-large"} /-->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"0","bottom":"0"}}},"layout":{"type":"constrained","justifyContent":"center"}} -->
|
||||
<div class="wp-block-group" style="padding-top:0;padding-bottom:0"><!-- wp:group {"align":"full","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group alignfull"><!-- wp:group {"align":"full","style":{"spacing":{"blockGap":"var:preset|spacing|20"}},"layout":{"type":"constrained","justifyContent":"left"}} -->
|
||||
<div class="wp-block-group alignfull"><!-- wp:group {"align":"full","style":{"spacing":{"blockGap":"0"}},"layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group alignfull"><!-- wp:group {"align":"full","style":{"spacing":{"blockGap":"0","margin":{"top":"0","bottom":"0"}},"elements":{"link":{":hover":{"color":{"text":"var:preset|color|primary"}},"color":{"text":"var:preset|color|base"}}}},"layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group alignfull has-link-color" style="margin-top:0;margin-bottom:0"><!-- wp:post-date {"textAlign":"left","format":"d/m/Y","isLink":true,"metadata":{"bindings":{"datetime":{"source":"core/post-data","args":{"field":"date"}}}},"style":{"elements":{"link":{"color":{"text":"var:preset|color|base"}}}},"textColor":"base","fontSize":"small"} /-->
|
||||
|
||||
<!-- wp:post-terms {"term":"category","prefix":"Tema: ","suffix":" ","style":{"spacing":{"padding":{"top":"0","bottom":"0"}},"elements":{"link":{"color":{"text":"var:preset|color|secondary"}}}},"textColor":"secondary","fontSize":"small"} /-->
|
||||
|
||||
<!-- wp:post-terms {"term":"post_tag","prefix":"Tags: ","style":{"spacing":{"padding":{"top":"0","bottom":"0"}}},"textColor":"secondary","fontSize":"small"} /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"align":"full","layout":{"type":"constrained","justifyContent":"left"}} -->
|
||||
<div class="wp-block-group alignfull"><!-- wp:post-featured-image {"aspectRatio":"auto","width":"","height":"300px","scale":"contain","style":{"spacing":{"padding":{"right":"0","left":"0","top":"var:preset|spacing|20","bottom":"var:preset|spacing|20"},"margin":{"top":"0","bottom":"0"}}}} /--></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"right":"0","left":"0"}}},"layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group" style="padding-right:0;padding-left:0"><!-- wp:post-content {"metadata":{"ignoredHookedBlocks":["activitypub/reactions"]},"align":"full","style":{"spacing":{"padding":{"right":"0","left":"0","top":"0","bottom":"0"},"blockGap":"var:preset|spacing|30","margin":{"right":"0","left":"0","top":"0","bottom":"0"}},"typography":{"lineHeight":"1.4","fontSize":"1.1rem"}},"layout":{"type":"constrained","contentSize":""}} /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:spacer {"height":"23px"} -->
|
||||
<div style="height:23px" aria-hidden="true" class="wp-block-spacer"></div>
|
||||
<!-- /wp:spacer -->
|
||||
|
||||
<!-- wp:group {"align":"wide","style":{"spacing":{"padding":{"top":"var:preset|spacing|20","bottom":"var:preset|spacing|20","left":"var:preset|spacing|30","right":"var:preset|spacing|30"},"margin":{"top":"0","bottom":"0"}},"border":{"color":"#6b6b6b","width":"1px"}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group alignwide has-border-color" style="border-color:#6b6b6b;border-width:1px;margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--20);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--20);padding-left:var(--wp--preset--spacing--30)"><!-- wp:comments {"align":"wide","style":{"border":{"width":"0px","style":"none"},"spacing":{"margin":{"right":"0","left":"0","top":"0","bottom":"0"},"padding":{"right":"0","left":"0"}}}} -->
|
||||
<div class="wp-block-comments alignwide" style="border-style:none;border-width:0px;margin-top:0;margin-right:0;margin-bottom:0;margin-left:0;padding-right:0;padding-left:0"><!-- wp:comments-title {"style":{"typography":{"textTransform":"none","fontStyle":"normal","fontWeight":"400"}},"fontSize":"small"} /-->
|
||||
|
||||
<!-- wp:comment-template {"fontSize":"medium"} -->
|
||||
<!-- wp:columns -->
|
||||
<div class="wp-block-columns"><!-- wp:column {"style":{"spacing":{"padding":{"top":"0","bottom":"0"},"blockGap":"0"}}} -->
|
||||
<div class="wp-block-column" style="padding-top:0;padding-bottom:0"><!-- wp:comment-author-name {"fontSize":"small"} /-->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"margin":{"top":"0px","bottom":"0px"}},"elements":{"link":{"color":{"text":"#929292"}}},"color":{"text":"#929292"}},"layout":{"type":"flex"}} -->
|
||||
<div class="wp-block-group has-text-color has-link-color" style="color:#929292;margin-top:0px;margin-bottom:0px"><!-- wp:comment-date {"format":"d/m/Y H:i","fontSize":"small"} /-->
|
||||
|
||||
<!-- wp:comment-edit-link {"style":{"elements":{"link":{"color":{"text":"var:preset|color|base"}}}},"fontSize":"small"} /--></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:comment-content {"style":{"spacing":{"padding":{"top":"0","bottom":"0"}}},"fontSize":"medium"} /-->
|
||||
|
||||
<!-- wp:comment-reply-link {"style":{"elements":{"link":{"color":{"text":"var:preset|color|accent-2"}}}},"fontSize":"small"} /-->
|
||||
|
||||
<!-- wp:separator -->
|
||||
<hr class="wp-block-separator has-alpha-channel-opacity"/>
|
||||
<!-- /wp:separator --></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns -->
|
||||
<!-- /wp:comment-template -->
|
||||
|
||||
<!-- wp:comments-pagination -->
|
||||
<!-- wp:comments-pagination-previous /-->
|
||||
|
||||
<!-- wp:comments-pagination-numbers /-->
|
||||
|
||||
<!-- wp:comments-pagination-next /-->
|
||||
<!-- /wp:comments-pagination -->
|
||||
|
||||
<!-- wp:post-comments-form {"style":{"spacing":{"margin":{"top":"0","bottom":"0","left":"var:preset|spacing|20","right":"var:preset|spacing|20"}}},"fontSize":"small"} /--></div>
|
||||
<!-- /wp:comments --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"width":"20%"} -->
|
||||
<div class="wp-block-column" style="flex-basis:20%"><!-- wp:group {"style":{"spacing":{"padding":{"right":"0","left":"0","top":"0","bottom":"var:preset|spacing|20"}}},"backgroundColor":"accent-4","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group has-accent-4-background-color has-background" style="padding-top:0;padding-right:0;padding-bottom:var(--wp--preset--spacing--20);padding-left:0"><!-- wp:image {"id":14,"sizeSlug":"full","linkDestination":"none","align":"full"} -->
|
||||
<figure class="wp-block-image alignfull size-full"><img src="http://localhost:8080/wp-content/uploads/2026/03/imcbannerlogo.gif" alt="" class="wp-image-14"/></figure>
|
||||
<!-- /wp:image -->
|
||||
|
||||
<!-- wp:group {"align":"full","layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group alignfull"><!-- wp:group {"style":{"spacing":{"padding":{"right":"var:preset|spacing|20","left":"var:preset|spacing|20"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="padding-right:var(--wp--preset--spacing--20);padding-left:var(--wp--preset--spacing--20)"><!-- wp:image {"id":16,"sizeSlug":"full","linkDestination":"none","align":"wide","style":{"spacing":{"margin":{"top":"0","bottom":"0","left":"0","right":"0"}}}} -->
|
||||
<figure class="wp-block-image alignwide size-full" style="margin-top:0;margin-right:0;margin-bottom:0;margin-left:0"><img src="http://localhost:8080/wp-content/uploads/2026/03/imclogo2-2.gif" alt="" class="wp-image-16"/></figure>
|
||||
<!-- /wp:image --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"right":"var:preset|spacing|20","left":"var:preset|spacing|20"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="padding-right:var(--wp--preset--spacing--20);padding-left:var(--wp--preset--spacing--20)"><!-- wp:paragraph {"fontSize":"small"} -->
|
||||
<p class="has-small-font-size"><small>Indymedia is a collective of independent media organizations and hundreds of journalists offering grassroots, non-corporate coverage. Indymedia is a democratic media outlet for the creation of radical, accurate, and passionate tellings of truth.</small></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:details {"showContent":true,"fontSize":"small"} -->
|
||||
<details class="wp-block-details has-small-font-size" open><summary><strong>participate</strong></summary><!-- wp:paragraph {"style":{"spacing":{"padding":{"top":"2px","bottom":"2px"}}},"fontSize":"small"} -->
|
||||
<p class="has-small-font-size" style="padding-top:2px;padding-bottom:2px"><a href="https://indymedia.pt/publicar/" data-type="page" data-id="88"></a><a href="https://web.archive.org/web/20161020124538/https://publish.indymedia.org/earth/servlet/OpenMir?do=opensession&sessiontype=content">post your news</a> <br>instantly upload your audio, video, photo or text directly from your browser</p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"spacing":{"padding":{"top":"2px","bottom":"2px"}}},"fontSize":"small"} -->
|
||||
<p class="has-small-font-size" style="padding-top:2px;padding-bottom:2px"><a href="https://radio.indymedia.org">radio.indymedia.org</a> (<a href="https://archive.org/details/@r_dio_paralelo_porto">arquivo</a>)<br><a href="https://indymedia.pt/about/" data-type="page" data-id="21">about</a><br><a href="https://indymedia.pt/contact/" data-type="page" data-id="228713">contact</a><br><a href="https://indymedia.pt/rss/" data-type="page" data-id="226885">RSS</a><br><a href="https://indymedia.pt/links/" data-type="page" data-id="7366">links</a><br>wiki<br><a href="https://unite.openworlds.info/Open-Media-Network/Wordpress">code</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p>IndyMedia Network - IMC's</p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"margin":{"top":"var:preset|spacing|20","bottom":"var:preset|spacing|20"},"blockGap":"0"}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="margin-top:var(--wp--preset--spacing--20);margin-bottom:var(--wp--preset--spacing--20)"><!-- wp:paragraph -->
|
||||
<p><a href="http://indymedia.org/" target="_blank" rel="noreferrer noopener">indymedia.org</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="http://radio.indymedia.org/" target="_blank" rel="noreferrer noopener">radio.indymedia.org</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://argentina.indymedia.org/" target="_blank" rel="noreferrer noopener">Argentina</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://athens.indymedia.org/" target="_blank" rel="noreferrer noopener">Athens</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="http://barcelona.indymedia.org/" target="_blank" rel="noreferrer noopener">Barcelona</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://bxl.indymedia.org/?lang=fr">Belgium</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://midiaindependente.org/" target="_blank" rel="noreferrer noopener">Brasil</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://chicago.indymedia.org/" target="_blank" rel="noreferrer noopener">Chicago</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://ecuadorindymedia.org/" target="_blank" rel="noreferrer noopener">Ecuador </a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://de.indymedia.org/" target="_blank" rel="noreferrer noopener">Germany</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://cmiguate.org/" target="_blank" rel="noreferrer noopener">Guatemala</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="http://www.indymedia.ie/" target="_blank" rel="noreferrer noopener">Ireland</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://archive.autistici.org/ai/20210701082026/https://italy.indymedia.org/index.php" target="_blank" rel="noreferrer noopener">Italy</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://lille.indymedia.org/?lang=fr" target="_blank" rel="noreferrer noopener">Lille</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://la.indymedia.org/" target="_blank" rel="noreferrer noopener">Los Angeles</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="http://mexico.indymedia.org/" target="_blank" rel="noreferrer noopener">México</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://nantes.indymedia.org/" target="_blank" rel="noreferrer noopener">Nantes</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://indymedia.nl/" target="_blank" rel="noreferrer noopener">Netherlands</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://podcasts.apple.com/us/podcast/perth-indymedia/id1244713881" target="_blank" rel="noreferrer noopener">Perth</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://indymedia.pt/">Portugal</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://www.indybay.org/" target="_blank" rel="noreferrer noopener">San Francisco</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://www.indybay.org/santa-cruz/">Santa Cruz</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://www.ucimc.org/" target="_blank" rel="noreferrer noopener">Urbana Champain</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://indymedia-venezuela.contrapoder.org/?lang=es" target="_blank" rel="noreferrer noopener">Venezuela</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://dcindymedia.org/">Washington DC</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://www.centrodemedioslibres.org/" target="_blank" rel="noreferrer noopener">Centro de Medios Libres</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://reseaumutu.info/" target="_blank" rel="noreferrer noopener">Reseau Mutu</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://www.anarkismo.net/">Anarkismo.net</a></p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:image {"id":17,"sizeSlug":"full","linkDestination":"none"} -->
|
||||
<figure class="wp-block-image size-full"><img src="http://localhost:8080/wp-content/uploads/2026/03/70E14994-6BDF-4C4A-A31F-E49FC8EFB9D5.jpg" alt="" class="wp-image-17"/></figure>
|
||||
<!-- /wp:image --></details>
|
||||
<!-- /wp:details -->
|
||||
|
||||
<!-- wp:separator {"align":"full","backgroundColor":"accent-4"} -->
|
||||
<hr class="wp-block-separator alignfull has-text-color has-accent-4-color has-alpha-channel-opacity has-accent-4-background-color has-background"/>
|
||||
<!-- /wp:separator -->
|
||||
|
||||
<!-- wp:group {"align":"full","style":{"border":{"width":"0px","style":"none"},"spacing":{"padding":{"right":"var:preset|spacing|20","left":"var:preset|spacing|20"},"margin":{"top":"0","bottom":"0"},"blockGap":"0"}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group alignfull" style="border-style:none;border-width:0px;margin-top:0;margin-bottom:0;padding-right:var(--wp--preset--spacing--20);padding-left:var(--wp--preset--spacing--20)"><!-- wp:group {"align":"wide","layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"center"}} -->
|
||||
<div class="wp-block-group alignwide"><!-- wp:group {"style":{"spacing":{"padding":{"top":"0","bottom":"0","left":"0","right":"0"}}},"layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group" style="padding-top:0;padding-right:0;padding-bottom:0;padding-left:0"><!-- wp:group {"style":{"spacing":{"padding":{"right":"0","left":"0"}}},"layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"center"}} -->
|
||||
<div class="wp-block-group" style="padding-right:0;padding-left:0"><!-- wp:heading {"style":{"typography":{"textTransform":"lowercase","textAlign":"left"},"elements":{"link":{"color":{"text":"var:preset|color|base"}}}},"textColor":"base","fontSize":"small"} -->
|
||||
<h2 class="wp-block-heading has-text-align-left has-base-color has-text-color has-link-color has-small-font-size" style="text-transform:lowercase"><a href="https://radio.indymedia.pt"><strong>radio.indymedia.org</strong></a></h2>
|
||||
<!-- /wp:heading --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:rss {"feedURL":"https://radio.indymedia.org/rss.xml"} /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p></p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns --></main>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer"} /-->
|
||||
|
|
@ -0,0 +1,209 @@
|
|||
<!-- wp:columns {"align":"full","style":{"spacing":{"blockGap":{"left":"var:preset|spacing|20"}}}} -->
|
||||
<div class="wp-block-columns alignfull"><!-- wp:column {"width":"80%"} -->
|
||||
<div class="wp-block-column" style="flex-basis:80%"><!-- wp:template-part {"slug":"header"} /-->
|
||||
|
||||
<!-- wp:group {"align":"full","style":{"color":{"background":"#2f2f2f"},"spacing":{"padding":{"right":"0","left":"0"},"margin":{"top":"10px","bottom":"10px"},"blockGap":"5px"}},"layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group alignfull has-background" style="background-color:#2f2f2f;margin-top:10px;margin-bottom:10px;padding-right:0;padding-left:0"><!-- wp:post-title {"textAlign":"left","level":5,"align":"wide","style":{"spacing":{"padding":{"right":"var:preset|spacing|30","left":"var:preset|spacing|30","top":"var:preset|spacing|20","bottom":"var:preset|spacing|20"}},"border":{"top":{"color":"var:preset|color|accent-6","width":"1px"},"right":{"width":"0px","style":"none"},"bottom":{"width":"0px","style":"none"},"left":{"width":"0px","style":"none"}},"color":{"background":"#480000"}},"fontSize":"medium"} /--></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"tagName":"main","style":{"spacing":{"margin":{"top":"var:preset|spacing|30","bottom":"var:preset|spacing|30"}}},"layout":{"type":"constrained"}} -->
|
||||
<main class="wp-block-group" style="margin-top:var(--wp--preset--spacing--30);margin-bottom:var(--wp--preset--spacing--30)"><!-- wp:search {"label":"\u003cbr\u003ePesquisar","showLabel":false,"width":220,"widthUnit":"px","buttonText":"Pesquisar","buttonPosition":"button-inside","buttonUseIcon":true} /-->
|
||||
|
||||
<!-- wp:query-title {"type":"archive","level":5} /-->
|
||||
|
||||
<!-- wp:query {"queryId":10,"query":{"perPage":10,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":true}} -->
|
||||
<div class="wp-block-query"><!-- wp:post-template -->
|
||||
<!-- wp:group {"align":"full","style":{"spacing":{"blockGap":"0"}},"layout":{"type":"flex","orientation":"vertical"}} -->
|
||||
<div class="wp-block-group alignfull"><!-- wp:group {"align":"full","style":{"spacing":{"blockGap":"0","padding":{"top":"var:preset|spacing|20","bottom":"var:preset|spacing|20"}}},"fontSize":"medium","layout":{"type":"flex","orientation":"vertical"}} -->
|
||||
<div class="wp-block-group alignfull has-medium-font-size" style="padding-top:var(--wp--preset--spacing--20);padding-bottom:var(--wp--preset--spacing--20)"><!-- wp:post-title {"level":1,"isLink":true,"linkTarget":"_blank","style":{"layout":{"selfStretch":"fit","flexSize":null},"typography":{"fontStyle":"normal","fontWeight":"400","textTransform":"uppercase"},"elements":{"link":{":hover":{"color":{"text":"var:preset|color|accent-1"}},"color":{"text":"var:preset|color|accent-1"}}}},"textColor":"accent-1","fontSize":"small","fontFamily":"inclusive-sans"} /-->
|
||||
|
||||
<!-- wp:post-excerpt {"showMoreOnNewLine":false,"excerptLength":10,"fontSize":"small"} /-->
|
||||
|
||||
<!-- wp:post-date {"metadata":{"bindings":{"datetime":{"source":"core/post-data","args":{"field":"date"}}}},"style":{"typography":{"fontSize":"0.8rem"},"elements":{"link":{"color":{"text":"var:preset|color|base"}}}},"textColor":"base"} /-->
|
||||
|
||||
<!-- wp:post-terms {"term":"post_tag","style":{"typography":{"fontSize":"0.7rem"}}} /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
<!-- /wp:post-template --></div>
|
||||
<!-- /wp:query --></main>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"width":"20%"} -->
|
||||
<div class="wp-block-column" style="flex-basis:20%"><!-- wp:group {"style":{"spacing":{"padding":{"right":"0","left":"0","top":"0","bottom":"var:preset|spacing|20"}}},"backgroundColor":"accent-4","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group has-accent-4-background-color has-background" style="padding-top:0;padding-right:0;padding-bottom:var(--wp--preset--spacing--20);padding-left:0"><!-- wp:image {"id":14,"sizeSlug":"full","linkDestination":"none","align":"full"} -->
|
||||
<figure class="wp-block-image alignfull size-full"><img src="http://localhost:8080/wp-content/uploads/2026/03/imcbannerlogo.gif" alt="" class="wp-image-14"/></figure>
|
||||
<!-- /wp:image -->
|
||||
|
||||
<!-- wp:group {"align":"full","layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group alignfull"><!-- wp:group {"style":{"spacing":{"padding":{"right":"var:preset|spacing|20","left":"var:preset|spacing|20"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="padding-right:var(--wp--preset--spacing--20);padding-left:var(--wp--preset--spacing--20)"><!-- wp:image {"id":16,"sizeSlug":"full","linkDestination":"none","align":"wide","style":{"spacing":{"margin":{"top":"0","bottom":"0","left":"0","right":"0"}}}} -->
|
||||
<figure class="wp-block-image alignwide size-full" style="margin-top:0;margin-right:0;margin-bottom:0;margin-left:0"><img src="http://localhost:8080/wp-content/uploads/2026/03/imclogo2-2.gif" alt="" class="wp-image-16"/></figure>
|
||||
<!-- /wp:image --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"right":"var:preset|spacing|20","left":"var:preset|spacing|20"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="padding-right:var(--wp--preset--spacing--20);padding-left:var(--wp--preset--spacing--20)"><!-- wp:paragraph {"fontSize":"small"} -->
|
||||
<p class="has-small-font-size"><small>Indymedia is a collective of independent media organizations and hundreds of journalists offering grassroots, non-corporate coverage. Indymedia is a democratic media outlet for the creation of radical, accurate, and passionate tellings of truth.</small></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:details {"showContent":true,"fontSize":"small"} -->
|
||||
<details class="wp-block-details has-small-font-size" open><summary><strong>participate</strong></summary><!-- wp:paragraph {"style":{"spacing":{"padding":{"top":"2px","bottom":"2px"}}},"fontSize":"small"} -->
|
||||
<p class="has-small-font-size" style="padding-top:2px;padding-bottom:2px"><a href="https://indymedia.pt/publicar/" data-type="page" data-id="88"></a><a href="https://web.archive.org/web/20161020124538/https://publish.indymedia.org/earth/servlet/OpenMir?do=opensession&sessiontype=content">post your news</a> <br>instantly upload your audio, video, photo or text directly from your browser</p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"spacing":{"padding":{"top":"2px","bottom":"2px"}}},"fontSize":"small"} -->
|
||||
<p class="has-small-font-size" style="padding-top:2px;padding-bottom:2px"><a href="https://radio.indymedia.org">radio.indymedia.org</a> (<a href="https://archive.org/details/@r_dio_paralelo_porto">arquivo</a>)<br><a href="https://indymedia.pt/about/" data-type="page" data-id="21">about</a><br><a href="https://indymedia.pt/contact/" data-type="page" data-id="228713">contact</a><br><a href="https://indymedia.pt/rss/" data-type="page" data-id="226885">RSS</a><br><a href="https://indymedia.pt/links/" data-type="page" data-id="7366">links</a><br>wiki<br><a href="https://unite.openworlds.info/Open-Media-Network/Wordpress">code</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p>IndyMedia Network - IMC's</p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"margin":{"top":"var:preset|spacing|20","bottom":"var:preset|spacing|20"},"blockGap":"0"}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="margin-top:var(--wp--preset--spacing--20);margin-bottom:var(--wp--preset--spacing--20)"><!-- wp:paragraph -->
|
||||
<p><a href="http://indymedia.org/" target="_blank" rel="noreferrer noopener">indymedia.org</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="http://radio.indymedia.org/" target="_blank" rel="noreferrer noopener">radio.indymedia.org</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://argentina.indymedia.org/" target="_blank" rel="noreferrer noopener">Argentina</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://athens.indymedia.org/" target="_blank" rel="noreferrer noopener">Athens</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="http://barcelona.indymedia.org/" target="_blank" rel="noreferrer noopener">Barcelona</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://bxl.indymedia.org/?lang=fr">Belgium</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://midiaindependente.org/" target="_blank" rel="noreferrer noopener">Brasil</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://chicago.indymedia.org/" target="_blank" rel="noreferrer noopener">Chicago</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://ecuadorindymedia.org/" target="_blank" rel="noreferrer noopener">Ecuador </a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://de.indymedia.org/" target="_blank" rel="noreferrer noopener">Germany</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://cmiguate.org/" target="_blank" rel="noreferrer noopener">Guatemala</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="http://www.indymedia.ie/" target="_blank" rel="noreferrer noopener">Ireland</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://archive.autistici.org/ai/20210701082026/https://italy.indymedia.org/index.php" target="_blank" rel="noreferrer noopener">Italy</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://lille.indymedia.org/?lang=fr" target="_blank" rel="noreferrer noopener">Lille</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://la.indymedia.org/" target="_blank" rel="noreferrer noopener">Los Angeles</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="http://mexico.indymedia.org/" target="_blank" rel="noreferrer noopener">México</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://nantes.indymedia.org/" target="_blank" rel="noreferrer noopener">Nantes</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://indymedia.nl/" target="_blank" rel="noreferrer noopener">Netherlands</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://podcasts.apple.com/us/podcast/perth-indymedia/id1244713881" target="_blank" rel="noreferrer noopener">Perth</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://indymedia.pt/">Portugal</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://www.indybay.org/" target="_blank" rel="noreferrer noopener">San Francisco</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://www.indybay.org/santa-cruz/">Santa Cruz</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://www.ucimc.org/" target="_blank" rel="noreferrer noopener">Urbana Champain</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://indymedia-venezuela.contrapoder.org/?lang=es" target="_blank" rel="noreferrer noopener">Venezuela</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://dcindymedia.org/">Washington DC</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://www.centrodemedioslibres.org/" target="_blank" rel="noreferrer noopener">Centro de Medios Libres</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://reseaumutu.info/" target="_blank" rel="noreferrer noopener">Reseau Mutu</a> </p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><a href="https://www.anarkismo.net/">Anarkismo.net</a></p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:image {"id":17,"sizeSlug":"full","linkDestination":"none"} -->
|
||||
<figure class="wp-block-image size-full"><img src="http://localhost:8080/wp-content/uploads/2026/03/70E14994-6BDF-4C4A-A31F-E49FC8EFB9D5.jpg" alt="" class="wp-image-17"/></figure>
|
||||
<!-- /wp:image --></details>
|
||||
<!-- /wp:details -->
|
||||
|
||||
<!-- wp:separator {"align":"full","backgroundColor":"accent-4"} -->
|
||||
<hr class="wp-block-separator alignfull has-text-color has-accent-4-color has-alpha-channel-opacity has-accent-4-background-color has-background"/>
|
||||
<!-- /wp:separator -->
|
||||
|
||||
<!-- wp:group {"align":"full","style":{"border":{"width":"0px","style":"none"},"spacing":{"padding":{"right":"var:preset|spacing|20","left":"var:preset|spacing|20"},"margin":{"top":"0","bottom":"0"},"blockGap":"0"}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group alignfull" style="border-style:none;border-width:0px;margin-top:0;margin-bottom:0;padding-right:var(--wp--preset--spacing--20);padding-left:var(--wp--preset--spacing--20)"><!-- wp:group {"align":"wide","layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"center"}} -->
|
||||
<div class="wp-block-group alignwide"><!-- wp:group {"style":{"spacing":{"padding":{"top":"0","bottom":"0","left":"0","right":"0"}}},"layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group" style="padding-top:0;padding-right:0;padding-bottom:0;padding-left:0"><!-- wp:group {"style":{"spacing":{"padding":{"right":"0","left":"0"}}},"layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"center"}} -->
|
||||
<div class="wp-block-group" style="padding-right:0;padding-left:0"><!-- wp:heading {"style":{"typography":{"textTransform":"lowercase","textAlign":"left"},"elements":{"link":{"color":{"text":"var:preset|color|base"}}}},"textColor":"base","fontSize":"small"} -->
|
||||
<h2 class="wp-block-heading has-text-align-left has-base-color has-text-color has-link-color has-small-font-size" style="text-transform:lowercase"><a href="https://radio.indymedia.pt"><strong>radio.indymedia.org</strong></a></h2>
|
||||
<!-- /wp:heading --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:rss {"feedURL":"https://radio.indymedia.org/rss.xml"} /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p></p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer"} /-->
|
||||
|
After Width: | Height: | Size: 47 KiB |
|
After Width: | Height: | Size: 13 KiB |
|
After Width: | Height: | Size: 3.6 KiB |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 1.7 KiB |
|
|
@ -0,0 +1,61 @@
|
|||
/*
|
||||
Theme Name: Twenty Twenty-Five
|
||||
Theme URI: https://wordpress.org/themes/twentytwentyfive/
|
||||
Author: the WordPress team
|
||||
Author URI: https://wordpress.org
|
||||
Description: Twenty Twenty-Five emphasizes simplicity and adaptability. It offers flexible design options, supported by a variety of patterns for different page types, such as services and landing pages, making it ideal for building personal blogs, professional portfolios, online magazines, or business websites. Its templates cater to various blog styles, from text-focused to image-heavy layouts. Additionally, it supports international typography and diverse color palettes, ensuring accessibility and customization for users worldwide.
|
||||
Requires at least: 6.7
|
||||
Tested up to: 6.8
|
||||
Requires PHP: 7.2
|
||||
Version: 1.3
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
Text Domain: twentytwentyfive
|
||||
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, wide-blocks, block-styles, style-variations, accessibility-ready, blog, portfolio, news
|
||||
*/
|
||||
|
||||
/*
|
||||
* Link styles
|
||||
* https://github.com/WordPress/gutenberg/issues/42319
|
||||
*/
|
||||
a {
|
||||
text-decoration-thickness: 1px !important;
|
||||
text-underline-offset: .1em;
|
||||
}
|
||||
|
||||
/* Focus styles */
|
||||
:where(.wp-site-blocks *:focus) {
|
||||
outline-width: 2px;
|
||||
outline-style: solid;
|
||||
}
|
||||
|
||||
/* Increase the bottom margin on submenus, so that the outline is visible. */
|
||||
.wp-block-navigation .wp-block-navigation-submenu .wp-block-navigation-item:not(:last-child) {
|
||||
margin-bottom: 3px;
|
||||
}
|
||||
|
||||
/* Increase the outline offset on the parent menu items, so that the outline does not touch the text. */
|
||||
.wp-block-navigation .wp-block-navigation-item .wp-block-navigation-item__content {
|
||||
outline-offset: 4px;
|
||||
}
|
||||
|
||||
/* Remove outline offset from the submenus, otherwise the outline is visible outside the submenu container. */
|
||||
.wp-block-navigation .wp-block-navigation-item ul.wp-block-navigation__submenu-container .wp-block-navigation-item__content {
|
||||
outline-offset: 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* Progressive enhancement to reduce widows and orphans
|
||||
* https://github.com/WordPress/gutenberg/issues/55190
|
||||
*/
|
||||
h1, h2, h3, h4, h5, h6, blockquote, caption, figcaption, p {
|
||||
text-wrap: pretty;
|
||||
}
|
||||
|
||||
/*
|
||||
* Change the position of the more block on the front, by making it a block level element.
|
||||
* https://github.com/WordPress/gutenberg/issues/65934
|
||||
*/
|
||||
.more-link {
|
||||
display: block;
|
||||
}
|
||||