summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYaco <franco@reevo.org>2021-09-30 23:45:19 -0300
committerYaco <franco@reevo.org>2021-09-30 23:45:19 -0300
commit3e4f12498de8969a5fd291b314da08ef934b78bb (patch)
tree012f29c4311c29824a2e173504e7d2dffde21e54
first commit
-rw-r--r--LocalSettings.php453
-rw-r--r--README.md4
-rw-r--r--i18n/es.json6
-rw-r--r--layout.xml115
-rw-r--r--logo.svg75
-rw-r--r--style.less52
6 files changed, 705 insertions, 0 deletions
diff --git a/LocalSettings.php b/LocalSettings.php
new file mode 100644
index 0000000..e20f952
--- /dev/null
+++ b/LocalSettings.php
@@ -0,0 +1,453 @@
+<?php
+# ----
+# Copyright (C) 2013-2020 - REEVOTech (http://tech.reevo.org)
+# License: Affero GPL version 3 - http://www.gnu.org/licenses/agpl.html
+# ----
+// include(__DIR__ . '../../etc/global_config-ecoversities.php');
+include('/srv/reevotech/etc/global_config-ecoversities.php');
+
+
+
+if ( !defined( 'MEDIAWIKI' ) ) {
+ exit;
+}
+
+$wgMetaNamespace = $REEVO_CODENAME;
+$wgScriptPath = "";
+
+## The URL path to static resources (images, scripts, etc.)
+$wgResourceBasePath = $wgScriptPath;
+$wgScriptPath = "";
+$wgArticlePath = "/$1";
+$wgUsePathInfo = true;
+$wgResourceBasePath = $wgScriptPath;
+
+
+## Database settings
+$wgDBtype = "mysql";
+$wgDBserver = "localhost";
+$wgDBname = $REEVO_DB_WIKI;
+$wgDBuser = $REEVO_DB_USER;
+$wgDBpassword = $REEVO_DB_PASS;
+$wgDBprefix = "";
+$wgDBTableOptions = "ENGINE=InnoDB, DEFAULT CHARSET=binary";
+$wgDBmysql5 = false;
+
+
+## Registro y perfil de usuarios
+$wgHiddenPrefs[] = 'realname';
+$wgHiddenPrefs[] = 'genre';
+$wgGroupPermissions['*']['createaccount'] = true;
+$wgRedirectOnLogin = 'Special:MyPage';
+
+## Permisos
+// $wgEmailConfirmToEdit = true;
+// $wgGroupPermissions['*']['edit'] = false;
+// $wgGroupPermissions['*']['createpage'] = true;
+$wgGroupPermissions['user']['edit'] = true;
+$wgGroupPermissions['user']['upload_by_url'] = true;
+
+
+## Email
+$wgEmergencyContact = "webmaster@$REEVO_URL";
+$wgPasswordSender = "webmaster@$REEVO_URL";
+$wgEnableEmail = true;
+$wgEnableUserEmail = true; # UPO
+$wgEnotifUserTalk = false; # UPO
+$wgEnotifWatchlist = false; # UPO
+$wgEmailAuthentication = true;
+
+## Cache
+$wgMainCacheType = CACHE_ACCEL;
+$wgMemCachedServers = [];
+
+
+## Subidas e imagenes
+$wgEnableUploads = true;
+$wgUseImageMagick = true;
+$wgImageMagickConvertCommand = "/usr/bin/convert";
+$wgAllowImageTag = true;
+// $wgAllowExternalImages = true;
+$wgUseInstantCommons = false;
+$wgDiff3 = "/usr/bin/diff3";
+$wgAllowCopyUploads = true;
+
+
+## Idioma
+$wgShellLocale = "C.UTF-8";
+$wgLanguageCode = "en";
+$wgMessagesDirs['ECOVERSITIES'] = "$IP/deployments/$REEVO_CODENAME/i18n";
+$wgMessagesDirs['Reevo'] = "../../i18n/wiki/reevo";
+$wgMessagesDirs['ISO'] = "../../i18n/wiki/iso";
+
+## Licencia
+$wgRightsPage = ""; # Set to the title of a wiki page that describes your license/copyright
+$wgRightsUrl = "https://creativecommons.org/licenses/by-sa/4.0/";
+$wgRightsText = "Creative Commons Atribución-CompartirIgual";
+$wgRightsIcon = "$wgResourceBasePath/resources/assets/licenses/cc-by-sa.png";
+
+
+## Namespaces
+// define("NS_AUDIOVISUAL", 3000); // Este número DEBE ser par.
+// define("NS_AUDIOVISUAL_TALK", 3001); // Éste DEBE ser el siguiente entero impar.
+// $wgExtraNamespaces[NS_AUDIOVISUAL] = "Audiovisual";
+// $wgExtraNamespaces[NS_AUDIOVISUAL_TALK] = "Audiovisual_talk";
+// $wgContentNamespaces[] = NS_AUDIOVISUAL;
+// $smwgNamespacesWithSemanticLinks[NS_AUDIOVISUAL] = true;
+// $wgNamespaceAliases['Pelicula'] = NS_AUDIOVISUAL;
+// $wgNamespaceAliases['Pelicula_talk'] = NS_AUDIOVISUAL_TALK;
+// $wgNamespacesWithSubpages[NS_AUDIOVISUAL] = true;
+
+// define("NS_PRENSA", 3002); // Este número DEBE ser par.
+// define("NS_PRENSA_TALK", 3003); // Éste DEBE ser el siguiente entero impar.
+// $wgExtraNamespaces[NS_PRENSA] = "Prensa";
+// $wgExtraNamespaces[NS_PRENSA_TALK] = "Prensa_talk";
+// $wgContentNamespaces[] = NS_PRENSA;
+// $smwgNamespacesWithSemanticLinks[NS_PRENSA] = true;
+// $wgNamespacesWithSubpages[NS_PRENSA] = true;
+
+define("NS_EXPERIENCIA", 3004); // Este número DEBE ser par.
+define("NS_EXPERIENCIA_TALK", 3005); // Éste DEBE ser el siguiente entero impar.
+$wgExtraNamespaces[NS_EXPERIENCIA] = "Experiencia";
+$wgExtraNamespaces[NS_EXPERIENCIA_TALK] = "Experiencia_talk";
+$wgContentNamespaces[] = NS_EXPERIENCIA;
+$smwgNamespacesWithSemanticLinks[NS_EXPERIENCIA] = true;
+$wgNamespacesWithSubpages[NS_EXPERIENCIA] = true;
+
+// define("NS_REVISAR", 3006); // Este número DEBE ser par.
+// define("NS_REVISAR_TALK", 3007); // Éste DEBE ser el siguiente entero impar.
+// $wgExtraNamespaces[NS_REVISAR] = "Revisar";
+// $wgExtraNamespaces[NS_REVISAR_TALK] = "Revisar_talk";
+// $wgContentNamespaces[] = NS_REVISAR;
+// $smwgNamespacesWithSemanticLinks[NS_REVISAR] = true;
+// $wgNamespacesWithSubpages[NS_REVISAR] = true;
+//
+// define("NS_EVENTO", 3008); // Este número DEBE ser par.
+// define("NS_EVENTO_TALK", 3009); // Éste DEBE ser el siguiente entero impar.
+// $wgExtraNamespaces[NS_EVENTO] = "Evento";
+// $wgExtraNamespaces[NS_EVENTO_TALK] = "Evento_talk";
+// $wgContentNamespaces[] = NS_EVENTO;
+// $smwgNamespacesWithSemanticLinks[NS_EVENTO] = true;
+// $wgNamespacesWithSubpages[NS_EVENTO] = true;
+
+// $wgNamespaceProtection[NS_MAIN] = $wgNamespaceProtection[NS_USER] =
+// $wgNamespaceProtection[NS_PROJECT] = $wgNamespaceProtection[NS_IMAGE] =
+// $wgNamespaceProtection[NS_TEMPLATE] = $wgNamespaceProtection[NS_HELP] =
+// $wgNamespaceProtection[NS_CATEGORY] = $wgNamespaceProtection[NS_AUDIOVISUAL] =
+// $wgNamespaceProtection[NS_AUDIOVISUAL] = $wgNamespaceProtection[NS_EXPERIENCIA] =
+// $wgNamespaceProtection[NS_EVENTO] =
+// $wgNamespaceProtection[NS_PRENSA] = array( 'autoconfirmed' );
+
+$wgNamespaceProtection[NS_EXPERIENCIA] = array( 'autoconfirmed' );
+
+// $wgGroupPermissions['*']['revisar-edit'] = true;
+// $wgNamespaceProtection[NS_REVISAR] = array( 'revisar-edit' );
+
+$wgNamespacesToBeSearchedDefault = [
+ // NS_MAIN => true,
+ // NS_CATEGORY => true,
+ // NS_USER => true,
+ NS_EXPERIENCIA => true
+ // NS_PRENSA => true,
+ // NS_AUDIOVISUAL => true,
+ // NS_EVENTO => true
+];
+
+$wgNamespaceAliases = array(
+ // 'U' => NS_USER,
+ 'E' => NS_EXPERIENCIA,
+ // 'P' => NS_PRENSA,
+ // 'A' => NS_AUDIOVISUAL,
+ // 'V' => NS_EVENTO
+);
+
+
+###### Skin y visuales
+
+## Default skin
+// wfLoadSkin( 'Vector' );
+// wfLoadSkin( 'chameleon' );
+$wgDefaultSkin = 'chameleon';
+$wgLogo = "/deployments/$REEVO_CODENAME/logo.svg";
+$egChameleonLayoutFile = $IP . '/deployments/'. $REEVO_CODENAME .'/layout.xml';
+$wgRawHtml = true;
+
+$egChameleonExternalStyleModules = [
+ $IP . '/skins/bo/assets/fontawesome/css/all.css' => $wgScriptPath, // (ya NO se carga mediante JS en /MediaWiki:Common.js)
+ $IP . '/skins/bo/bootswatch.less' => $wgScriptPath,
+ $IP . '/skins/bo/variables.less' => $wgScriptPath,
+ $IP . '/skins/bo/bo.less' => $wgScriptPath,
+ $IP . '/skins/bo/reevo.less' => $wgScriptPath,
+ $IP . '/deployments/'. $REEVO_CODENAME .'/style.less' => $wgScriptPath
+ ];
+
+\Bootstrap\BootstrapManager::getInstance()->addCacheTriggerFile( $IP . '/deployments/'. $REEVO_CODENAME .'/style.less' );
+
+
+$egChameleonExternalLessVariables = [
+ 'font-size-base' => '16px',
+ 'font-size-large' => '18px',
+ 'font-size-small' => '10px',
+ 'font-size-h1' => '22px',
+ 'font-size-h2' => '20px',
+ 'font-size-h3' => '18px',
+ 'line-height-base' => '1.5',
+ 'navbar-margin-bottom' => '10px',
+ 'navbar-default-bg' => 'rgba( 94, 157, 200, 1 )',
+ 'navbar-default-border' => 'rgba( 94, 157, 200, 1 )',
+ 'nav-tabs-active-link-hover-color' => 'rgba( 255, 255, 255, 1 )',
+ 'input-border-focus' => 'rgba(0, 0, 0, .1)'
+ ];
+
+
+###### Extensiones
+
+## NoTitle
+require_once "$IP/extensions/NoTitle/NoTitle.php";
+$wgRestrictDisplayTitle = false;
+
+## Cite
+wfLoadExtension( 'Cite' );
+
+## Semantic Mediawiki
+// require_once "$IP/extensions/SemanticMediaWiki/SemanticMediaWiki.php";
+enableSemantics( $REEVO_URL );
+// $smwgQMaxInlineLimit = 2000;
+wfLoadExtension( 'SemanticResultFormats' );
+wfLoadExtension( 'SemanticFormsSelect' );
+$smwgQMaxInlineLimit = 2000;
+
+## ModernTimeline
+wfLoadExtension( 'ModernTimeline' );
+
+## PageForms
+wfLoadExtension( 'PageForms' );
+
+## Maps
+wfLoadExtension( 'Maps' );
+require_once $IP . '/extensions/Maps/Maps_Settings.php';
+
+## ParserFunctions
+wfLoadExtension( 'ParserFunctions' );
+$wgPFEnableStringFunctions = true;
+
+## RegexFunctions
+require_once "$IP/extensions/RegexFunctions/RegexFunctions.php";
+
+## EmbedVideo
+wfLoadExtension( 'EmbedVideo' );
+
+## ExternalData
+require_once "$IP/extensions/ExternalData/ExternalData.php";
+
+## DataTrasnfer
+wfLoadExtension( 'DataTransfer' );
+include_once "$IP/extensions/DataTransfer/DataTransfer.php";
+
+## WikiEditor
+wfLoadExtension( 'WikiEditor' );
+$wgDefaultUserOptions['usebetatoolbar'] = 1;
+
+# MixedNamespaceSearchSuggestions
+wfLoadExtension( 'MixedNamespaceSearchSuggestions' );
+
+## LanguageTag
+// require_once "$IP/extensions/LanguageTag/LanguageTag.php";
+// $wgLanguageTagLanguages = array( "en", "es", "pt" );
+//
+// ## UniversalLanguageSelector
+// wfLoadExtension( 'UniversalLanguageSelector' );
+// $wgULSAcceptLanguageList = $wgLanguageTagLanguages;
+// $wgULSIMEEnabled = false;
+// $wgULSPosition = "interlanguage";
+
+## Translate
+// include_once "$IP/extensions/Translate/Translate.php";
+// $wgGroupPermissions['user']['translate'] = true;
+// // $wgGroupPermissions['translator']['skipcaptcha'] = true; // Bug 34182: needed with ConfirmEdit
+// $wgTranslateDocumentationLanguageCode = 'qqq';
+// $wgGroupPermissions['sysop']['pagetranslation'] = true;
+
+// $wgPageLanguageUseDB = true;
+// $wgGroupPermissions['user']['pagelang'] = true;
+//
+// $wgTranslateCC['wiki-sidebar'] = function( $id ) {
+// $mg = new WikiMessageGroup( $id, 'sidebar-messages' );
+// $mg->setLabel( 'Sidebar' );
+// $mg->setDescription( 'Messages used in the sidebar of this wiki' );
+// return $mg;
+// };
+
+// wfLoadExtension( 'SimpleLanguageSelector' );
+// $wgSimpleLangageSelectionLangList = ['es', 'en', 'pt'];
+// $wgSimpleLangageSelectionShowTranslateLink = true;
+
+## EmailLogin
+wfLoadExtension( 'EmailLogin' );
+
+## GetUserName
+require_once "$IP/extensions/GetUserName/GetUserName.php";
+
+## AbuseFilter
+wfLoadExtension( 'AbuseFilter' );
+$wgGroupPermissions['sysop']['abusefilter-modify'] = true;
+$wgGroupPermissions['*']['abusefilter-log-detail'] = true;
+$wgGroupPermissions['*']['abusefilter-view'] = true;
+$wgGroupPermissions['*']['abusefilter-log'] = true;
+$wgGroupPermissions['sysop']['abusefilter-private'] = true;
+$wgGroupPermissions['sysop']['abusefilter-modify-restricted'] = true;
+$wgGroupPermissions['sysop']['abusefilter-revert'] = true;
+
+## Nuke
+wfLoadExtension( 'Nuke' );
+
+## BlockBatch
+require_once "$IP/extensions/BlockBatch/BlockBatch.php";
+
+## OpenGraphMeta
+wfLoadExtension( 'OpenGraphMeta' );
+
+## Description2
+wfLoadExtension( 'Description2' );
+$wgEnableMetaDescriptionFunctions = true;
+
+## HideNamespace
+require_once "$IP/extensions/HideNamespace/HideNamespace.php";
+$wgHidensNamespaces = array(
+ // NS_PRENSA,
+ // NS_AUDIOVISUAL,
+ // NS_USER,
+ NS_EXPERIENCIA,
+ // NS_EVENTO,
+ // NS_REVISAR,
+);
+
+## CSS
+wfLoadExtension( 'CSS' );
+
+## MultimediaViewer
+wfLoadExtension( 'MultimediaViewer' );
+
+## UploadWizard
+
+wfLoadExtension( 'UploadWizard' );
+$wgApiFrameOptions = 'SAMEORIGIN';
+$wgUploadWizardConfig = array(
+ 'debug' => false,
+ 'autoAdd' => array(
+ 'wikitext' => array(
+ 'This file was uploaded with the UploadWizard extension.'
+ ),
+ 'categories' => array(
+ 'Uploaded with UploadWizard'
+ ),
+ ), // Should be localised to the language of your wiki instance
+ 'feedbackPage' => 'Feedback about UploadWizard',
+ 'altUploadForm' => 'Special:Upload',
+ 'fallbackToAltUploadForm' => false,
+ 'feedbackLink' => false, // Disable the link for feedback (default: points to Commons)
+ 'alternativeUploadToolsPage' => false, // Disable the link to alternative upload tools (default: points to Commons)
+ 'enableFormData' => true, // Enable FileAPI uploads be used on supported browsers
+ 'enableMultipleFiles' => true,
+ 'enableMultiFileSelect' => true,
+ // 'uwLanguages' => array(
+ // 'ar' => 'العربية',
+ // 'de' => 'Deutsch',
+ // 'en' => 'English'
+ // ), // Selectable languages for file descriptions - defaults to 'en'
+ 'tutorial' => array(
+ 'skip' => true
+ ), // Skip the tutorial
+ // 'maxUploads' => 15, // Number of uploads with one form - defaults to 50
+ 'fileExtensions' => $wgFileExtensions // omitting this may cause errors
+ );
+
+## MsUpload
+wfLoadExtension( 'MsUpload' );
+$wgMSU_useDragDrop = true; // Should the drag & drop area be shown? (Not set by default)
+$wgMSU_showAutoCat = true; // Files uploaded while editing a category page will be added to that category
+$wgMSU_checkAutoCat = true; // Whether the checkbox for adding a category to a page is checked by default
+$wgMSU_useMsLinks = true; // Insert links in Extension:MsLinks style?
+$wgMSU_confirmReplace = true; // Show the "Replace file?" checkbox
+$wgMSU_imgParams = 'thumb|none'; // Any image parameter separated by a semicolon. Examples are: {width}px, left, right, center, none, border, frameless, frame, thumb etc etc
+
+## ConfirmEdit - ANTISPAM!
+wfLoadExtensions([ 'ConfirmEdit', 'ConfirmEdit/QuestyCaptcha' ]);
+
+$wgCaptchaQuestions = [
+ "es" => [
+ '¿Cuál es la Capital de Francia?' => 'Paris',
+ '¿De qué país es la capital Buenos Aires?' => 'Argentina', // Answers are case insensitive
+ '¿Cuál es el nombre de esta página?' => [ 'Crianza Mutua' ], // A question may have many answers
+ '¿Cuál es el nombre del único satélite natural de la Tierra?' => [ 'Luna', 'La Luna' ], // A question may have many answers
+ ],
+ "en" => [
+ 'What is the name of the Capital of France?' => 'Paris',
+ 'Buenos Aires is the capital city of...' => 'Argentina', // Answers are case insensitive
+ 'What is the name of this website?' => [ 'Crianza Mutua' ], // A question may have many answers
+ 'What is the name of the natural satellite of the Earth' => [ 'Moon', 'The Moon' ], // A question may have many answers
+ ],
+ "pt" => [
+ 'Qual é o nome da capital da França?' => 'Paris',
+ 'De que país é a capital Buenos Aires?' => 'Argentina', // Answers are case insensitive
+ 'Qual é o nome desta página da web?' => [ 'Crianza Mutua' ], // A question may have many answers
+ 'Qual é o nome do único satélite natural na Terra?' => [ 'Lua', 'La lua' ], // A question may have many answers
+ ]
+];
+
+$wgCaptchaTriggers['edit'] = false;
+// $wgCaptchaTriggersOnNamespace[NS_REVISAR]['create'] = true;
+$wgCaptchaTriggers['createtalk'] = false;
+$wgCaptchaTriggers['addurl'] = false;
+$wgCaptchaTriggers['createaccount'] = true;
+$wgCaptchaTriggers['badlogin'] = true;
+
+
+## HideEmptySections
+require_once( "$IP/extensions/HideEmptySections/HideEmptySections.php" );
+
+## NewUserNotif
+require_once "$IP/extensions/NewUserNotif/NewUserNotif.php";
+$wgNewUserNotifEmailTargets = array(
+ 'info2019@reevo.org'
+);
+
+## ContactPage
+$wgUserEmailUseReplyTo = true;
+wfLoadExtension( 'ContactPage' );
+$wgContactConfig['default'] = array(
+ 'RecipientUser' => 'Reebot', // Must be the name of a valid account which also has a verified e-mail-address added to it.
+ 'SenderName' => 'Contact Form on ' . $wgSitename, // "Contact Form on" needs to be translated
+ 'SenderEmail' => null, // Defaults to $wgPasswordSender, may be changed as required
+ 'RequireDetails' => true, // Either "true" or "false" as required
+ 'IncludeIP' => true, // Either "true" or "false" as required
+ 'MustBeLoggedIn' => false, // Check if the user is logged in before rendering the form
+ 'AdditionalFields' => array(
+ 'Text' => array(
+ 'label-message' => 'emailmessage',
+ 'type' => 'textarea',
+ 'rows' => 20,
+ 'required' => true, // Either "true" or "false" as required
+ ),
+ ),
+ // Added in MW 1.26
+ 'DisplayFormat' => 'table', // See HTMLForm documentation for available values.
+ 'RLModules' => array(), // Resource loader modules to add to the form display page.
+ 'RLStyleModules' => array(), // Resource loader CSS modules to add to the form display page.
+);
+$wgCaptchaTriggers['contactpage'] = true;
+
+$wgHooks['EmailUser'][] = function ( &$address, &$from, &$subject, &$text, &$error ) {
+ global $wgPasswordSender;
+ $subject = '[reevo.wiki] Contacto: ' . $subject;
+ $address->address = 'info2019@reevo.org';
+# $from->address = $wgPasswordSender;
+};
+
+
+###### Extensiones propias
+
+## CountryStates
+wfLoadExtension( 'CountryStates' );
+
+$wgShowExceptionDetails = true;
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..f901b44
--- /dev/null
+++ b/README.md
@@ -0,0 +1,4 @@
+# reevotech-ecoversities-deployment
+
+Ecoversitie's Source platform customizations on top of REEVOTech
+
diff --git a/i18n/es.json b/i18n/es.json
new file mode 100644
index 0000000..0e5fa8b
--- /dev/null
+++ b/i18n/es.json
@@ -0,0 +1,6 @@
+{
+ "rv-experiencia:contacto-url": "Sitio web",
+ "rv-menu:contenidos:experiencia": "Experiencias",
+ "rv-experiencia:lugar-provincia": "Estado",
+ "rv-experiencia:info-tematicas": "Temátias / Áreas de acción"
+}
diff --git a/layout.xml b/layout.xml
new file mode 100644
index 0000000..030b1de
--- /dev/null
+++ b/layout.xml
@@ -0,0 +1,115 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+<?xml-model href="https://cmln.github.io/chameleon/schema/1.0/layout.rng" schematypens="http://relaxng.org/ns/structure/1.0"?>
+
+This file is part of the MediaWiki Chameleon skin and serves its bo flavour.
+
+@copyright 2013 - 2016, Stephan Gambke
+@license GNU General Public License, version 3 (or any later version)
+
+This layout has Pagetools visible in body content as used in http://wiki.ead.pucv.cl
+
+@author Herbert Spencer
+-->
+<structure xmlns="https://cmln.github.io/chameleon/schema/1.0/layout.rng">
+
+
+ <component type="NavbarHorizontal" class='hidden-print'>
+ <modification type="Sticky"/>
+ <component type="Logo" position="head"/>
+ <component type="Html" position="head">
+ <![CDATA[
+ <div class="visible-xs pull-right navbar-tools navbar-nav navbar-xs"><a value="Lang" id="mw-langButton" class="uls-trigger btn btn-default navbar-toplang webfonts-changed"><span class="glyphicon glyphicon-globe"></span></a></div>
+ ]]>
+ </component>
+ <component type="PersonalTools" position="head" class="visible-xs pull-right navbar-xs"/>
+
+ <component type="NavMenu" flatten="navigation" showTools="no" showLanguages="no"/>
+ <component type="SearchBar" position="right" buttons="search"/>
+ <component type="PersonalTools" position="right" class="hidden-xs"/>
+ </component>
+
+ <component type="ContentHeader"/>
+
+
+
+ <row>
+ <modification type="ShowOnlyFor" category="ConFormato" />
+ <component type="ContentBody"/>
+ </row>
+
+ <grid class="smwomaingrid pagetools hidden-print">
+ <modification type="ShowOnlyFor" group="emailconfirmed, autoconfirmed" />
+ <row>
+ <cell span="12">
+ <component type="PageTools" position="right" hideSelectedNameSpace="yes"/>
+ </cell>
+ </row>
+ </grid>
+
+
+
+
+ <grid class="smwomaingrid">
+ <row>
+ <cell span="12 hidden-print">
+ <component type="SiteNotice"/>
+ </cell>
+ </row>
+ <row>
+ <modification type="HideFor" category="ConFormato" />
+ <component type="ContentBody"/>
+ </row>
+ <row>
+ <modification type="ShowOnlyFor" group="emailconfirmed, autoconfirmed" />
+ <component type="LastmodInfo"/>
+ </row>
+ </grid>
+
+ <row class='footerwrap hidden-print'>
+ <grid class="smwofootergrid smwofootergrid-low">
+ <row class="smwofooterrow">
+ <cell span="12">
+ <modification type="ShowOnlyFor" group="emailconfirmed, autoconfirmed" />
+ <component type="ToolbarHorizontal" hideTools="no" hideLanguages="no"/>
+ </cell>
+ </row>
+ </grid>
+ </row>
+
+ <row class='footerwrap hidden-print smwofootergrid-bottom'>
+ <grid class="smwofootergrid">
+ <row class="smwofooterrow">
+ <cell span="12">
+ <component type="LegalInfo"/>
+ </cell>
+
+
+ <cell span="12" class="footer-social">
+ <component type="Html">
+ <![CDATA[
+ <div class="footer-social-box">
+ <a target="_blank" href="/api.php?action=feedrecentchanges&days=14&limit=50&hidebots=1&feedformat=atom"><i class="fas fa-rss"></i></a>
+ </div>
+ ]]>
+ </component>
+ </cell>
+
+
+ <cell span="6">
+ <!-- <component type="FooterPlaces"/>
+ <component type="FooterIcons"/> -->
+ </cell>
+
+ <cell span="6">
+ <!-- <component type="LastmodInfo"/> -->
+ </cell>
+ </row>
+ </grid>
+ </row>
+
+
+
+
+
+</structure>
diff --git a/logo.svg b/logo.svg
new file mode 100644
index 0000000..6bbe9e2
--- /dev/null
+++ b/logo.svg
@@ -0,0 +1,75 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ sodipodi:docname="logo.svg"
+ inkscape:version="1.1 (c4e8f9ed74, 2021-05-24)"
+ id="svg8"
+ version="1.1"
+ viewBox="0 0 93.016885 12.56317"
+ height="12.563169mm"
+ width="93.016884mm"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:dc="http://purl.org/dc/elements/1.1/">
+ <defs
+ id="defs2" />
+ <sodipodi:namedview
+ inkscape:window-maximized="1"
+ inkscape:window-y="0"
+ inkscape:window-x="0"
+ inkscape:window-height="1333"
+ inkscape:window-width="2560"
+ fit-margin-bottom="0"
+ fit-margin-right="0"
+ fit-margin-left="0"
+ fit-margin-top="0"
+ inkscape:guide-bbox="true"
+ showguides="true"
+ showgrid="false"
+ inkscape:document-rotation="0"
+ inkscape:current-layer="layer1"
+ inkscape:document-units="mm"
+ inkscape:cy="-26.270847"
+ inkscape:cx="186.44341"
+ inkscape:zoom="3.1403631"
+ inkscape:pageshadow="2"
+ inkscape:pageopacity="0.0"
+ borderopacity="1.0"
+ bordercolor="#666666"
+ pagecolor="#ffffff"
+ id="base"
+ inkscape:pagecheckerboard="0">
+ <sodipodi:guide
+ id="guide2776"
+ orientation="0,-1"
+ position="-153.47621,-394.1289" />
+ <sodipodi:guide
+ id="guide2784"
+ orientation="0,-1"
+ position="85.915787,30.464997" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata5">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ transform="translate(-3.9158106,-4.2893468)"
+ id="layer1"
+ inkscape:groupmode="layer"
+ inkscape:label="Capa 1">
+ <path
+ style="fill:#f2f2f2;stroke:#f2f2f2;stroke-width:0.1;stroke-miterlimit:4;stroke-dasharray:none"
+ d="m 14.091363,16.697812 c -0.420371,-0.18806 -0.989737,-0.73835 -1.215685,-1.174957 -0.391486,-0.756481 -0.05005,-1.892396 0.731198,-2.432585 0.710087,-0.490989 1.678651,-0.333102 2.022228,0.329646 0.237819,0.458748 0.174406,0.896455 -0.181275,1.25125 -0.286093,0.285381 -0.706104,0.428 -0.706104,0.239765 0,-0.04144 0.125424,-0.195206 0.278722,-0.341709 0.852895,-0.815088 -0.362058,-1.742098 -1.256505,-0.958717 -0.366411,0.320912 -0.694573,0.885925 -0.694573,1.19588 0,0.686055 0.810706,1.384687 1.60682,1.384687 0.569873,0 1.023819,-0.210771 1.521286,-0.706341 0.496746,-0.494855 0.68445,-0.864021 0.747077,-1.469327 0.144354,-1.395165 -0.846954,-2.455969 -2.295738,-2.456675 -0.729564,-3.51e-4 -0.945386,0.122153 -1.56352,0.887521 -0.359592,0.445243 -0.493426,0.547459 -0.716803,0.547459 -0.238706,0 -0.278315,-0.03732 -0.302573,-0.285093 -0.0232,-0.237142 0.0443,-0.351484 0.401404,-0.679831 1.334225,-1.226784 3.046031,-1.289466 4.185087,-0.153247 0.615834,0.6143 0.824329,1.195099 0.763346,2.12641 -0.0283,0.432305 -0.115354,0.800356 -0.252342,1.066992 -0.271751,0.528936 -0.977961,1.278223 -1.41376,1.499998 -0.490989,0.24986 -1.25511,0.309244 -1.65829,0.128874 z M 5.8521393,16.575164 C 4.3926378,16.07208 3.6379727,14.485328 4.1015971,12.894491 c 0.2311481,-0.793136 0.6037262,-1.277194 1.211273,-1.573699 0.4911651,-0.239707 0.5378117,-0.245633 1.092033,-0.138726 0.7365207,0.142072 1.2933051,0.463885 1.5696322,0.907221 0.1736301,0.278565 0.2171311,0.478332 0.2171311,0.9971 0,1.11498 -0.4632104,1.710921 -1.3894085,1.787537 -0.4124337,0.03411 -0.5169817,0.0062 -0.7688057,-0.205149 -0.4307146,-0.361518 -0.5488381,-0.797814 -0.3344783,-1.2354 0.1765305,-0.360368 0.5880053,-0.578208 0.454354,-0.240542 -0.1850742,0.467586 -0.1713616,0.780404 0.044249,1.009336 0.6292126,0.668098 1.5734744,-0.130939 1.5754828,-1.333176 0.00179,-0.995997 -1.2971607,-1.564369 -2.2722536,-0.994348 -0.752403,0.439839 -1.2123792,1.748193 -0.9414486,2.677847 0.1697356,0.582413 0.6746337,1.200162 1.203442,1.472423 0.7058833,0.36343 1.8074355,0.205194 2.4619563,-0.353656 0.3775397,-0.322354 0.4828387,-0.59999 0.6160412,-1.624258 0.1098049,-0.844331 0.7145003,-0.979479 0.7737393,-0.172927 0.053813,0.732714 -0.8079242,2.120255 -1.5489893,2.49413 C 7.7117,16.546726 6.8885011,16.749297 6.5379644,16.744109 6.4255052,16.742415 6.1168863,16.666416 5.8521393,16.575164 Z M 87.185755,13.870388 c -0.920073,-0.227813 -1.76568,-0.996548 -2.116144,-1.92378 -0.163548,-0.432702 -0.192711,-0.671097 -0.160997,-1.316168 0.04514,-0.9184216 0.23587,-1.3667055 0.796392,-1.8718395 0.813633,-0.7332381 2.088428,-0.9135932 3.058863,-0.4327602 0.799976,0.3963728 1.317144,1.3861262 1.138084,2.1780577 -0.11191,0.494984 -0.551151,1.133169 -1.002826,1.457052 -0.939563,0.673724 -2.328715,0.1173 -2.358988,-0.944891 -0.01256,-0.43921 0.119478,-0.675876 0.454938,-0.815691 0.414605,-0.172803 0.958615,-0.02828 0.958615,0.254679 0,0.159788 -0.057,0.177908 -0.487768,0.154998 l -0.487768,-0.02594 -0.02805,0.334691 c -0.05668,0.675898 0.677775,1.161358 1.398206,0.924186 0.425686,-0.140138 0.959819,-0.707095 1.136163,-1.205976 0.129998,-0.367753 0.130585,-0.460299 0.0057,-0.8889984 -0.268088,-0.9198893 -0.849568,-1.3377455 -1.861587,-1.3377455 -0.918325,0 -1.842835,0.5637236 -2.195893,1.3389542 -0.255584,0.5612007 -0.230138,1.4867357 0.06051,2.2002087 0.295439,0.725289 0.599671,1.041614 1.226924,1.275714 0.738188,0.275505 1.429812,0.246361 2.143261,-0.09032 0.490669,-0.231548 0.593085,-0.253284 0.638398,-0.135491 0.195982,0.509445 -1.380972,1.102561 -2.315952,0.871059 z M 22.14635,13.740322 c -1.154882,-0.410912 -1.9648,-1.597778 -1.964081,-2.878189 7.02e-4,-0.9449855 0.09627,-1.2796027 0.518626,-1.812587 0.278835,-0.3518775 0.534893,-0.5500285 0.97812,-0.7569221 0.545273,-0.25453 0.665954,-0.2763563 1.314395,-0.2377186 1.13276,0.067495 1.843167,0.5700295 2.160133,1.5280536 0.369837,1.1178251 -0.70248,2.6229941 -1.868682,2.6229941 -0.246395,0 -0.55113,-0.03911 -0.677183,-0.08692 -0.331054,-0.125553 -0.720814,-0.681285 -0.778452,-1.10994 -0.04333,-0.322253 -0.01334,-0.405964 0.233498,-0.65221 0.333445,-0.332614 0.725537,-0.3712129 1.053708,-0.103731 0.173652,0.14154 0.195624,0.202836 0.105488,0.294283 -0.08672,0.08799 -0.192237,0.09151 -0.442889,0.01477 -0.505758,-0.154835 -0.751606,0.166449 -0.500101,0.653559 0.23505,0.455244 0.471489,0.619479 0.891827,0.619479 0.667912,0 1.260335,-0.43175 1.55371,-1.132319 0.197767,-0.472257 0.180149,-0.7802379 -0.07571,-1.3236265 -0.36119,-0.7670657 -0.733525,-0.9819144 -1.731441,-0.9990928 -1.463224,-0.025185 -2.579398,1.2394461 -2.379291,2.6957523 0.08131,0.591779 0.500516,1.463133 0.851999,1.770973 0.703917,0.616505 1.816408,0.714723 2.7783,0.245286 0.388211,-0.189462 0.558014,-0.231316 0.633393,-0.156124 0.15609,0.155701 -0.341626,0.623606 -0.845516,0.79487 -0.513718,0.174606 -1.333497,0.178845 -1.809844,0.0093 z m 7.586672,0.0046 c -0.474851,-0.213955 -1.018993,-0.767085 -1.225357,-1.245598 -0.604241,-1.401095 -0.330019,-3.1087387 0.630983,-3.9292705 0.839748,-0.7170028 2.158342,-0.7181744 2.907301,-0.0026 0.445401,0.4255568 0.272097,0.7380761 -0.192872,0.3478058 -0.827499,-0.6945604 -1.837554,-0.6628399 -2.583384,0.08113 -0.471681,0.4705067 -0.590644,0.8649567 -0.590644,1.9584167 0,1.024131 0.107964,1.435451 0.491005,1.870624 0.723838,0.822353 1.824386,0.889618 2.688504,0.164321 0.203816,-0.171073 0.312142,-0.20988 0.384468,-0.137733 0.14136,0.141008 -0.01174,0.3583 -0.490569,0.696243 -0.333372,0.235284 -0.491391,0.280386 -1.059537,0.302407 -0.429658,0.01665 -0.771903,-0.02105 -0.959898,-0.105763 z m 7.637317,-0.0034 c -0.795822,-0.295146 -1.174117,-0.762451 -1.392477,-1.720118 -0.191884,-0.841549 -0.184215,-1.488809 0.02663,-2.2472771 0.219802,-0.790701 0.562069,-1.2365648 1.163788,-1.5160425 0.885525,-0.4112965 1.886624,-0.2429757 2.540047,0.4270738 0.323544,0.331776 0.631672,1.13564 0.727872,1.8989228 0.140718,1.116509 -0.408975,2.554833 -1.139634,2.981962 -0.505989,0.295791 -1.38572,0.375935 -1.926221,0.175479 z m 1.462374,-0.363275 c 0.741072,-0.308873 1.180149,-1.227746 1.180149,-2.469754 0,-1.6614837 -0.593543,-2.4085675 -1.914114,-2.4092608 -0.855095,-4.553e-4 -1.184418,0.2036023 -1.569959,0.9727641 -0.251048,0.5008452 -0.278716,0.6434907 -0.278633,1.4364967 1.86e-4,1.386493 0.333837,2.089699 1.161266,2.447206 0.407665,0.17614 1.029117,0.185998 1.421291,0.02255 z m 26.495794,0.372352 c -0.485358,-0.158992 -0.880682,-0.420319 -0.880682,-0.582173 0,-0.189339 0.20932,-0.15712 0.664106,0.102217 0.736749,0.420134 2.105506,0.229138 2.408781,-0.336123 0.06312,-0.11769 0.111954,-0.401813 0.108473,-0.631387 -0.0051,-0.343997 -0.05611,-0.461791 -0.289484,-0.669781 -0.155738,-0.138807 -0.462488,-0.296652 -0.681665,-0.350769 -1.426608,-0.352244 -1.585138,-0.410327 -1.881872,-0.689487 -0.352421,-0.331548 -0.544169,-0.9019 -0.454154,-1.3508635 0.07076,-0.3529243 0.517147,-0.8289511 0.985011,-1.0504116 0.622027,-0.294441 2.002484,-0.1161738 2.154191,0.278186 0.04546,0.1182103 -0.0038,0.131738 -0.294783,0.080538 -1.262539,-0.2223332 -1.804811,-0.1415541 -2.200761,0.3278329 -0.175535,0.2080923 -0.239121,0.3891496 -0.239121,0.6809075 0,0.6955167 0.394827,0.9974957 1.638025,1.2528447 1.0864,0.223142 1.607942,0.67943 1.684452,1.473689 0.05847,0.60679 -0.19347,1.033125 -0.776965,1.314886 -0.514833,0.248607 -1.427351,0.318981 -1.943552,0.149889 z m 28.757155,-0.01443 c -0.546311,-0.178044 -1.026938,-0.565104 -0.848235,-0.683097 0.08577,-0.05663 0.293475,0.0031 0.636568,0.183162 0.62038,0.325527 1.349132,0.358123 1.947541,0.08711 0.669551,-0.303229 0.883544,-1.046912 0.449352,-1.561629 -0.265962,-0.315299 -0.503465,-0.422024 -1.374257,-0.617543 -0.81788,-0.183639 -1.333511,-0.451976 -1.549596,-0.806416 -0.481736,-0.7901743 -0.226579,-1.6021679 0.645718,-2.0549088 0.448167,-0.2326084 0.585344,-0.2601408 1.115646,-0.223925 0.608374,0.041543 1.207071,0.2659736 1.207071,0.4524788 0,0.064598 -0.124324,0.079717 -0.348411,0.04237 -1.047864,-0.1746324 -1.380303,-0.1699349 -1.763194,0.024919 -0.394477,0.2007428 -0.768562,0.6905898 -0.768562,1.0063846 0,0.1011378 0.09507,0.3246018 0.211265,0.4965974 0.233887,0.346203 0.659731,0.541861 1.684369,0.773904 1.290562,0.292269 1.857455,1.168963 1.390529,2.150475 -0.331865,0.697621 -1.631175,1.057528 -2.635804,0.730118 z M 52.307354,13.592278 C 51.297853,13.195079 50.480413,11.979337 50.475877,10.8684 50.471856,9.8814354 50.582663,9.4697523 50.99111,8.9543142 51.267854,8.6050799 51.524965,8.406373 51.967218,8.1999335 52.512493,7.9454036 52.633173,7.9235773 53.281611,7.962215 c 1.089706,0.06493 1.664652,0.4227878 2.053364,1.2780547 0.383382,0.8435433 0.115722,1.8031273 -0.685643,2.4581563 -0.37125,0.303453 -0.519036,0.363711 -0.972185,0.396407 -0.862545,0.06223 -1.453265,-0.38673 -1.560769,-1.186241 -0.04211,-0.313144 -0.01047,-0.399951 0.234548,-0.6444 0.302835,-0.3020792 0.596175,-0.3539204 0.989949,-0.174953 0.476023,0.216351 0.191328,0.547807 -0.318311,0.37059 -0.220316,-0.07661 -0.307966,-0.06752 -0.41925,0.04349 -0.234972,0.234388 -0.146472,0.586934 0.258739,1.030712 0.423793,0.464125 1.486719,0.162683 1.991683,-0.564831 0.214428,-0.308939 0.256495,-0.465802 0.255074,-0.951189 -0.0013,-0.4937446 -0.04368,-0.6413699 -0.280463,-0.9806903 -0.369731,-0.529812 -0.815026,-0.7385003 -1.601593,-0.7505906 -0.526125,-0.00809 -0.704578,0.033301 -1.123029,0.2604873 -1.272872,0.6910586 -1.63054,1.9365006 -0.974742,3.3941726 0.306898,0.682158 0.718228,1.049721 1.394015,1.245689 0.673389,0.195272 1.268515,0.136997 1.938079,-0.189776 0.567613,-0.277012 0.800524,-0.232784 0.613162,0.116433 -0.30511,0.568673 -1.85606,0.836916 -2.766885,0.478544 z M 45.120878,13.155895 C 44.455331,11.392474 43.45048,8.5639841 43.45048,8.4539923 c 0,-0.1371332 0.168058,-0.2817648 0.241859,-0.2081471 0.03242,0.032341 1.36844,3.6610458 1.762657,4.7874888 0.09973,0.284986 0.315159,-0.175257 1.046992,-2.236862 0.410894,-1.1575099 0.792761,-2.1897022 0.848591,-2.2937614 0.111149,-0.2071677 0.37311,-0.2584529 0.374677,-0.073353 0.0014,0.1587584 -1.772199,4.9991704 -1.884626,5.1435854 -0.0496,0.06372 -0.186586,0.115846 -0.304407,0.115846 -0.175532,0 -0.250543,-0.09624 -0.415345,-0.532894 z m 13.797766,0.231693 c -0.02812,-0.114687 -0.03934,-1.289391 -0.02499,-2.610453 0.01976,-1.819754 0.05426,-2.4112727 0.142207,-2.4404823 0.06384,-0.021205 0.137012,0.027469 0.162586,0.1081684 0.02556,0.080697 0.06782,0.2137611 0.09387,0.2956977 0.03839,0.1206424 0.116781,0.086427 0.412317,-0.179908 0.387137,-0.3488845 1.003774,-0.5893602 1.259875,-0.4913283 0.261621,0.1001418 0.103753,0.2689501 -0.41648,0.4453416 -1.072258,0.3635641 -1.20503,0.6874188 -1.209397,2.9499129 -0.0038,1.817683 -0.03915,2.131575 -0.242111,2.131575 -0.06972,0 -0.149758,-0.09383 -0.177868,-0.208524 z m 13.025352,0.148284 c -0.03487,-0.03483 -0.0635,-1.227587 -0.0635,-2.650567 0,-2.0285799 0.02505,-2.57891 0.116131,-2.5486644 0.08832,0.029339 0.122067,0.6457677 0.140895,2.5733604 0.02263,2.318422 -0.01326,2.805683 -0.19354,2.625871 z m 4.683591,-0.137107 c -0.292889,-0.313601 -0.380372,-0.9823 -0.380372,-2.90754 0,-1.1781708 -0.03755,-1.8805495 -0.108977,-2.0368505 -0.08335,-0.1824876 -0.08335,-0.2641196 0,-0.3472665 0.05994,-0.059784 0.108977,-0.2379831 0.108977,-0.3959974 0,-0.2709993 0.137267,-0.509725 0.293093,-0.509725 0.03858,0 0.09729,0.1444808 0.130502,0.3210681 0.06704,0.3564356 0.153595,0.4497694 0.52872,0.5700905 0.347913,0.1115965 0.310429,0.2482145 -0.09957,0.3629007 l -0.341748,0.095595 -0.02493,2.1364321 -0.02493,2.136434 0.23395,0.34388 c 0.128665,0.189135 0.233944,0.36288 0.233944,0.386103 0,0.12486 -0.390261,0.01453 -0.548708,-0.155124 z m 4.421837,0.137493 c -0.111495,-0.111219 -0.07566,-5.1118627 0.03711,-5.1813985 0.262801,-0.1620136 0.317468,0.1799576 0.346012,2.1642945 0.03565,2.478795 -0.07211,3.327365 -0.383146,3.017104 z M 10.344048,12.700234 c -0.117878,-0.117586 -0.06131,-0.407658 0.09086,-0.465907 0.209599,-0.08023 0.44119,0.233095 0.298796,0.404242 -0.110628,0.132966 -0.289756,0.161315 -0.389655,0.06167 z M 9.0901206,10.74629 c -0.1782195,-0.345658 0.1962299,-0.558338 0.4487214,-0.254862 0.092275,0.110909 0.092275,0.167123 0,0.278031 -0.1544641,0.185656 -0.3461539,0.175759 -0.4487214,-0.02317 z m 2.2786894,0.0372 c -0.07534,-0.195847 0.149945,-0.456968 0.359526,-0.416709 0.120171,0.02309 0.179674,0.110825 0.179674,0.264941 0,0.1797 -0.05362,0.236628 -0.243628,0.258607 -0.148429,0.01717 -0.263929,-0.02458 -0.295572,-0.106839 z M 8.5362015,9.4667717 C 8.0301158,9.1108812 7.494797,7.840561 7.4949233,6.9957902 7.4950852,5.9245312 8.373601,4.7609141 9.408881,4.4606989 10.493645,4.1461356 11.529908,4.4434061 12.387477,5.315158 13.359666,6.303426 13.526245,7.5995034 12.782378,8.3877256 11.789163,9.4401625 10.619002,9.502308 9.738436,8.5493843 9.0613755,7.8166893 9.0009353,6.9780026 9.5833323,6.3970568 9.8484583,6.1325912 9.9556821,6.0892637 10.345056,6.0892637 c 0.539398,0 0.834168,0.179071 1.018274,0.6185938 C 11.579848,7.2247702 11.33868,7.398891 11.059379,6.9272867 10.551462,6.0695934 9.4660938,6.6414985 9.7379405,7.6235836 9.8489077,8.024472 10.515339,8.7221577 10.872786,8.8116475 11.497711,8.9681029 12.365569,8.3791912 12.602354,7.6379987 12.855119,6.8467792 12.143817,5.4977329 11.245037,5.0637235 10.646968,4.7749239 9.7476957,4.7664695 9.2136623,5.0446244 8.471189,5.4313458 7.9651882,6.2348836 7.9614342,7.0331706 7.9586287,7.628664 8.0430487,7.8064809 8.6506798,8.4850872 9.0560204,8.9377759 9.1711555,9.1303951 9.1492435,9.3191822 9.1146224,9.6173966 8.8432896,9.6827218 8.5362015,9.4667696 Z"
+ id="path6510" />
+ </g>
+</svg>
diff --git a/style.less b/style.less
new file mode 100644
index 0000000..f3b75ed
--- /dev/null
+++ b/style.less
@@ -0,0 +1,52 @@
+@font-family-sans-serif: "Open Sans", Calibri, Candara, Arial, sans-serif;
+
+.navbar {
+ background-color: #800000;
+}
+
+div#p-logo {
+ padding: 5px;
+}
+
+.smwofootergrid-bottom {
+ color: #fff;
+ background-color: #1F1F1F;
+}
+
+.navbar-right-aligned #searchInput {
+ border-color: transparent;
+ background-color: #651b00;
+ margin-left: 0;
+}
+
+button#mw-searchButton {
+ background: #4f1501;
+}
+
+.navbar-brand img {
+ max-height: 22px !important;
+ margin: 9px 0px 0px 0px;
+}
+
+.footer-social-text {
+ color: #ccc;
+ font-size: 10pt;
+}
+
+.footer-social-text a, .footer-social-text a:visited{
+ color: white;
+ font-size: 10pt;
+ padding: 0;
+}
+
+.bannerimage {
+ background-position: 50%;
+ background-size: cover;
+ background-blend-mode: luminosity !important;
+ background-color: #87018b !important;
+ color: white !important;
+ text-shadow: 0px 0px 2px #000 !important;
+ margin-top: -10px;
+ position: relative;
+ text-shadow: 1px 1px 10px #000;
+}