contact.html 2.38 KB
Newer Older
1 2
<%! from django.core.urlresolvers import reverse %>
<%namespace name='static' file='../static_content.html'/>
3

4
<%inherit file="../main.html" />
5

6 7
<%block name="title"><title>Contact edX</title></%block>

8 9
<section class="container about">
  <nav>
10 11 12 13
    <a href="${reverse('about_edx')}">Vision</a>
    <a href="${reverse('faq_edx')}">Faq</a>
    <a href="${reverse('press')}">Press</a>
    <a href="${reverse('contact')}" class="active">Contact</a>
14 15 16
  </nav>

  <section class="contact">
17
    <div class="photo">
18
      <img src="${static.url('images/contact-page.jpg')}">
19
    </div>
20
    <div class="contacts">
21
      <h2>Class Feedback</h2>
22
      <p>We are always seeking feedback to improve our courses. If you are an enrolled student and have any questions, feedback, suggestions, or any other issues specific to a particular class, please post on the discussion forums of that&nbsp;class.</p>
23

24
      <h2>General Inquiries and Feedback</h2>
25
      <p>If you have a general question about edX please email <a href="mailto:info@edx.org">info@edx.org</a>. To see if your question has already been answered, visit our <a href="${reverse('faq_edx')}">FAQ page</a>. You can also join the discussion on our <a href="http://www.facebook.com/EdxOnline">Facebook page</a>. Though we may not have a chance to respond to every email, we take all feedback into consideration.</p>
26

27
      <h2>Technical Inquiries and Feedback</h2>
28 29 30
      <p>If you have suggestions/feedback about the overall edX platform, or are facing general technical issues with the platform (e.g., issues with email addresses and passwords), you can reach us at <a href="mailto:technical@edx.org">technical@edx.org</a>. For technical questions, please make sure you are using a current version of Firefox or Chrome, and include browser and version in your e-mail, as well as screenshots or other pertinent details. If you find a bug or other issues, you can reach us at the following: <a href="mailto:bugs@edx.org">bugs@edx.org</a>.</p>

      <h2>Media</h2>
31
      <p>Please visit our <a href="${reverse('press')}">media/press page</a> for more information. For any media or press enquiries, please email <a href="mailto:press@edx.org">press@edx.org</a>.</p>
32 33

      <h2>Universities</h2>
34
      <p>If you are a university wishing to collaborate or with questions about edX, please email <a href="mailto:university@edx.org">university@edx.org</a>.</p>
35

36 37 38 39
    </div>
  </section>
</section>