Files
edx-platform/docs/en_us/olx/source/about/overview.rst
2014-10-03 11:18:41 -04:00

91 lines
2.9 KiB
ReStructuredText

.. _Course Overview:
#################################
Course Overview
#################################
Each course must have an overview page. Students see the overview page when
searching and registering for the course.
*********************************************
Create the Overview File
*********************************************
You create an HTML file called ``overview.html`` in the ``overview`` directory.
*********************************************
Overview Sections
*********************************************
The ``overview.html`` must contain specific sections.
Each section is wrapped in ``section`` tags. The value of the ``class``
attribute specifies what the section is for and how it is displayed to
students. Within the ``section`` tags, you use valid HTML.
The overview must contain sections named the following:
* ``about``
* ``prerequisites``
* ``course-staff``
* ``teacher``
* ``faq``
.. _A Template For Course Overview:
************************************************
A Template For Your Course Overview
************************************************
Replace the placeholders in the following template with your information.
.. code-block:: html
<section class="about">
<h2>About This Course</h2>
<p>Include your long course description here. The long course description
should contain 150-400 words.</p>
<p>This is paragraph 2 of the long course description. Add more paragraphs
as needed. Make sure to enclose them in paragraph tags.</p>
<section>
<section class="prerequisites">
<h2>Prerequisites</h2>
<p>Add information about class prerequisites here.</p>
</section>
<section class="course-staff">
<h2>Course Staff</h2>
<article class="teacher">
<div class="teacher-image">
<!-- Replace the path below with the path to your faculty image. -->
<img src="/c4x/edX/edX101/asset/Placeholder_FacultyImage.jpg"
align="left" style="margin:0 20 px 0"/>
</div>
<h3>Staff Member</h3>
<p>Biography of instructor/staff member</p>
</article>
<article class="teacher">
<div class="teacher-image">
<img src="/c4x/edX/edX101/asset/Placeholder_FalcutyImage.jpg"/>
</div>
<h3>Staff Member Name</h3>
<p>Biography of instructor/staff member</p>
</article>
</section>
<section class="faq">
<section class="responses">
<h2>Frequently Asked Questions</h2>
<article class="response">
<h3>Do I need to buy a textbook?</h3>
<p>No, a free online version of Chemistry: Principles, Patterns, and
Applications, First Edition by Bruce Averill and Patricia Eldredge
will be available, though you can purchase a printed version
(published by FlatWorld Knowledge) if you'd like.</p>
</article>
<article class="response">
<h3>Question 2?</h3>
<p>Answer 2.</p>
</article>
</section>
</section>