media-kit.html 5.69 KB
Newer Older
1
<%! from django.utils.translation import ugettext as _ %>
2 3 4
<%namespace name='static' file='../static_content.html'/>
<%inherit file="../main.html" />

5
<%block name="title"><title>${_("{edX} Media Kit").format(edX="edX")}</title></%block>
6

7
<section class="mediakit">
8
  <h1>${_("{edX} Media Kit").format(edX="edX")}</h1>
9

10 11 12 13 14
  <hr />

  <div class="wrapper wrapper-mediakit">
    <section class="introduction">
      <header>
15
        <h2>${_("Welcome to the <span class=\"org-name\">{edX}</span> Media Kit").format(edX="edX")}</h2>
16 17 18
      </header>

      <article>
19 20 21
        <p>${_("Need images for a news story?  Feel free to download high-resolution versions of the photos below by clicking on the thumbnail.  Please credit {edX} in your use.").format(edX="edX")}</p>
        <p>${_("We\'ve included visual guidelines on how to use the {edX} logo within the download zip which also includes Adobe Illustrator and eps versions of the logo. ").format(edX="edX")}</p>
        <p>${_("For more information about {edX}, please contact <strong>{dan_oconnell}, Associate Director of Communications</strong> via <a href=\"mailto:oconnell@edx.org?subject=edX Information Request (from Media Kit)\">oconnell@edx.org</a>.").format(dan_oconnell="Dan O'Connell", edX="edX")}</p>
22 23 24
      </article>

      <aside>
25
        <h3>${_("The <span class=\"org-name\">{edX}</span> Logo").format(edX="edX")}</h3>
26
        <figure class="logo">
27
          <a rel="asset" class="action action-download" href="${static.url('files/edx-identity.zip')}">
28
            <img src="${static.url('images/edx.png')}" />
29 30
            <figcaption>${_(".zip file containing Adobe Illustrator and .eps formats of logo alongside visual guidelines for use")}</figcaption>
            <span class="note">${_("Download (.zip file)")}</span>
31 32 33 34
          </a>
        </figure>
      </aside>

35
    </section>
36 37 38

    <section class="library">
      <header>
39
        <h2>${_("The <span class=\"org-name\">{edX}</span> Media Library").format(edX="edX")}</h2>
40 41 42 43 44 45
      </header>

      <article>
        <ul class="listing listing-media-items">
          <li>
            <figure>
46
              <a rel="asset" class="action action-download" href="${static.url('images/press-kit/anant-agarwal_high-res.jpg')}">
47
                <img src="${static.url('images/press-kit/anant-agarwal_x200.jpg')}"/>
48
                <figcaption>${_("{anant}, President of {edX}, in his office in Cambridge, MA. The computer screen behind him shows a portion of a video lecture from 6.002x, Circuits &amp; Electronics, the MITx course taught by Agarwal.").format(edX="edX", anant="Anant Agarwal")}</figcaption>
49
                <span class="note">${_("Download (High Resolution Photo)")}</span>
50 51 52 53 54
              </a>
            </figure>
          </li>
          <li>
            <figure>
55
              <a rel="asset" class="action action-download" href="${static.url('images/press-kit/anant-tablet_high-res.jpg')}">
56
                <img src="${static.url('images/press-kit/anant-tablet_x200.jpg')}"/>
57
                <figcaption>${_("{anant} creating a tablet-based lecture for 6.002x, Circuits & Electronics.").format(anant="Anant Agarwal")}</figcaption>
58
                <span class="note">${_("Download (High Resolution Photo)")}</span>
59 60 61 62 63
              </a>
            </figure>
          </li>
          <li>
            <figure>
64
              <a rel="asset" class="action action-download" href="${static.url('images/press-kit/piotr-mitros_high-res.jpg')}">
65
                <img src="${static.url('images/press-kit/piotr-mitros_x200.jpg')}"/>
66
                <figcaption>${_("{piotr}, Chief Scientist at {edX}, uses a Rostrum camera to create an overhead camera-based lecture. During this process, voice and video are recorded for an interactive tutorial.").format(edX="edX", piotr="Piotr Mitros")}</figcaption>
67
                <span class="note">${_("Download (High Resolution Photo)")}</span>
68 69 70 71 72
              </a>
            </figure>
          </li>
          <li>
            <figure>
73
              <a rel="asset" class="action action-download" href="${static.url('images/press-kit/edx-video-editing_high-res.jpg')}">
74
                <img src="${static.url('images/press-kit/edx-video-editing_x200.jpg')}"/>
75
                <figcaption>${_("One of {edX}\'s video editors edits a lecture in a video suite.").format(edX="edX")}</figcaption>
76
                <span class="note">${_("Download (High Resolution Photo)")}</span>
77 78 79 80 81
              </a>
            </figure>
          </li>
          <li>
            <figure>
82
              <a rel="asset" class="action action-download" href="${static.url('images/press-kit/6.002x_high-res.png')}">
83
                <img src="${static.url('images/press-kit/6.002x_x200.jpg')}"/>
84 85
                <figcaption>${_("Screenshot of 6.002x Circuits and Elecronics course.")}</figcaption>
                <span class="note">${_("Download (High Resolution Photo)")}</span>
86 87 88 89 90
              </a>
            </figure>
          </li>
          <li>
            <figure>
91
              <a rel="asset" class="action action-download" href="${static.url('images/press-kit/3.091x_high-res.png')}">
92
                <img src="${static.url('images/press-kit/3.091x_x200.jpg')}"/>
93 94
                <figcaption>${_("Screenshot of 3.091x: Introduction to Solid State Chemistry.")}</figcaption>
                <span class="note">${_("Download (High Resolution Photo)")}</span>
95 96 97 98 99 100 101
              </a>
            </figure>
          </li>
        </ul>
      </article>
    </section>
  </div>
102
</section>
103 104 105 106 107 108 109 110 111

<%block name="js_extra">
   <script type="text/javascript">
      $('a[rel="external"],a[rel="asset"]').click( function() {
        window.open( $(this).attr('href') );
        $(this).attr('title','This link will open a new browser window/tab')
        return false;
      });
   </script>
112
</%block>