Team:BioscienceDragons AZ/Help

From 2013hs.igem.org

(Difference between revisions)
(Blanked the page)
 
(17 intermediate revisions not shown)
Line 1: Line 1:
-
<html>
 
-
    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
 
-
    <script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js"></script>
 
-
    <script src="http://www.apixeloff.com/bio/bio.js" language="javascript"></script>
 
-
    <link href='http://www.apixeloff.com/bio/style.css' rel='stylesheet' type='text/css' />
 
-
    <div id="header">
 
-
        <ul id="nav">
 
-
            <li><a href="/Team:BioscienceDragons_AZ">Home</a></li>
 
-
        </ul>
 
-
        <div class="clear"></div>
 
-
    </div>
 
-
</html>
 
-
[[Category:Bioscience Dragons]]
 
-
 
-
{{Infobox
 
-
| title = Home of testing
 
-
| main = [[File:Haoze.jpg|thumb|none|Woah]] Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam fringilla leo ultricies, lacinia lorem sed, sagittis lacus. Nullam tempor ultrices ligula, id posuere sapien lobortis vel. Suspendisse velit ante, pulvinar nec odio quis, eleifend rutrum arcu. Fusce in arcu non nunc vehicula lacinia. Quisque non leo facilisis, bibendum urna a, ultrices diam. Ut eu tristique ante. Nulla facilisi.
 
-
}}
 
-
 
-
{{Infobox
 
-
| title = Home of testing
 
-
| main = We love to cook!
 
-
}}
 
-
 
-
The following information, while on a page called "Test", is actually tips and help on how to accomplish tasks in this Wiki, specifically within the way it has been custom coded for BioscienceDragons AZ!
 
-
 
-
==How to add a page to the navigation==
 
-
All you have to do to add a page to the navigation is to add a new "top level" page to your namespace.
 
-
 
-
Any page someone creates on your team needs to start with
 
-
<pre>
 
-
/Team:BioscienceDragons_AZ
 
-
</pre>
 
-
 
-
To add a new page, you'd just add a /, then the page name, like this page is title "Test" and its URL is
 
-
<pre>
 
-
/Team:BioscienceDragons_AZ/Test
 
-
</pre>
 
-
 
-
By doing this, it automatically added a new element to the navigation called "Test".
 
-
 
-
At this time, it doesn't add sub page, like
 
-
<pre>
 
-
/Team:BioscienceDragons_AZ/Test/Subpage
 
-
</pre>
 
-
 
-
However, there are plans for it to in the future.
 
-
 
-
''Notice''
 
-
 
-
Wikimedia using a caching system that takes a few minutes to refresh some things. Because of this, you will not see your new page in the navigation unless they refresh their cache. I've noticed this could take up to 15 minutes or so.
 
-
 
-
==How To Make an Infobox==
 
-
To make the first side box, I used the following code...
 
-
 
-
<pre>
 
-
{{Infobox
 
-
| title = Home of testing
 
-
| main = [[File:Haoze.jpg|thumb|none|Woah]] Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam fringilla leo ultricies, lacinia lorem sed, sagittis lacus. Nullam tempor ultrices ligula, id posuere sapien lobortis vel. Suspendisse velit ante, pulvinar nec odio quis, eleifend rutrum arcu. Fusce in arcu non nunc vehicula lacinia. Quisque non leo facilisis, bibendum urna a, ultrices diam. Ut eu tristique ante. Nulla facilisi.
 
-
}}
 
-
</pre>
 
-
 
-
 
-
The first line starts the ''Infobox'' template.
 
-
 
-
<pre>
 
-
{{Infobox
 
-
</pre>
 
-
 
-
The second line passed the title to the template
 
-
 
-
<pre>
 
-
| title = Home of testing
 
-
</pre>
 
-
 
-
The third line passes the main content to the template. Note that you can include other Wiki code, like the image.
 
-
 
-
<pre>
 
-
| main = [[File:Haoze.jpg|thumb|none|Woah]] Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam fringilla leo ultricies, lacinia lorem sed, sagittis lacus. Nullam tempor ultrices ligula, id posuere sapien lobortis vel. Suspendisse velit ante, pulvinar nec odio quis, eleifend rutrum arcu. Fusce in arcu non nunc vehicula lacinia. Quisque non leo facilisis, bibendum urna a, ultrices diam. Ut eu tristique ante. Nulla facilisi.
 
-
</pre>
 
-
 
-
Finally, close the opening curly brackets so Wiki knows you're done!
 
-
 
-
<pre>
 
-
}}
 
-
</pre>
 
-
 
-
==How to remove the Table of Contents==
 
-
To remove the table of contents, add the following line to the top of the page
 
-
<pre>
 
-
__NOTOC__
 
-
</pre>
 
-
 
-
==How to create a new Bioscience Dragons page==
 
-
First, change the URL to reflect the section you should be...
 
-
Then it'll say the page doesn't exist, and give you the option to edit it.
 
-
Once you start editing, begin by copying and pasting this code into the top.
 
-
<pre>
 
-
<html>
 
-
    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
 
-
    <script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js"></script>
 
-
    <script src="http://www.apixeloff.com/bio/bio.js" language="javascript"></script>
 
-
    <link href='http://www.apixeloff.com/bio/style.css' rel='stylesheet' type='text/css' />
 
-
    <div id="header">
 
-
        <ul id="nav">
 
-
            <li><a href="/Team:BioscienceDragons_AZ">Home</a></li>
 
-
        </ul>
 
-
        <div class="clear"></div>
 
-
    </div>
 
-
</html>
 
-
</pre>
 
-
 
-
After that, you can add Wiki markup as you please.
 
-
 
-
==How to create a link==
 
-
<pre>[[Team:BioscienceDragons_AZ]]</pre>
 
-
 
-
Example: [[Team:BioscienceDragons_AZ/Test/Subtest]]
 

Latest revision as of 20:18, 21 June 2013