diff --git a/gulpfile.js b/gulpfile.js index 0c2421bed..68595bded 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -27,6 +27,7 @@ var sources = { 'css/badge_only.css': {src: 'bower_components/sphinx-rtd-theme/sphinx_rtd_theme/static/css/badge_only.css'}, 'css/theme.css': {src: 'bower_components/sphinx-rtd-theme/sphinx_rtd_theme/static/css/theme.css'}, + 'font/Lato-BoldItalic.ttf': {src: 'bower_components/lato-googlefont/Lato-BoldItalic.ttf'}, 'font/Lato-Bold.ttf': {src: 'bower_components/lato-googlefont/Lato-Bold.ttf'}, 'font/Lato-Regular.ttf': {src: 'bower_components/lato-googlefont/Lato-Regular.ttf'}, 'font/Lato-Italic.ttf': {src: 'bower_components/lato-googlefont/Lato-Italic.ttf'}, diff --git a/readthedocs/core/static/core/font/Lato-BoldItalic.ttf b/readthedocs/core/static/core/font/Lato-BoldItalic.ttf new file mode 100644 index 000000000..a3b8e3322 Binary files /dev/null and b/readthedocs/core/static/core/font/Lato-BoldItalic.ttf differ diff --git a/readthedocs/core/static/core/fonts b/readthedocs/core/static/core/fonts new file mode 120000 index 000000000..333252721 --- /dev/null +++ b/readthedocs/core/static/core/fonts @@ -0,0 +1 @@ +font \ No newline at end of file diff --git a/readthedocs/core/storage.py b/readthedocs/core/storage.py index 716f59c0f..7c5e0f9d1 100644 --- a/readthedocs/core/storage.py +++ b/readthedocs/core/storage.py @@ -17,4 +17,4 @@ class MediaAzureStorage(HashedFilesMixin, AzureStorage): * Uploads them to our Azure container """ - azure_container = getattr(settings, 'AZURE_BUILD_STORAGE_CONTAINER', None) or 'media' + azure_container = getattr(settings, 'AZURE_MEDIA_STORAGE_CONTAINER', None) or 'media'