feat: initial ACRIB WordPress deployment

- WordPress 6.9.4 (es_ES) with Kadence theme
- Homepage: Hero, La Asociación, Pilares, Beneficios, Eventos, Miembros, Hazte Miembro, Contacto
- Brand identity: #13294b navy, #a12932 burgundy, #c69c48 gold
- Fonts: Raleway (headings) + Source Sans 3 (body) + Lato (UI)
- Plugins: Kadence Blocks, Polylang, Contact Form 7
- Custom CSS with full brand styling and responsive layout
- HTTPS enforced via wp-config.php proxy detection
This commit is contained in:
Malin
2026-05-19 19:25:59 +02:00
commit f3ff7b7186
6119 changed files with 1984255 additions and 0 deletions

View File

@@ -0,0 +1,65 @@
import { __ } from '@wordpress/i18n';
import { Button } from '@wordpress/components';
import { external } from '@wordpress/icons';
import { store as coreStore } from '@wordpress/core-data';
import { useSelect } from '@wordpress/data';
import { store as preferencesStore } from '@wordpress/preferences';
import { store as editorStore } from '@wordpress/editor';
import { addQueryArgs } from '@wordpress/url';
import { META_KEY, STATUS_OPTIMIZED } from '../meta/constants';
/**
* Generate a link to view a post in its optimized state even if logged in.
*/
export default function OptimizedViewLink() {
const { hasLoaded, permalink, isPublished, label, meta, showIconLabels } = useSelect((select) => {
const editor = select(editorStore);
const { get } = select(preferencesStore);
// Get post type for label.
const postTypeSlug = editor.getCurrentPostType();
const postType = select(coreStore).getPostType(postTypeSlug);
const postTypeLabel = postType?.labels?.singular_name || 'Post';
const dynamicLabel = __('View Optimized', 'kadence-blocks') + ' ' + postTypeLabel;
return {
permalink: editor.getPermalink(),
isPublished: editor.isCurrentPostPublished(),
label: dynamicLabel,
hasLoaded: !!postType,
meta: editor.getEditedPostAttribute('meta'),
showIconLabels: get('core', 'showIconLabels'),
};
}, []);
if (!isPublished || !permalink || !hasLoaded) {
return null;
}
if (meta !== undefined && meta[META_KEY] !== STATUS_OPTIMIZED) {
return null;
}
const optimizerData = window.kbOptimizer || {};
const nonce = optimizerData.token;
const url = addQueryArgs(permalink, {
perf_token: nonce,
kb_optimizer_preview: 1,
});
return (
<Button
style={{ paddingLeft: 0 }}
icon={external}
iconPosition={'right'}
label={label}
href={url}
target="_blank"
showTooltip={!showIconLabels}
size="compact"
>
{label}
</Button>
);
}