|
|
| Línea 8: |
Línea 8: |
| | * [https://www.mediawiki.org/wiki/Special:MyLanguage/Localisation#Translation_resources Traducir MediaWiki a tu idioma] | | * [https://www.mediawiki.org/wiki/Special:MyLanguage/Localisation#Translation_resources Traducir MediaWiki a tu idioma] |
| | * [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Combating_spam Aprende a combatir el spam en tu wiki] | | * [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Combating_spam Aprende a combatir el spam en tu wiki] |
| − |
| |
| − |
| |
| − | ==Consola==
| |
| − | <nowiki>
| |
| − | <syntaxhighlight lang="bash">
| |
| − | </nowiki>
| |
| − | <syntaxhighlight lang="bash">
| |
| − | root@pimpam:/var/www/html/mediawiki/extensions/SyntaxHighlight# ls
| |
| − | CODE_OF_CONDUCT.md extension.json includes package-lock.json SyntaxHighlight.lexers.php
| |
| − | composer.json Gruntfile.js maintenance pygments tests
| |
| − | COPYING i18n modules README
| |
| − | root@pimpam:/var/www/html/mediawiki/extensions/SyntaxHighlight# cd ..
| |
| − | root@pimpam:/var/www/html/mediawiki/extensions# cd ..
| |
| − | </syntaxhighlight>
| |
| − |
| |
| − | ==Codigo css==
| |
| − |
| |
| − | <nowiki>
| |
| − | <syntaxhighlight lang="css">
| |
| − | </nowiki>
| |
| − | <syntaxhighlight lang="css">
| |
| − | #home-overlay {
| |
| − | background-color: rgba(0, 0, 0, 0.8);
| |
| − | width: 100%;
| |
| − | height: 100%;
| |
| − | position: fixed;
| |
| − | top: 0;
| |
| − | left: 0;
| |
| − | z-index: -1;
| |
| − | }
| |
| − | #home-content {
| |
| − | width: 100%;
| |
| − | height: 100%;
| |
| − | display: table;
| |
| − | }
| |
| − | #home-content-inner {
| |
| − | display: table-cell;
| |
| − | vertical-align: middle;
| |
| − | } </pre>
| |
| − | </syntaxhighlight>
| |
| − |
| |
| − | ==JavaScript==
| |
| − | <syntaxhighlight lang="js">
| |
| − | /* ========================
| |
| − | Preloader
| |
| − | ===========================*/
| |
| − | $(window).on("load", function () {
| |
| − | $("#status").fadeOut();
| |
| − | $("#preloader").delay(350).fadeOut("slow");
| |
| − | });
| |
| − | </syntaxhighlight>
| |
| − |
| |
| − | ==HTML==
| |
| − | <syntaxhighlight lang="html">
| |
| − | <body>
| |
| − | <!-- Preloader-->
| |
| − | <div id="preloader">
| |
| − | <div id="status"> </div>
| |
| − | </div>
| |
| − | <!-- Home -->
| |
| − | <section id="home">
| |
| − | <!-- Background Video-->
| |
| − | <video id="home-bg-video" poster="video/pimpam.png" autoplay loop>
| |
| − | <source src="video/pimpam.mp4" type="video/mp4" />
| |
| − | </syntaxhighlight>
| |
| − |
| |
| − | ==JSON==
| |
| − | <syntaxhighlight lang="json">
| |
| − | [
| |
| − | {
| |
| − | "title": "apples",
| |
| − | "count": [12000, 20000],
| |
| − | "description": {"text": "...", "sensitive": false}
| |
| − | },
| |
| − | {
| |
| − | "title": "oranges",
| |
| − | "count": [17500, null],
| |
| − | "description": {"text": "...", "sensitive": false}
| |
| − | }
| |
| − | ]
| |
| − | </syntaxhighlight>
| |