Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
40aaaeda
Commit
40aaaeda
authored
Jul 23, 2012
by
David Ormsbee
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #254 from MITx/uc_berkeley_press
UC berkeley press
parents
268ab286
c41433f6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
25 additions
and
7 deletions
+25
-7
lms/static/sass/multicourse/_press_release.scss
+10
-0
lms/templates/feed.rss
+1
-1
lms/templates/index.html
+1
-1
lms/templates/static_templates/press_releases/MIT_and_Harvard_announce_edX.html
+2
-2
lms/templates/static_templates/press_releases/UC_Berkeley_joins_edX.html
+0
-0
lms/urls.py
+11
-3
No files found.
lms/static/sass/multicourse/_press_release.scss
View file @
40aaaeda
...
...
@@ -18,6 +18,16 @@
margin-bottom
:
30px
;
text-align
:
center
;
}
li
{
color
:
$base-font-color
;
font
:
normal
1em
/
1
.6em
$serif
;
margin
:
0px
;
}
li
+
li
{
margin-top
:
20px
;
}
>
article
{
border
:
1px
solid
rgb
(
220
,
220
,
220
);
...
...
lms/templates/feed.rss
View file @
40aaaeda
...
...
@@ -11,7 +11,7 @@
<id>
tag:www.edx.org,2012:Post/3
</id>
<published>
2012-07-16T14:08:12-07:00
</published>
<updated>
2012-07-16T14:08:12-07:00
</updated>
<link
type=
"text/html"
rel=
"alternate"
href=
"
#
"
/>
<link
type=
"text/html"
rel=
"alternate"
href=
"
${reverse('press/uc-berkeley-joins-edx')}
"
/>
<title>
UC Berkeley joins edX
</title>
<content
type=
"html"
>
<
img src=
"
${static.url('images/press/edx_logo_108x81.jpeg')}
"
/
>
<
p
>
edX broadens course offerings
<
/p
>
</content>
...
...
lms/templates/index.html
View file @
40aaaeda
...
...
@@ -121,7 +121,7 @@
</section>
<section
class=
"press-links"
>
<h3>
edX in the News:
</h3>
##
<a
href=
"${reverse('press
release
')}"
>
The edX Press Release
</a>
##
<a
href=
"${reverse('press
/mit-and-harvard-announce-edx
')}"
>
The edX Press Release
</a>
<a
target=
"_blank"
href=
"http://www.nytimes.com/2012/07/20/education/edlife/anant-agarwal-discusses-free-online-courses-offered-by-a-harvard-mit-partnership.html"
>
New York Times
</a>
,
<a
target=
"_blank"
href=
"http://www.bostonglobe.com/magazine/2012/07/14/anant-agarwal-believes-online-education-from-mit-and-harvard-should-available-all/Af0kX44dPqpBKRV2IOSjPP/story.html"
target=
"_blank"
>
Boston Globe
</a>
,
<a
target=
"_blank"
href=
"http://www.huffingtonpost.co.uk/2012/06/20/harvard-and-mit-create-edx-free-university-courses_n_1612143.html?utm_hp_ref=uk"
>
Huffington Post
</a>
,
...
...
lms/templates/static_templates/press
release
.html
→
lms/templates/static_templates/press
_releases/MIT_and_Harvard_announce_edX
.html
View file @
40aaaeda
<
%!
from
django
.
core
.
urlresolvers
import
reverse
%
>
<
%
inherit
file=
"../main.html"
/>
<
%
inherit
file=
"../
../
main.html"
/>
<
%
namespace
name=
'static'
file=
'../static_content.html'
/>
<
%
namespace
name=
'static'
file=
'../
../
static_content.html'
/>
<
%
block
name=
"title"
><title>
MIT and Harvard announce edX
</title></
%
block>
...
...
lms/templates/static_templates/press_releases/UC_Berkeley_joins_edX.html
0 → 100644
View file @
40aaaeda
This diff is collapsed.
Click to expand it.
lms/urls.py
View file @
40aaaeda
...
...
@@ -64,8 +64,7 @@ urlpatterns = ('',
{
'template'
:
'faq.html'
},
name
=
"faq_edx"
),
url
(
r'^help$'
,
'static_template_view.views.render'
,
{
'template'
:
'help.html'
},
name
=
"help_edx"
),
url
(
r'^pressrelease$'
,
'static_template_view.views.render'
,
{
'template'
:
'pressrelease.html'
},
name
=
"pressrelease"
),
url
(
r'^tos$'
,
'static_template_view.views.render'
,
{
'template'
:
'tos.html'
},
name
=
"tos"
),
url
(
r'^privacy$'
,
'static_template_view.views.render'
,
...
...
@@ -74,10 +73,19 @@ urlpatterns = ('',
{
'template'
:
'copyright.html'
},
name
=
"copyright"
),
url
(
r'^honor$'
,
'static_template_view.views.render'
,
{
'template'
:
'honor.html'
},
name
=
"honor"
),
#Press releases
url
(
r'^press/mit-and-harvard-announce-edx$'
,
'static_template_view.views.render'
,
{
'template'
:
'press_releases/MIT_and_Harvard_announce_edX.html'
},
name
=
"press/mit-and-harvard-announce-edx"
),
url
(
r'^press/uc-berkeley-joins-edx$'
,
'static_template_view.views.render'
,
{
'template'
:
'press_releases/UC_Berkeley_joins_edX.html'
},
name
=
"press/uc-berkeley-joins-edx"
),
# Should this always update to point to the latest press release?
(
r'^pressrelease$'
,
'django.views.generic.simple.redirect_to'
,
{
'url'
:
'/press/uc-berkeley-joins-edx'
}),
(
r'^favicon\.ico$'
,
'django.views.generic.simple.redirect_to'
,
{
'url'
:
'/static/images/favicon.ico'
}),
(
r'^favicon\.ico$'
,
'django.views.generic.simple.redirect_to'
,
{
'url'
:
'/static/images/favicon.ico'
}),
# TODO: These urls no longer work. They need to be updated before they are re-enabled
# url(r'^send_feedback$', 'util.views.send_feedback'),
# url(r'^reactivate/(?P<key>[^/]*)$', 'student.views.reactivation_email'),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment