MOOCit Docs
English
English
  • Introduction
  • Getting Started with MOOCit
  • Take Your First Demo Course in Learner View
  • Studio vs LMS
  • Set Your Platform Language
  • Course Development
    • Create a New Course
      • Course Creation Form
    • Course Set-Up
      • Course Pacing and Schedule
      • Course Name, Description and Image
      • Add a Course 'About' Video
      • Additional Course Run Info
      • Prerequisite Course
      • Course Entrance Exam
    • Course Structure
      • Building the Course Outline - Video Tutorial
    • Course Content Visibility and Access
      • Subsection Prerequisites
      • Hiding Sections and/or Subsections
      • Hide a Subsection after Due Date
  • Course Properties
    • Manage Course Visibility
    • Make a Course Private
    • Course Grading Configuration
    • Delete a Course
    • Course Updates
    • Course Handouts
    • Certificate Configuration
    • Modify the Name of a Course (legacy)
  • Course Components
    • Common Problem Type
      • Checkboxes, Dropdown, Numerical & Text input
      • Add Multiple Questions
      • Add an explanation (Show Answer)
      • Hints and Feedback
      • About; Question Title, Header, Prompt & Tips
      • Common Problem Settings
    • Images
    • Advanced Components
    • SCORM file
    • PDF File
    • PDF viewer without download / print option
    • Downloadable Document Button
    • Surveys & Polls
    • Video - Youtube
    • Video - Vimeo
    • Staff Graded Assignment
    • Tables
    • Word Cloud
    • iFrame (Genial.ly, Prezi, etc.)
    • ZOOM Meeting (Dedicated Instance)
    • ZOOM (SaaS Integration)
    • H5P
  • Instructors
    • Manage Course Team
      • Add new team member
      • Add a Discussion Moderator/Admin
      • FAQ
    • Enroll / Unenroll Learners
    • Download Learner List
    • Download Learner Grades
    • Reset Learner Exercise Attempts
    • Email Learners
  • Advanced
    • Discussion Forums
      • Hide discussion forum
    • Configuration of Badges
    • Duplicate a Course (Import / Export a Course)
    • Using Randomized Content Blocks
    • Pointing on a Picture Question
    • Tips and Warnings
    • Learner Cohorts + Content Groups
      • Enabling and Configuring Cohorts
      • Create Cohort Specific Content with Content Groups
      • Assign Cohorts to Content Groups
      • Dividing Discussions by Cohort
  • Rest API
    • API home
    • Enrollments
    • Completion
    • Grades
  • Data + Analytics
    • Opening CSV reports with Excel
Propulsé par GitBook
Sur cette page
  • Course Handouts in Learner View (LMS)
  • How to add a Course Handout
  • Course Handout Panel HTML Templates

Cet article vous a-t-il été utile ?

  1. Course Properties

Course Handouts

How to add Course Handouts

PrécédentCourse UpdatesSuivantCertificate Configuration

Dernière mise à jour il y a 4 ans

Cet article vous a-t-il été utile ?

Course Handouts in Learner View (LMS)

Course Handouts are available for learners to download on the Course Outline page. Course Handouts appears in a panel below the course description. Also in the Course Handouts panel, you can add social medial links in case you want learners to join your social pages. You can add as many downloadable handouts here as you want.

How to add a Course Handout

Course handouts are accessible from Studio > Content > Updates

In the right panel select to Edit the course handout section and an html editor will appear. In the editor, type your update using HTML formatting. If you aren't familiar with HTML, you can copy & paste one of the following templates:

Course Handout Panel HTML Templates

Bulleted List of Course Handouts

<p>
<li><a href="/static/examplefile.pdf" target="_blank">Course Curriculum</a></li>
 <li><a href="/static/examplefile.pdf" target="_blank">Syllabus</a></li>
 <li><a href="/static/examplefile.pdf" target="_blank">Glossary</a> </li></p> 

List of Course Handouts

<p>
  <a href="/static/examplefile.pdf" target="_blank">Course Curriculum</a> <br>
 <a href="/static/examplefile.pdf" target="_blank">Syllabus</a><br>
 <a href="/static/examplefile.pdf" target="_blank">Glossary</a> </p> 

Replace Download Files + Text:

  1. Open Content > Files & Uploads in a separate tab or window

  2. Select to copy the Studio URL for the file you want to add

  3. Return to Content > Updates page

  4. Replace the code /static/examplefile.pdf with the URL you just copied

  5. Replace the text that appears just between the final " of the URL and the closing </a>

  6. Select to Save

Regular List with Social Media Links

<p>
  <a href="/static/examplefile.pdf" target="_blank">Course Curriculum</a> <br>
 <a href="/static/examplefile.pdf" target="_blank">Syllabus</a><br>
 <a href="/static/examplefile.pdf" target="_blank">Glossary</a> </p> 
<br>
<a class="social-icon" target="_blank" href="https://www.facebook.com/academiedugout"><i class="fa fa-facebook"></i></a>
<a class="social-icon" target="_blank" href="https://twitter.com/academiedugout"><i class="fa fa-twitter"></i></a>
<a class="social-icon" target="_blank" href="https://www.instagram.com/academiedugout/"><i class="fa fa-instagram"></i></a>
<a class="social-icon" target="_blank" href="https://www.pinterest.fr/academiedugout/"><i class="fa fa-pinterest"></i></a>
<a class="social-icon" target="_blank" href="https://www.youtube.com/user/academiedugout"><i class="fa fa-youtube"></i></a>
<br>
<br>
<style>
  .social-icon {
  	padding: 4px 10px;
  }
</style>

Simply replace the social media links in the HTML code with your own.