74 lines
2.7 KiB
Markdown
74 lines
2.7 KiB
Markdown
#Template!
|
|
|
|
This is a very simple template for wiki pages! it should be quite readable, so feel free to copy and paste everything here for further wiki pages - I will!
|
|
|
|
I have also added some comments to explain exactly how the code was constructed. Make sure to check the source code to aid you in your contributions!
|
|
|
|
<!-- This section contains the table of contents. href defines the section of the page that clicking the navigation will redirect you to, and the stuff in li shows what actually results on the page. -->
|
|
##Table of Contents
|
|
<nav>
|
|
<ul>
|
|
<li><a href="#intro">Introduction</a></li>
|
|
<li><a href="#hbody">Body</a></li>
|
|
<li><a href="#related">Related Topics</a></li>
|
|
</ul>
|
|
</nav>
|
|
|
|
<!-- Heres an example of a section you will be redirected to. Notice the section id identical to the previously defined href. In this section, I also add a figure with a figcaption - a simple way of adding an image with a styled caption underneath. Adding images in html is very simple, just google it. -->
|
|
|
|
<section id="intro">
|
|
##Introduction
|
|
<figure style=" float: right">
|
|
<img src="http://up.thirdculture.top/RVeiKnrznp/mkozxqcsgoxc1.jpeg" alt="Sample Image" style="width: 300px; height: 200px;">
|
|
<figcaption style="font-style: italic; color: gray; font-size: 14px;">
|
|
Here's a relevant image you can attach of your topic!
|
|
</figcaption>
|
|
</figure>
|
|
|
|
|
|
This is an introduction. Introduce the topic of the page, such as the band, subculture, or venue. Write a short summary on the relevant information that you will go into further detail on in the rest of the page.
|
|
|
|
<!-- Nothing fancy here, just a body and some text. Note that the number of hashtags correlates with the appropriate heading level: 1 hashtag is a title, 2 is a subtitle, three is the first heading, so on and so forth. -->
|
|
<section id="body">
|
|
##Body
|
|
|
|
This is a sample body section. This could be: history, musical influences, characteristics, discography, etc. Anything thats just straight information.
|
|
|
|
<section id="related">
|
|
##Related Topics
|
|
|
|
These is a section for related topics. Keep this solely for redirects into other related wiki pages. For example, if writing about a punk band, you can put some of their contemporaries, their record label, and other related articles. This is essentially a redundant, centralized section for some of the blue link redirects used throughout the article.
|
|
|
|
example:
|
|
|
|
<!-- This style of bluelink will be very commonly used, as it is an easy way to redirect in markdown. make extensive use of this when developing your wiki to give a nice, interconnected feel, and avoid dead articles. -->
|
|
[test-redirect](https://thirdculture.top/wiki/test-redirect)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|