Skip to content

Descent098/ignite-site-2019

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

80 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Schulich Ignite Website

Here is all the code for the schulich ignite website it's hosted on github pages, uses ionos for name registration, and cloudflare for DNS.

DNS

Domain Name Registrar

Updating Slides

Where to upload

To update the slides simply put the content in the folder for current term (i.e. assets/winter_2020) with the naming convention lecture_<number>.pptx.

How to update HTML

Then go to ~line 90 in the index.html file and find the right lecture number, then uncomment it and move the comment down one lecture. For example if we are on lecture 4 and are going into lecture 5 in winter 2020 it would look like this:

Before

...
<tr>
    <td>4
    </td>
    <td>Basic classes and arrays</td>
    <td><a href="assets/winter_2020/lecture_4.pptx">Download slides</a></td>
</tr>

<!--<tr>
    <td>5
    </td>
    <td>For and While loops</td>
    <td><a href="assets/winter_2020/lecture_5.pptx">Download slides</a></td>
</tr>

<tr>
    <td>6
    </td>
    <td>Functions</td>
    <td><a href="assets/winter_2020/lecture_6.pptx">Download Slides</a></td>
</tr>-->

After

...
<tr>
    <td>4
    </td>
    <td>Basic classes and arrays</td>
    <td><a href="assets/winter_2020/lecture_4.pptx">Download slides</a></td>
</tr>

<tr>
    <td>5
    </td>
    <td>For and While loops</td>
    <td><a href="assets/winter_2020/lecture_5.pptx">Download slides</a></td>
</tr>

<!--<tr>
    <td>6
    </td>
    <td>Functions</td>
    <td><a href="assets/winter_2020/lecture_6.pptx">Download Slides</a></td>
</tr>-->

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 50.9%
  • HTML 49.1%