Imported from Mediawiki default skin

This commit is contained in:
Diskette Guy
2025-07-18 00:19:23 +07:00
parent 293b08e647
commit 38d050cca0
35 changed files with 7825 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
{{#is-article}}
<div id="catlinks" class="catlinks" data-mw="interface">
{{#data-category-normal}}
<div id="{{id}}" class="{{class}}">
<ul>{{#array-items}}{{>ListItem}}{{/array-items}}</ul>
{{{html-after-portal}}}
</div>
{{/data-category-normal}}
{{^data-category-normal}}
<p>{{msg-example-no-categories}}</p>
{{/data-category-normal}}
{{#data-category-hidden}}
<div id="{{id}}" class="{{class}}">
<ul>{{#array-items}}{{>ListItem}}{{/array-items}}</ul>
{{{html-after-portal}}}
</div>
{{/data-category-hidden}}
</div>
{{/is-article}}
+10
View File
@@ -0,0 +1,10 @@
{{! `role` is unnecessary but kept to support selectors in any gadgets or user styles and
to mitigate a VoiceOver bug. }}
<footer id="footer" class="mw-footer" role="contentinfo" {{{html-user-language-attributes}}}>
{{!}}{{#data-icons}}{{>FooterList}}{{/data-icons}}
{{!}}<div id="footer-list">
{{#data-last-modified}}{{>LastModifiedLine}}{{/data-last-modified}}
<div id="copyright">{{#data-copyright}}{{{html}}}{{/data-copyright}}</div>
{{!}}{{#data-places}}{{>FooterList}}{{/data-places}}
{{!}}</div>
</footer>
+5
View File
@@ -0,0 +1,5 @@
<ul id="{{id}}">
{{#array-items}}
<li id="{{id}}">{{{html}}}</li>
{{/array-items}}
</ul>
+1
View File
@@ -0,0 +1 @@
<span class="skin-last-modified" data-time="{{time}}">{{text}}</span>
+1
View File
@@ -0,0 +1 @@
<li id="{{id}}" class="{{class}}">{{#array-links}}{{>ListItemLink}}{{/array-links}}</li>
+2
View File
@@ -0,0 +1,2 @@
<a {{#array-attributes}}{{key}}="{{value}}"{{/array-attributes}}>
<span class="list-item-{{icon}}"></span>{{ text }}</a>
+11
View File
@@ -0,0 +1,11 @@
<div role="navigation" id="{{id}}" class="{{class}}" title="{{html-tooltip}}"
aria-labelledby="{{id}}-label">
<input type="checkbox" aria-labelledby="{{id}}-label" />
<h3 id="{{id}}-label" {{{html-user-language-attributes}}}>{{label}}</h3>
<div class="mw-portlet-body">
<ul {{{html-user-language-attributes}}}>
{{#array-items}}{{>ListItem}}{{/array-items}}
</ul>
{{{html-after-portal}}}
</div>
</div>
+68
View File
@@ -0,0 +1,68 @@
<div id="mw-wrapper">
<div class="mw-body" id="content" role="main">
<div id="siteNotice">{{{html-site-notice}}}</div>
{{{html-user-message}}}
<div class="mw-indicators mw-body-content">
{{#array-indicators}}
<div id="{{id}}" class="{{class}}">{{{html}}}</div>
{{/array-indicators}}
</div>
{{{html-title-heading}}}
<div id="siteSub">{{msg-tagline}}</div>
<div class="mw-body-content">
<div id="contentSub">
{{{html-subtitle}}}
{{{html-undelete-link}}}
</div>
{{{html-body-content}}}
<!-- todo: replace with .mixin-clearfix -->
<div class="visualClear"></div>
{{#data-portlets}}
{{>CategoryPortlet}}
{{/data-portlets}}
</div>
{{{html-after-content}}}
</div>
<div id="mw-navigation">
<h2>{{msg-navigation-heading}}</h2>
<div id="p-logo" class="mw-portlet" role="banner">
<a href="{{link-mainpage}}">
{{#data-logos}}
{{#icon}}<img src="{{.}}" width="40" height="40">{{/icon}}
{{#wordmark}}<img src="{{src}}" width="{{width}}" height="{{height}}">{{/wordmark}}
{{^wordmark}}<h1>{{msg-sitetitle}}</h1>{{/wordmark}}
{{/data-logos}}
</a>
</div>
{{#data-search-box}}
<form action="{{form-action}}" role="search" class="mw-portlet" id="p-search">
<input type="hidden" name="title" value="{{page-title}}">
<h3>
<label for="searchInput">{{msg-search}}</label>
</h3>
{{{html-input}}}
{{{html-button-search}}}
</form>
{{/data-search-box}}
{{#data-portlets}}
<div id="user-tools">
{{#data-user-page}}{{>Portlet}}{{/data-user-page}}
{{#data-notifications}}{{>Portlet}}{{/data-notifications}}
{{#data-user-interface-preferences}}{{>Portlet}}{{/data-user-interface-preferences}}
{{#data-user-menu}}{{>Portlet}}{{/data-user-menu}}
</div>
<div id="page-tools">
{{#data-namespaces}}{{>Portlet}}{{/data-namespaces}}
{{#data-variants}}{{>Portlet}}{{/data-variants}}
{{#data-views}}{{>Portlet}}{{/data-views}}
{{#data-actions}}{{>Portlet}}{{/data-actions}}
</div>
{{/data-portlets}}
<div id="site-navigation">
{{#data-portlets-sidebar.data-portlets-first}}{{>Portlet}}{{/data-portlets-sidebar.data-portlets-first}}
{{#data-portlets-sidebar.array-portlets-rest}}{{>Portlet}}{{/data-portlets-sidebar.array-portlets-rest}}
{{#data-portlets.data-languages}}{{>Portlet}}{{/data-portlets.data-languages}}
</div>
</div>
{{#data-footer}}{{>Footer}}{{/data-footer}}
</div>