Skip to content
Snippets Groups Projects
calendar.html 1.29 KiB
Newer Older
  • Learn to ignore specific revisions
  • Torben Böhnke's avatar
    Torben Böhnke committed
    <!DOCTYPE html>
    <html lang="de">
    <head>
      <meta charset="utf-8">
      <title>Calendar</title>
      <script src="javascripts/ical.js"></script> <!-- calls ical.js library to parse the ics-data from the calendar file into data the fullcalendar-library can work with -->
      <script src="javascripts/index.global.min.js"></script> <!-- calls the fullcalendar.js library -->
      <link rel="stylesheet" href="stylesheets/base/variables.css"> <!-- this calls the variables holding the "core"-Design for the entire Website like colors-codes etc. -->
      <link rel="stylesheet" href="stylesheets/base/font.css"> <!-- this calls the font -->
      <link rel="stylesheet" href="stylesheets/components/contact-form.css"> <!-- this calls the general Design for the contact-forms -->
      <link rel="stylesheet" href="stylesheets/components/calender.css"> <!-- this calls the specific Design for the calendar, and can use the variables of the file above -->
    </head>
    <body>
      <div class="calendar-wrapper">
        <div id='form-container'></div> <!-- this div holds the contact form -->
        <div id='calendar' style="border: none;"></div> <!-- this div holds the calendar -->
      </div>
      <script src="javascripts/ics_calendar.js"></script> <!-- this calls the js that is responsible for everything around the calendar and contact form -->
    </body>
    </html>