Working With Group Websites
| STEP | PROCESS |
Step 1: Setting up |
You need to be able to log in to apollo.physics.tamu.edu in order to access any webpages. This requires several things:
|
Step 2: Learning HTML coding |
You will need to know how to operate in a UNIX/LINUX command-line system to navigate in apollo and know how to write HTML to create/modify the webpages. TAMU usually has LINUX workshops every semester, or you can find information online. You can use the following guides to take get started:
Somewhat extensive lessons and references for HTML and other website code |
Step 3: Group Pages |
(This section is mostly for the group webmaster)
If you are new to HTML, you can create new pages by copying the source code of existing pages into a new file and editing in new content (in the new file!). If you're able to create pages from scratch, just remember to include things like links to site indices, 'homepage' buttons, etc. Be sure you also set the file permissions so other group members can edit the page as well (e.g. chmod 775 filename in your terminal). When editing pages in apollo using vi (or something similar), remember that once you save over a file, there's no easy way to undo whatever changes you made (though there are backups). If you are worried about messing up a page, you can just copy and save the original source code somewhere, then make edits, and then--should you break something and not know how to fix it--just paste in the code you saved originally to get back to the original unedited webpage. Note that we also try to keep track of when pages have been updated (see the bottom). Some pages have scripts currently set to update automatically; to do this, insert <!--#echo var="LAST_MODIFIED"--> in your html (note that you probably won't see this if you view the source code in a browser; check the original). See this page for a bit more information, including formatting. (Some pages are currently set manually, as the updating code we used previously didn't always work.) NOTE: If you want to use one of your own text editors with its own window instead of using vi or nano in the terminal, you'll have to mount the directories from apollo into your own computer's space.
|