Fandom Developers Wiki
Advertisement

This code lists all of the admins in the wiki.

Installation

Template:Script Install/ImportJS

Use

Add an empty container with the id "admin-list" to the page(s):

<div id="admin-list"></div>

Design

The code fills your container with an unordered list. Neither ul nor li elements, nor the actual links are styled in any way. That's up to you. You could style them as a comma-separated list e.g.:

#admin-list ul {
    list-style: none; 
    margin: 0;
    padding: 0;
}
#admin-list ul li {
    display: inline;
}
#admin-list ul li::after {
    content: ", ";
}
#admin-list ul li:last-child::after {
    content: "";
}
Advertisement