├── .gitignore ├── .travis.yml ├── LICENSE ├── Procfile ├── README.md ├── RELEASES.md ├── Vagrantfile ├── analytics ├── __init__.py ├── admin.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── create_ga_report.py │ │ └── update_page_analytics.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── tests.py └── utils.py ├── articles ├── __init__.py ├── admin.py ├── apps.py ├── fields.py ├── fixtures │ └── articlestest.json ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── inittwitterati.py │ │ ├── update_overlay_opacity.py │ │ └── updatetwitterati.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_articleauthorlink_author.py │ ├── 0003_initial_pages.py │ ├── 0004_headline.py │ ├── 0005_auto_20150626_1948.py │ ├── 0006_create_topics_page.py │ ├── 0007_auto_20150702_1954.py │ ├── 0008_create_categories.py │ ├── 0009_auto_20150706_1526.py │ ├── 0010_auto_20150706_1547.py │ ├── 0011_seriespage_subtitle.py │ ├── 0012_auto_20150707_2303.py │ ├── 0015_auto_20150715_1553.py │ ├── 0015_remove_articlepage_subtitle.py │ ├── 0016_create_colours.py │ ├── 0017_auto_20150715_1554.py │ ├── 0018_merge.py │ ├── 0019_auto_20150715_1948.py │ ├── 0020_auto_20150715_2006.py │ ├── 0021_auto_20150716_2116.py │ ├── 0022_create_feature_styles.py │ ├── 0023_auto_20150716_2129.py │ ├── 0024_auto_20150722_1928.py │ ├── 0025_auto_20150724_1517.py │ ├── 0025_auto_20150724_1721.py │ ├── 0026_auto_20150728_1823.py │ ├── 0026_merge.py │ ├── 0027_externalarticlelistpage.py │ ├── 0028_merge.py │ ├── 0029_auto_20150805_2109.py │ ├── 0029_auto_20150811_1924.py │ ├── 0030_articlecategory_include_main_image.py │ ├── 0030_auto_20150806_2136.py │ ├── 0031_auto_20150812_2002.py │ ├── 0031_merge.py │ ├── 0032_auto_20150813_1359.py │ ├── 0033_articlepage_last_updated.py │ ├── 0034_auto_20150813_1728.py │ ├── 0035_auto_20150813_1802.py │ ├── 0036_merge.py │ ├── 0037_articlepage_hide_author_block.py │ ├── 0038_auto_20150814_1826.py │ ├── 0038_auto_20150814_1920.py │ ├── 0039_auto_20150814_1922.py │ ├── 0040_merge.py │ ├── 0041_auto_20150814_2011.py │ ├── 0042_externalarticlelistpage_articles_per_page.py │ ├── 0043_auto_20150818_1833.py │ ├── 0044_articlelistpage_filter_for_visualizations.py │ ├── 0045_seriespage_include_main_image.py │ ├── 0046_articlepage_include_main_image_overlay.py │ ├── 0047_topiclistpage_articles_per_page.py │ ├── 0048_articlepage_interview.py │ ├── 0049_articlelistpage_filter_for_interviews.py │ ├── 0050_auto_20150901_2041.py │ ├── 0051_auto_20150903_0059.py │ ├── 0052_articlepage_full_bleed_image_size.py │ ├── 0053_auto_20150903_1738.py │ ├── 0054_seriespage_short_description.py │ ├── 0055_auto_20150903_2116.py │ ├── 0056_auto_20150903_2132.py │ ├── 0057_articlelistpage_filter.py │ ├── 0058_auto_20150904_0245.py │ ├── 0059_auto_20150923_1524.py │ ├── 0060_auto_20150925_2012.py │ ├── 0061_auto_20150928_1913.py │ ├── 0062_auto_20150930_1633.py │ ├── 0062_auto_20150930_1906.py │ ├── 0063_auto_20150930_1924.py │ ├── 0064_merge.py │ ├── 0065_make_pages_themeable.py │ ├── 0066_assign_theme_to_pages.py │ ├── 0067_auto_20151005_2045.py │ ├── 0068_auto_20151006_2148.py │ ├── 0069_articlebackgroundimagelink.py │ ├── 0070_auto_20151013_1900.py │ ├── 0071_auto_20151013_1911.py │ ├── 0072_auto_20151013_2006.py │ ├── 0073_auto_20151013_2024.py │ ├── 0074_auto_20151015_1726.py │ ├── 0075_auto_20151015_2022.py │ ├── 0076_articlepage_video_document.py │ ├── 0077_seriespage_video_document.py │ ├── 0078_articlepage_video.py │ ├── 0079_auto_20151126_1433.py │ ├── 0080_auto_20151126_1456.py │ ├── 0081_auto_20151126_1503.py │ ├── 0082_auto_20151208_2116.py │ ├── 0083_auto_20151208_2156.py │ ├── 0084_auto_20151209_0154.py │ ├── 0085_articlepage_json_file.py │ ├── 0086_articlepage_project.py │ ├── 0087_seriespage_project.py │ ├── 0088_responsearticlelink.py │ ├── 0089_auto_20161205_1426.py │ ├── 0090_auto_20171213_1849.py │ └── __init__.py ├── models.py ├── readme.md ├── templates │ └── articles │ │ ├── article_list_page.html │ │ ├── article_page.html │ │ ├── blocks │ │ ├── chapter.html │ │ ├── citation.html │ │ ├── columnar.html │ │ ├── document_block.html │ │ ├── endnote.html │ │ ├── fullbleed.html │ │ ├── heading.html │ │ ├── image_block.html │ │ ├── interactive.html │ │ ├── overflow.html │ │ ├── paragraph_block.html │ │ ├── pull_quote.html │ │ ├── quote.html │ │ ├── related_items_block.html │ │ └── sharable.html │ │ ├── external_article_list_page.html │ │ ├── external_article_page.html │ │ ├── includes │ │ ├── advanced-content.html │ │ ├── article-contributors.html │ │ ├── article-feature.html │ │ ├── article-metadata.html │ │ ├── article_teaser.html │ │ ├── author_blurb.html │ │ ├── end_notes.html │ │ ├── in_the_series.html │ │ ├── json-embed.html │ │ ├── related_articles.html │ │ ├── series-metadata.html │ │ ├── series_series_teaser.html │ │ ├── series_teaser.html │ │ ├── share_links.html │ │ └── story-content.html │ │ ├── series_list_page.html │ │ ├── series_page.html │ │ ├── topic_list_page.html │ │ └── topic_page.html ├── templatetags │ ├── __init__.py │ └── article_tags.py └── tests.py ├── caching ├── __init__.py ├── invalidate.py ├── models.py ├── templates │ └── wagtailadmin │ │ └── cache │ │ └── clear.html └── wagtail_hooks.py ├── content_notes ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_citation.py │ ├── 0003_auto_20150930_2002.py │ ├── 0004_auto_20151006_2134.py │ ├── 0005_auto_20151007_1902.py │ └── __init__.py ├── models.py ├── static │ └── content_notes │ │ └── js │ │ ├── end-note-chooser.js │ │ └── hallo-endnotelink-plugin.js ├── templates │ └── content_notes │ │ ├── chooser │ │ ├── choose.html │ │ ├── choose.js │ │ ├── chosen.js │ │ └── results.html │ │ ├── end_note_chooser.html │ │ └── endnotes │ │ ├── list.html │ │ ├── results.html │ │ └── type_index.html ├── urls.py ├── views │ ├── __init__.py │ ├── chooser.py │ └── endnotes.py ├── wagtail_hooks.py └── widgets.py ├── core ├── __init__.py ├── admin.py ├── apps.py ├── base.py ├── context_processors.py ├── feeds.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_create_home_page.py │ ├── 0003_set_homepage.py │ ├── 0004_homepage_featured_item.py │ ├── 0007_homepage_number_of_articles.py │ ├── 0008_auto_20150716_2138.py │ ├── 0009_homepage_number_of_columns_of_articles.py │ ├── 0010_auto_20150818_1942.py │ ├── 0011_sitedefaults.py │ ├── 0012_auto_20150819_1819.py │ ├── 0013_auto_20150903_0151.py │ ├── 0014_homepage_full_bleed_image_size.py │ ├── 0015_auto_20150903_1738.py │ ├── 0016_remove_homepage_number_of_columns_of_series.py │ ├── 0017_sitedefaults_contact_email.py │ ├── 0018_auto_20151002_2248.py │ ├── 0019_set_contact_email.py │ ├── 0020_assign_theme_to_homepage.py │ ├── 0021_streampage.py │ ├── 0022_auto_20151016_0320.py │ ├── 0023_update_contact_email.py │ └── __init__.py ├── models.py ├── static │ ├── css │ │ ├── _article.scss │ │ ├── _bootstrap.scss │ │ ├── _contributor.scss │ │ ├── _external.scss │ │ ├── _features.scss │ │ ├── _footer.scss │ │ ├── _header.scss │ │ ├── _homepage.scss │ │ ├── _job.scss │ │ ├── _main.scss │ │ ├── _mixins.scss │ │ ├── _newsletter.scss │ │ ├── _search.scss │ │ ├── _stream.scss │ │ ├── _variables.scss │ │ ├── bootstrap │ │ │ ├── _alerts.scss │ │ │ ├── _badges.scss │ │ │ ├── _breadcrumbs.scss │ │ │ ├── _button-groups.scss │ │ │ ├── _buttons.scss │ │ │ ├── _carousel.scss │ │ │ ├── _close.scss │ │ │ ├── _code.scss │ │ │ ├── _component-animations.scss │ │ │ ├── _dropdowns.scss │ │ │ ├── _forms.scss │ │ │ ├── _glyphicons.scss │ │ │ ├── _grid.scss │ │ │ ├── _input-groups.scss │ │ │ ├── _jumbotron.scss │ │ │ ├── _labels.scss │ │ │ ├── _list-group.scss │ │ │ ├── _media.scss │ │ │ ├── _mixins.scss │ │ │ ├── _modals.scss │ │ │ ├── _navbar.scss │ │ │ ├── _navs.scss │ │ │ ├── _normalize.scss │ │ │ ├── _pager.scss │ │ │ ├── _pagination.scss │ │ │ ├── _panels.scss │ │ │ ├── _popovers.scss │ │ │ ├── _print.scss │ │ │ ├── _progress-bars.scss │ │ │ ├── _responsive-embed.scss │ │ │ ├── _responsive-utilities.scss │ │ │ ├── _scaffolding.scss │ │ │ ├── _tables.scss │ │ │ ├── _theme.scss │ │ │ ├── _thumbnails.scss │ │ │ ├── _tooltip.scss │ │ │ ├── _type.scss │ │ │ ├── _utilities.scss │ │ │ ├── _variables.scss │ │ │ ├── _wells.scss │ │ │ └── mixins │ │ │ │ ├── _alerts.scss │ │ │ │ ├── _background-variant.scss │ │ │ │ ├── _border-radius.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _center-block.scss │ │ │ │ ├── _clearfix.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _gradients.scss │ │ │ │ ├── _grid-framework.scss │ │ │ │ ├── _grid.scss │ │ │ │ ├── _hide-text.scss │ │ │ │ ├── _image.scss │ │ │ │ ├── _labels.scss │ │ │ │ ├── _list-group.scss │ │ │ │ ├── _nav-divider.scss │ │ │ │ ├── _nav-vertical-align.scss │ │ │ │ ├── _opacity.scss │ │ │ │ ├── _pagination.scss │ │ │ │ ├── _panels.scss │ │ │ │ ├── _progress-bar.scss │ │ │ │ ├── _reset-filter.scss │ │ │ │ ├── _resize.scss │ │ │ │ ├── _responsive-visibility.scss │ │ │ │ ├── _size.scss │ │ │ │ ├── _tab-focus.scss │ │ │ │ ├── _table-row.scss │ │ │ │ ├── _text-emphasis.scss │ │ │ │ ├── _text-overflow.scss │ │ │ │ └── _vendor-prefixes.scss │ │ ├── font-awesome.min.css │ │ ├── opencanada.scss │ │ └── print.scss │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ ├── img │ │ ├── assets │ │ │ ├── R2P-at-10.png │ │ │ ├── R2P.png │ │ │ ├── diplomacy-unbound.png │ │ │ ├── nato.png │ │ │ ├── putin.png │ │ │ ├── related-article.png │ │ │ ├── series-article.png │ │ │ ├── spy.png │ │ │ └── tennis-diplomacy.png │ │ ├── bgc-footer-logo.png │ │ ├── canadas-hub.png │ │ ├── cic-footer-logo.png │ │ ├── cigi-footer-logo.png │ │ ├── facebook-25.png │ │ ├── favicon.png │ │ ├── oc-default-social-logo.png │ │ ├── opencanada-logo-square.png │ │ ├── opencanada-logo-white.png │ │ ├── opencanada-logo.png │ │ ├── opencanada-mark.png │ │ ├── opencanada-white-st.png │ │ └── twitter-25.png │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap │ │ ├── affix.js │ │ ├── alert.js │ │ ├── button.js │ │ ├── carousel.js │ │ ├── collapse.js │ │ ├── dropdown.js │ │ ├── modal.js │ │ ├── popover.js │ │ ├── scrollspy.js │ │ ├── tab.js │ │ ├── tooltip.js │ │ └── transition.js │ │ ├── editor │ │ ├── hallo-modallink-plugin.js │ │ └── hallo-supsub-plugin.js │ │ ├── features.js │ │ ├── header.js │ │ ├── menu.js │ │ ├── opencanada.js │ │ ├── search.js │ │ └── sharing.js ├── templates │ ├── 403.html │ ├── 404.html │ ├── 500.html │ ├── base.html │ ├── basic_site │ │ ├── basic_stream_page.html │ │ └── search_results.html │ ├── core │ │ ├── block_forms │ │ │ └── placeholder.html │ │ ├── footer.html │ │ ├── header.html │ │ ├── home_page.html │ │ ├── includes │ │ │ ├── section-external-features.html │ │ │ ├── section-fullbleed.html │ │ │ └── section-simple.html │ │ ├── main-feature.html │ │ └── stream_page.html │ ├── feeds │ │ └── main │ │ │ └── description.html │ ├── template_error.html │ └── wagtailadmin │ │ ├── account │ │ └── password_reset │ │ │ ├── email.txt │ │ │ └── email_subject.txt │ │ ├── base.html │ │ ├── home.html │ │ └── login.html ├── templatetags │ ├── __init__.py │ └── core_tags.py ├── tests.py ├── urls.py ├── views.py └── wagtail_hooks.py ├── docs ├── README.md ├── articles │ ├── management_commands.md │ ├── overview.md │ └── template_tags.md └── people │ └── management_commands.md ├── events ├── __init__.py ├── admin.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20150728_1915.py │ ├── 0003_eventpage_body.py │ ├── 0004_eventlistpage_events_per_page.py │ ├── 0005_auto_20151005_2123.py │ ├── 0006_auto_20151005_2125.py │ └── __init__.py ├── models.py ├── templates │ └── events │ │ ├── event_list_page.html │ │ └── event_page.html └── tests.py ├── fixtures └── staging.json ├── hooks └── pre-commit.py ├── images ├── __init__.py ├── admin.py ├── image_operations.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20150923_1943.py │ ├── 0003_auto_20160405_1542.py │ ├── 0004_auto_20160606_1603.py │ ├── 0005_auto_20161108_2120.py │ ├── 0006_auto_20161108_2123.py │ ├── 0007_auto_20170124_1541.py │ ├── 0008_auto_20170302_2108.py │ └── __init__.py ├── models.py ├── templatetags │ ├── __init__.py │ └── ocimages_tags.py └── wagtail_hooks.py ├── interactives ├── __init__.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py └── static │ └── interactives │ └── d3 │ ├── LICENSE │ ├── d3.js │ └── d3.min.js ├── jobs ├── __init__.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20151005_2123.py │ ├── 0003_auto_20151005_2124.py │ ├── 0004_auto_20151007_1902.py │ └── __init__.py ├── models.py ├── templates │ └── jobs │ │ ├── job_posting_list_page.html │ │ └── job_posting_page.html └── templatetags │ ├── __init__.py │ └── jobs_tags.py ├── manage.py ├── newsletter ├── __init__.py ├── admin.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20150723_1822.py │ ├── 0004_auto_20150723_1914.py │ ├── 0005_auto_20150723_1924.py │ ├── 0009_auto_20150724_1551.py │ ├── 0010_auto_20150728_1903.py │ ├── 0011_newsletterlistpage.py │ ├── 0012_newslettereventlink.py │ ├── 0013_newsletterlistpage_body.py │ ├── 0014_newsletterlistpage_intro_text.py │ ├── 0015_newsletterexternalarticlelink2.py │ ├── 0016_auto_20151005_2123.py │ ├── 0017_auto_20151005_2124.py │ ├── 0018_auto_20151015_2253.py │ └── __init__.py ├── models.py ├── templates │ └── newsletter │ │ ├── includes │ │ ├── newsletter_articles.html │ │ ├── newsletter_events.html │ │ ├── newsletter_external_articles.html │ │ ├── newsletter_footer.html │ │ ├── newsletter_head.html │ │ └── newsletter_header.html │ │ ├── newsletter_list_page.html │ │ └── newsletter_page.html ├── templatetags │ ├── __init__.py │ └── paths.py └── tests.py ├── opencanada ├── __init__.py ├── middleware.py ├── settings │ ├── __init__.py │ ├── admin.py │ ├── base.py │ ├── dev.py │ ├── production.py │ ├── staging.py │ └── test.py ├── urls.py ├── urls_admin.py └── wsgi.py ├── people ├── __init__.py ├── admin.py ├── fields.py ├── fixtures │ └── people_test.json ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── contributor_export.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_contributorlistpage.py │ ├── 0003_create_list_page.py │ ├── 0004_auto_20150706_1547.py │ ├── 0005_contributorlistpage_people_per_page.py │ ├── 0006_contributorpage_featured.py │ ├── 0007_auto_20150825_2041.py │ ├── 0008_auto_20150904_0211.py │ ├── 0009_auto_20151005_2123.py │ ├── 0010_auto_20151005_2125.py │ └── __init__.py ├── models.py ├── templates │ └── people │ │ ├── contributor_list_page.html │ │ └── contributor_page.html ├── templatetags │ ├── __init__.py │ └── people_tags.py └── tests.py ├── projects ├── __init__.py ├── admin.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── collectstatistics.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── templates │ └── projects │ │ ├── project_list_page.html │ │ └── project_page.html ├── tests.py └── views.py ├── requirements.txt ├── setup.cfg ├── sitemap ├── __init__.py ├── migrations │ └── __init__.py ├── models.py └── urls.py ├── themes ├── __init__.py ├── admin.py ├── blocks │ ├── __init__.py │ └── base.py ├── context_processors.py ├── migrations │ ├── 0001_squashed_0025_remove_theme_json_file.py │ ├── 0002_auto_20171213_1849.py │ └── __init__.py ├── models.py ├── static │ └── themes │ │ ├── components │ │ ├── css │ │ │ └── _transparency.scss │ │ └── js │ │ │ ├── jquery.scrollify.min.js │ │ │ └── transparency.js │ │ ├── dark │ │ ├── css │ │ │ ├── dark.scss │ │ │ ├── dark_layout.scss │ │ │ └── dark_variables.scss │ │ └── img │ │ │ └── opencanada-mark-white.png │ │ ├── exceptionalism │ │ ├── css │ │ │ ├── exceptionalism.scss │ │ │ ├── exceptionalism_layout.scss │ │ │ └── exceptionalism_variables.scss │ │ └── js │ │ │ └── exceptionalism.js │ │ ├── kurdistan │ │ ├── css │ │ │ ├── kurdistan.scss │ │ │ ├── kurdistan_layout.scss │ │ │ └── kurdistan_variables.scss │ │ ├── img │ │ │ ├── kurdistan-bg.png │ │ │ ├── kurdistan-cloud-left.png │ │ │ ├── kurdistan-cloud-right.png │ │ │ └── kurdistan-foreground.png │ │ └── js │ │ │ └── kurdistan.js │ │ ├── leftistForeignPolicy │ │ ├── css │ │ │ ├── leftist_foreign_policy.scss │ │ │ ├── leftist_foreign_policy_layout.scss │ │ │ └── leftist_foreign_policy_variables.scss │ │ ├── img │ │ │ ├── left_foreign_policy_feature.png │ │ │ └── leftist-sq.jpg │ │ └── js │ │ │ └── leftist_foreign_policy.js │ │ ├── light │ │ ├── css │ │ │ ├── light.scss │ │ │ ├── light_layout.scss │ │ │ └── light_variables.scss │ │ └── img │ │ │ ├── footer_bg.png │ │ │ ├── main_bg.png │ │ │ └── opencanada-logo-black.png │ │ ├── lind │ │ ├── css │ │ │ ├── lind.scss │ │ │ ├── lind_layout.scss │ │ │ └── lind_variables.scss │ │ └── img │ │ │ ├── opencanada-logo-white.png │ │ │ ├── opencanada-logo.png │ │ │ ├── ubc-logo-white.png │ │ │ └── ubc-logo.png │ │ ├── maplewashing │ │ ├── css │ │ │ ├── maplewashing.scss │ │ │ ├── maplewashing_layout.scss │ │ │ └── maplewashing_variables.scss │ │ └── img │ │ │ └── maplewashing-intro-bg.jpg │ │ ├── millennials │ │ ├── css │ │ │ ├── color_hover.scss │ │ │ ├── millennials.scss │ │ │ ├── millennials_layout.scss │ │ │ └── millennials_variables.scss │ │ ├── img │ │ │ ├── 2016 │ │ │ │ ├── andrei-marinescu-sm.png │ │ │ │ ├── andrei-marinescu.png │ │ │ │ ├── anne-maryssa-poitras-fortier-sm.png │ │ │ │ ├── anne-maryssa_poitras-fortier.png │ │ │ │ ├── ashley-heideman-sm.png │ │ │ │ ├── ashley-heideman.png │ │ │ │ ├── ben-rankin-sm.png │ │ │ │ ├── ben-rankin.png │ │ │ │ ├── chelsea-sayers-sm.png │ │ │ │ ├── chelsea-sayers.png │ │ │ │ ├── emma-bell-scollan-sm.png │ │ │ │ ├── emma-bell-scollan.png │ │ │ │ ├── faces.png │ │ │ │ ├── hilary-jensen-sm.png │ │ │ │ ├── hilary-jensen.png │ │ │ │ ├── james-clark-sm.png │ │ │ │ ├── james-clark.png │ │ │ │ ├── katharine-cornish-sm.png │ │ │ │ ├── katharine-cornish.png │ │ │ │ ├── laurence-beaulieu-morency-sm.png │ │ │ │ ├── laurence-beaulieu-morency.png │ │ │ │ ├── lynsey-longfield-sm.png │ │ │ │ ├── lynsey-longfield.png │ │ │ │ ├── madeleine-sourisseau-sm.png │ │ │ │ ├── madeleine-sourisseau.png │ │ │ │ ├── neil-krell-sm.png │ │ │ │ ├── neil-krell.png │ │ │ │ ├── nicholas-harper-sm.png │ │ │ │ ├── nicholas-harper.png │ │ │ │ ├── paige-gouin-sm.png │ │ │ │ ├── paige-gouin.png │ │ │ │ ├── peter-wright-sm.png │ │ │ │ ├── peter-wright.png │ │ │ │ ├── rory-morrison-sm.png │ │ │ │ ├── rory-morrison.png │ │ │ │ ├── sean-jellow-sm.png │ │ │ │ └── sean-jellow.png │ │ │ ├── 2017 │ │ │ │ ├── abdullah-abdi-sm.png │ │ │ │ ├── abdullah-abdi.png │ │ │ │ ├── adam-moscoe-sm.png │ │ │ │ ├── adam-moscoe.png │ │ │ │ ├── adam-rossiter-sm.png │ │ │ │ ├── adam-rossiter.png │ │ │ │ ├── alina-kwan-sm.png │ │ │ │ ├── alina-kwan.png │ │ │ │ ├── anton-bezglasnyy-sm.png │ │ │ │ ├── anton-bezglasnyy.png │ │ │ │ ├── christopher-heffernan-sm.png │ │ │ │ ├── christopher-heffernan.png │ │ │ │ ├── colin-chau-sm.png │ │ │ │ ├── colin-chau.png │ │ │ │ ├── daniel-barber-sm.png │ │ │ │ ├── daniel-barber.png │ │ │ │ ├── ena-cimic-sm.png │ │ │ │ ├── ena-cimic.png │ │ │ │ ├── fanie-thibeault-sm.png │ │ │ │ ├── fanie-thibeault.png │ │ │ │ ├── isaac-caverhill-sm.png │ │ │ │ ├── isaac-caverhill.png │ │ │ │ ├── karrolyn-van-helden-sm.png │ │ │ │ ├── karrolyn-van-helden.png │ │ │ │ ├── kristi-choi-sm.png │ │ │ │ ├── kristi-choi.png │ │ │ │ ├── mahmud-naqi-sm.png │ │ │ │ ├── mahmud-naqi.png │ │ │ │ ├── marie-soleil-fecteau-sm.png │ │ │ │ ├── marie-soleil-fecteau.png │ │ │ │ ├── rasha-al-katta-sm.png │ │ │ │ ├── rasha-al-katta.png │ │ │ │ ├── samantha-tam-sm.png │ │ │ │ ├── samantha-tam.png │ │ │ │ ├── shafiqah-muhamad-nor-sm.png │ │ │ │ ├── shafiqah-muhamad-nor.png │ │ │ │ ├── shawn-friele-sm.png │ │ │ │ └── shawn-friele.png │ │ │ ├── 2018 │ │ │ │ ├── aaron-joshua-pinto-sm.png │ │ │ │ ├── aaron-joshua-pinto.png │ │ │ │ ├── ahmed-hussein-sm.png │ │ │ │ ├── ahmed-hussein.png │ │ │ │ ├── april-killikelly-sm.png │ │ │ │ ├── april-killikelly.png │ │ │ │ ├── bryan-tomlinson-sm.png │ │ │ │ ├── bryan-tomlinson.png │ │ │ │ ├── chantal-martin-sm.png │ │ │ │ ├── chantal-martin.png │ │ │ │ ├── daniel-canough-sm.png │ │ │ │ ├── daniel-canough.png │ │ │ │ ├── djordje-vidovic-sm.png │ │ │ │ ├── djordje-vidovic.png │ │ │ │ ├── ian-grant-sm.png │ │ │ │ ├── ian-grant.png │ │ │ │ ├── jonathan-mcauley-sm.png │ │ │ │ ├── jonathan-mcauley.png │ │ │ │ ├── kateryna-sherysheva-sm.png │ │ │ │ ├── kateryna-sherysheva.png │ │ │ │ ├── lina-alvarez-sm.png │ │ │ │ ├── lina-alvarez.png │ │ │ │ ├── mallory-bikinas-sm.png │ │ │ │ ├── mallory-bikinas.png │ │ │ │ ├── mireille-le-ngoc-sm.png │ │ │ │ ├── mireille-le-ngoc.png │ │ │ │ ├── nadine-khoury-sm.png │ │ │ │ ├── nadine-khoury.png │ │ │ │ ├── nicholas-schiavo-sm.png │ │ │ │ ├── nicholas-schiavo.png │ │ │ │ ├── nika-moeini-sm.png │ │ │ │ ├── nika-moeini.png │ │ │ │ ├── paul-zorn-pink-sm.png │ │ │ │ ├── paul-zorn-pink.png │ │ │ │ ├── sara-marshall-sm.png │ │ │ │ ├── sara-marshall.png │ │ │ │ ├── sid-rashid-sm.png │ │ │ │ ├── sid-rashid.png │ │ │ │ ├── wilson-leite-sm.png │ │ │ │ ├── wilson-leite.png │ │ │ │ ├── wisam-salih-sm.png │ │ │ │ └── wisam-salih.png │ │ │ ├── aaron-joshua-pinto-sm.png │ │ │ ├── aaron-joshua-pinto.png │ │ │ ├── abdullah-abdi-sm.png │ │ │ ├── abdullah-abdi.png │ │ │ ├── adam-moscoe-sm.png │ │ │ ├── adam-moscoe.png │ │ │ ├── adam-rossiter-sm.png │ │ │ ├── adam-rossiter.png │ │ │ ├── ahmed-hussein-sm.png │ │ │ ├── ahmed-hussein.png │ │ │ ├── alina-kwan-sm.png │ │ │ ├── alina-kwan.png │ │ │ ├── andrei-marinescu-sm.png │ │ │ ├── andrei-marinescu.png │ │ │ ├── anne-maryssa-poitras-fortier-sm.png │ │ │ ├── anne-maryssa_poitras-fortier.png │ │ │ ├── anton-bezglasnyy-sm.png │ │ │ ├── anton-bezglasnyy.png │ │ │ ├── april-killikelly-sm.png │ │ │ ├── april-killikelly.png │ │ │ ├── ashley-heideman-sm.png │ │ │ ├── ashley-heideman.png │ │ │ ├── ben-rankin-sm.png │ │ │ ├── ben-rankin.png │ │ │ ├── bryan-tomlinson-sm.png │ │ │ ├── bryan-tomlinson.png │ │ │ ├── chantal-martin-sm.png │ │ │ ├── chantal-martin.png │ │ │ ├── chelsea-sayers-sm.png │ │ │ ├── chelsea-sayers.png │ │ │ ├── christopher-heffernan-sm.png │ │ │ ├── christopher-heffernan.png │ │ │ ├── colin-chau-sm.png │ │ │ ├── colin-chau.png │ │ │ ├── daniel-barber-sm.png │ │ │ ├── daniel-barber.png │ │ │ ├── daniel-canough-sm.png │ │ │ ├── daniel-canough.png │ │ │ ├── djordje-vidovic-sm.png │ │ │ ├── djordje-vidovic.png │ │ │ ├── emma-bell-scollan-sm.png │ │ │ ├── emma-bell-scollan.png │ │ │ ├── ena-cimic-sm.png │ │ │ ├── ena-cimic.png │ │ │ ├── faces.png │ │ │ ├── fanie-thibeault-sm.png │ │ │ ├── fanie-thibeault.png │ │ │ ├── hilary-jensen-sm.png │ │ │ ├── hilary-jensen.png │ │ │ ├── ian-grant-sm.png │ │ │ ├── ian-grant.png │ │ │ ├── isaac-caverhill-sm.png │ │ │ ├── isaac-caverhill.png │ │ │ ├── james-clark-sm.png │ │ │ ├── james-clark.png │ │ │ ├── jonathan-mcauley-sm.png │ │ │ ├── jonathan-mcauley.png │ │ │ ├── karrolyn-van-helden-sm.png │ │ │ ├── karrolyn-van-helden.png │ │ │ ├── kateryna-sherysheva-sm.png │ │ │ ├── kateryna-sherysheva.png │ │ │ ├── katharine-cornish-sm.png │ │ │ ├── katharine-cornish.png │ │ │ ├── kristi-choi-sm.png │ │ │ ├── kristi-choi.png │ │ │ ├── laurence-beaulieu-morency-sm.png │ │ │ ├── laurence-beaulieu-morency.png │ │ │ ├── lina-alvarez-sm.png │ │ │ ├── lina-alvarez.png │ │ │ ├── lynsey-longfield-sm.png │ │ │ ├── lynsey-longfield.png │ │ │ ├── madeleine-sourisseau-sm.png │ │ │ ├── madeleine-sourisseau.png │ │ │ ├── mahmud-naqi-sm.png │ │ │ ├── mahmud-naqi.png │ │ │ ├── mallory-bikinas-sm.png │ │ │ ├── mallory-bikinas.png │ │ │ ├── marie-soleil-fecteau-sm.png │ │ │ ├── marie-soleil-fecteau.png │ │ │ ├── mireille-le-ngoc-sm.png │ │ │ ├── mireille-le-ngoc.png │ │ │ ├── nadine-khoury-sm.png │ │ │ ├── nadine-khoury.png │ │ │ ├── neil-krell-sm.png │ │ │ ├── neil-krell.png │ │ │ ├── nicholas-harper-sm.png │ │ │ ├── nicholas-harper.png │ │ │ ├── nicholas-schiavo-sm.png │ │ │ ├── nicholas-schiavo.png │ │ │ ├── nika-moeini-sm.png │ │ │ ├── nika-moeini.png │ │ │ ├── paige-gouin-sm.png │ │ │ ├── paige-gouin.png │ │ │ ├── paul-zorn-pink-sm.png │ │ │ ├── paul-zorn-pink.png │ │ │ ├── peter-wright-sm.png │ │ │ ├── peter-wright.png │ │ │ ├── rasha-al-katta-sm.png │ │ │ ├── rasha-al-katta.png │ │ │ ├── rory-morrison-sm.png │ │ │ ├── rory-morrison.png │ │ │ ├── samantha-tam-sm.png │ │ │ ├── samantha-tam.png │ │ │ ├── sara-marshall-sm.png │ │ │ ├── sara-marshall.png │ │ │ ├── sean-jellow-sm.png │ │ │ ├── sean-jellow.png │ │ │ ├── shafiqah-muhamad-nor-sm.png │ │ │ ├── shafiqah-muhamad-nor.png │ │ │ ├── shawn-friele-sm.png │ │ │ ├── shawn-friele.png │ │ │ ├── sid-rashid-sm.png │ │ │ ├── sid-rashid.png │ │ │ ├── wilson-leite-sm.png │ │ │ ├── wilson-leite.png │ │ │ ├── wisam-salih-sm.png │ │ │ └── wisam-salih.png │ │ └── js │ │ │ ├── letterEffect.js │ │ │ ├── millennials.js │ │ │ └── slider.js │ │ ├── tan │ │ └── css │ │ │ ├── tan.scss │ │ │ ├── tan_layout.scss │ │ │ └── tan_variables.scss │ │ ├── theWatchers │ │ ├── css │ │ │ ├── the_watchers.scss │ │ │ ├── the_watchers_layout.scss │ │ │ └── the_watchers_variables.scss │ │ ├── img │ │ │ ├── csec_icon.png │ │ │ ├── csis_icon.png │ │ │ └── rcmp_icon.png │ │ └── js │ │ │ └── the_watchers.js │ │ ├── transparentHeader │ │ └── css │ │ │ ├── transparentheader.scss │ │ │ ├── transparentheader_layout.scss │ │ │ └── transparentheader_variables.scss │ │ ├── twitterati │ │ ├── css │ │ │ ├── twitterati.scss │ │ │ ├── twitterati_layout.scss │ │ │ └── twitterati_variables.scss │ │ └── js │ │ │ └── twitterati.js │ │ ├── womendiplomacy │ │ ├── css │ │ │ ├── women_diplomacy.scss │ │ │ ├── women_diplomacy_layout.scss │ │ │ └── women_diplomacy_variables.scss │ │ ├── img │ │ │ ├── background-top.jpg │ │ │ └── bottom-background.jpg │ │ └── js │ │ │ └── women_diplomacy.js │ │ └── yearinreview2016 │ │ ├── css │ │ ├── yearinreview2016.scss │ │ ├── yearinreview2016_layout.scss │ │ ├── yearinreview2016_mixins.scss │ │ └── yearinreview2016_variables.scss │ │ ├── fonts │ │ └── SanFranciscoText-Light │ │ │ ├── SanFranciscoText-Light.eot │ │ │ ├── SanFranciscoText-Light.svg │ │ │ ├── SanFranciscoText-Light.ttf │ │ │ ├── SanFranciscoText-Light.woff │ │ │ ├── preview.html │ │ │ └── styles.css │ │ ├── img │ │ ├── opencanada-mark-white.png │ │ └── signature.svg │ │ └── js │ │ └── yearinreview2016.js ├── templates │ └── themes │ │ ├── components │ │ └── simple_footer.html │ │ ├── dark │ │ └── articles │ │ │ ├── article_page.html │ │ │ └── series_page.html │ │ ├── default │ │ ├── articles │ │ │ ├── article_list_page.html │ │ │ ├── article_page.html │ │ │ ├── external_article_list_page.html │ │ │ ├── series_list_page.html │ │ │ ├── series_page.html │ │ │ └── topic_list_page.html │ │ ├── core │ │ │ ├── home_page.html │ │ │ └── stream_page.html │ │ ├── events │ │ │ ├── event_list_page.html │ │ │ └── event_page.html │ │ ├── jobs │ │ │ ├── job_posting_list_page.html │ │ │ └── job_posting_page.html │ │ ├── newsletter │ │ │ ├── newsletter_list_page.html │ │ │ └── newsletter_page.html │ │ ├── people │ │ │ ├── contributor_list_page.html │ │ │ └── contributor_page.html │ │ └── projects │ │ │ ├── project_list_page.html │ │ │ └── project_page.html │ │ ├── exceptionalism │ │ ├── articles │ │ │ ├── article_page.html │ │ │ ├── blocks │ │ │ │ ├── chapter.html │ │ │ │ └── related_items_block.html │ │ │ └── includes │ │ │ │ ├── advanced_content.html │ │ │ │ ├── article-contributors.html │ │ │ │ ├── article-feature.html │ │ │ │ ├── article-metadata.html │ │ │ │ ├── responses.html │ │ │ │ ├── share_links.html │ │ │ │ └── story-content.html │ │ └── header.html │ │ ├── kurdistan │ │ └── articles │ │ │ ├── article-feature.html │ │ │ └── article_page.html │ │ ├── leftistForeignPolicy │ │ └── articles │ │ │ ├── article-feature.html │ │ │ ├── article_page.html │ │ │ ├── blocks │ │ │ └── chapter.html │ │ │ └── includes │ │ │ └── advanced-content.html │ │ ├── light │ │ └── articles │ │ │ ├── article-feature.html │ │ │ ├── article_page.html │ │ │ └── series_page.html │ │ ├── lind │ │ ├── articles │ │ │ ├── article_page.html │ │ │ └── series_page.html │ │ ├── lind_footer.html │ │ └── lind_header.html │ │ ├── maplewashing │ │ ├── articles │ │ │ ├── article_page.html │ │ │ ├── blocks │ │ │ │ ├── chapter.html │ │ │ │ └── related_items_block.html │ │ │ └── includes │ │ │ │ ├── advanced_content.html │ │ │ │ ├── article-contributors.html │ │ │ │ ├── article-feature.html │ │ │ │ ├── article-metadata.html │ │ │ │ ├── share_links.html │ │ │ │ └── story-content.html │ │ └── header.html │ │ ├── millennials │ │ └── articles │ │ │ ├── article_page.html │ │ │ ├── blocks │ │ │ └── chapter.html │ │ │ └── includes │ │ │ └── advanced_content.html │ │ ├── tan │ │ └── articles │ │ │ └── article_page.html │ │ ├── theWatchers │ │ └── articles │ │ │ ├── article_page.html │ │ │ └── includes │ │ │ ├── article-feature.html │ │ │ ├── article-metadata.html │ │ │ └── share_links.html │ │ ├── transparentHeader │ │ └── articles │ │ │ ├── article_page.html │ │ │ └── series_page.html │ │ ├── twitterati │ │ └── articles │ │ │ ├── article-feature.html │ │ │ └── article_page.html │ │ ├── womendiplomacy │ │ └── articles │ │ │ └── article_page.html │ │ └── yearinreview2016 │ │ ├── articles │ │ ├── article_page.html │ │ ├── blocks │ │ │ ├── chapter.html │ │ │ └── related_items_block.html │ │ └── includes │ │ │ ├── advanced-content.html │ │ │ ├── article-contributors.html │ │ │ ├── article-feature.html │ │ │ ├── share_links.html │ │ │ └── story-content.html │ │ └── header.html └── templatetags │ ├── __init__.py │ └── theme_tags.py └── vagrant └── provision.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn opencanada.wsgi --log-file - 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/README.md -------------------------------------------------------------------------------- /RELEASES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/RELEASES.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/Vagrantfile -------------------------------------------------------------------------------- /analytics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analytics/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/analytics/admin.py -------------------------------------------------------------------------------- /analytics/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analytics/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analytics/management/commands/create_ga_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/analytics/management/commands/create_ga_report.py -------------------------------------------------------------------------------- /analytics/management/commands/update_page_analytics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/analytics/management/commands/update_page_analytics.py -------------------------------------------------------------------------------- /analytics/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/analytics/migrations/0001_initial.py -------------------------------------------------------------------------------- /analytics/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analytics/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/analytics/models.py -------------------------------------------------------------------------------- /analytics/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/analytics/tests.py -------------------------------------------------------------------------------- /analytics/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/analytics/utils.py -------------------------------------------------------------------------------- /articles/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/__init__.py -------------------------------------------------------------------------------- /articles/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/admin.py -------------------------------------------------------------------------------- /articles/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/apps.py -------------------------------------------------------------------------------- /articles/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/fields.py -------------------------------------------------------------------------------- /articles/fixtures/articlestest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/fixtures/articlestest.json -------------------------------------------------------------------------------- /articles/management/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'csimpson' 2 | -------------------------------------------------------------------------------- /articles/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'csimpson' 2 | -------------------------------------------------------------------------------- /articles/management/commands/inittwitterati.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/management/commands/inittwitterati.py -------------------------------------------------------------------------------- /articles/management/commands/update_overlay_opacity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/management/commands/update_overlay_opacity.py -------------------------------------------------------------------------------- /articles/management/commands/updatetwitterati.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/management/commands/updatetwitterati.py -------------------------------------------------------------------------------- /articles/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0001_initial.py -------------------------------------------------------------------------------- /articles/migrations/0002_articleauthorlink_author.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0002_articleauthorlink_author.py -------------------------------------------------------------------------------- /articles/migrations/0003_initial_pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0003_initial_pages.py -------------------------------------------------------------------------------- /articles/migrations/0004_headline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0004_headline.py -------------------------------------------------------------------------------- /articles/migrations/0005_auto_20150626_1948.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0005_auto_20150626_1948.py -------------------------------------------------------------------------------- /articles/migrations/0006_create_topics_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0006_create_topics_page.py -------------------------------------------------------------------------------- /articles/migrations/0007_auto_20150702_1954.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0007_auto_20150702_1954.py -------------------------------------------------------------------------------- /articles/migrations/0008_create_categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0008_create_categories.py -------------------------------------------------------------------------------- /articles/migrations/0009_auto_20150706_1526.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0009_auto_20150706_1526.py -------------------------------------------------------------------------------- /articles/migrations/0010_auto_20150706_1547.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0010_auto_20150706_1547.py -------------------------------------------------------------------------------- /articles/migrations/0011_seriespage_subtitle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0011_seriespage_subtitle.py -------------------------------------------------------------------------------- /articles/migrations/0012_auto_20150707_2303.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0012_auto_20150707_2303.py -------------------------------------------------------------------------------- /articles/migrations/0015_auto_20150715_1553.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0015_auto_20150715_1553.py -------------------------------------------------------------------------------- /articles/migrations/0015_remove_articlepage_subtitle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0015_remove_articlepage_subtitle.py -------------------------------------------------------------------------------- /articles/migrations/0016_create_colours.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0016_create_colours.py -------------------------------------------------------------------------------- /articles/migrations/0017_auto_20150715_1554.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0017_auto_20150715_1554.py -------------------------------------------------------------------------------- /articles/migrations/0018_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0018_merge.py -------------------------------------------------------------------------------- /articles/migrations/0019_auto_20150715_1948.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0019_auto_20150715_1948.py -------------------------------------------------------------------------------- /articles/migrations/0020_auto_20150715_2006.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0020_auto_20150715_2006.py -------------------------------------------------------------------------------- /articles/migrations/0021_auto_20150716_2116.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0021_auto_20150716_2116.py -------------------------------------------------------------------------------- /articles/migrations/0022_create_feature_styles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0022_create_feature_styles.py -------------------------------------------------------------------------------- /articles/migrations/0023_auto_20150716_2129.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0023_auto_20150716_2129.py -------------------------------------------------------------------------------- /articles/migrations/0024_auto_20150722_1928.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0024_auto_20150722_1928.py -------------------------------------------------------------------------------- /articles/migrations/0025_auto_20150724_1517.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0025_auto_20150724_1517.py -------------------------------------------------------------------------------- /articles/migrations/0025_auto_20150724_1721.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0025_auto_20150724_1721.py -------------------------------------------------------------------------------- /articles/migrations/0026_auto_20150728_1823.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0026_auto_20150728_1823.py -------------------------------------------------------------------------------- /articles/migrations/0026_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0026_merge.py -------------------------------------------------------------------------------- /articles/migrations/0027_externalarticlelistpage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0027_externalarticlelistpage.py -------------------------------------------------------------------------------- /articles/migrations/0028_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0028_merge.py -------------------------------------------------------------------------------- /articles/migrations/0029_auto_20150805_2109.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0029_auto_20150805_2109.py -------------------------------------------------------------------------------- /articles/migrations/0029_auto_20150811_1924.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0029_auto_20150811_1924.py -------------------------------------------------------------------------------- /articles/migrations/0030_articlecategory_include_main_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0030_articlecategory_include_main_image.py -------------------------------------------------------------------------------- /articles/migrations/0030_auto_20150806_2136.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0030_auto_20150806_2136.py -------------------------------------------------------------------------------- /articles/migrations/0031_auto_20150812_2002.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0031_auto_20150812_2002.py -------------------------------------------------------------------------------- /articles/migrations/0031_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0031_merge.py -------------------------------------------------------------------------------- /articles/migrations/0032_auto_20150813_1359.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0032_auto_20150813_1359.py -------------------------------------------------------------------------------- /articles/migrations/0033_articlepage_last_updated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0033_articlepage_last_updated.py -------------------------------------------------------------------------------- /articles/migrations/0034_auto_20150813_1728.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0034_auto_20150813_1728.py -------------------------------------------------------------------------------- /articles/migrations/0035_auto_20150813_1802.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0035_auto_20150813_1802.py -------------------------------------------------------------------------------- /articles/migrations/0036_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0036_merge.py -------------------------------------------------------------------------------- /articles/migrations/0037_articlepage_hide_author_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0037_articlepage_hide_author_block.py -------------------------------------------------------------------------------- /articles/migrations/0038_auto_20150814_1826.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0038_auto_20150814_1826.py -------------------------------------------------------------------------------- /articles/migrations/0038_auto_20150814_1920.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0038_auto_20150814_1920.py -------------------------------------------------------------------------------- /articles/migrations/0039_auto_20150814_1922.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0039_auto_20150814_1922.py -------------------------------------------------------------------------------- /articles/migrations/0040_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0040_merge.py -------------------------------------------------------------------------------- /articles/migrations/0041_auto_20150814_2011.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0041_auto_20150814_2011.py -------------------------------------------------------------------------------- /articles/migrations/0043_auto_20150818_1833.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0043_auto_20150818_1833.py -------------------------------------------------------------------------------- /articles/migrations/0045_seriespage_include_main_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0045_seriespage_include_main_image.py -------------------------------------------------------------------------------- /articles/migrations/0047_topiclistpage_articles_per_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0047_topiclistpage_articles_per_page.py -------------------------------------------------------------------------------- /articles/migrations/0048_articlepage_interview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0048_articlepage_interview.py -------------------------------------------------------------------------------- /articles/migrations/0050_auto_20150901_2041.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0050_auto_20150901_2041.py -------------------------------------------------------------------------------- /articles/migrations/0051_auto_20150903_0059.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0051_auto_20150903_0059.py -------------------------------------------------------------------------------- /articles/migrations/0052_articlepage_full_bleed_image_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0052_articlepage_full_bleed_image_size.py -------------------------------------------------------------------------------- /articles/migrations/0053_auto_20150903_1738.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0053_auto_20150903_1738.py -------------------------------------------------------------------------------- /articles/migrations/0054_seriespage_short_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0054_seriespage_short_description.py -------------------------------------------------------------------------------- /articles/migrations/0055_auto_20150903_2116.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0055_auto_20150903_2116.py -------------------------------------------------------------------------------- /articles/migrations/0056_auto_20150903_2132.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0056_auto_20150903_2132.py -------------------------------------------------------------------------------- /articles/migrations/0057_articlelistpage_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0057_articlelistpage_filter.py -------------------------------------------------------------------------------- /articles/migrations/0058_auto_20150904_0245.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0058_auto_20150904_0245.py -------------------------------------------------------------------------------- /articles/migrations/0059_auto_20150923_1524.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0059_auto_20150923_1524.py -------------------------------------------------------------------------------- /articles/migrations/0060_auto_20150925_2012.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0060_auto_20150925_2012.py -------------------------------------------------------------------------------- /articles/migrations/0061_auto_20150928_1913.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0061_auto_20150928_1913.py -------------------------------------------------------------------------------- /articles/migrations/0062_auto_20150930_1633.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0062_auto_20150930_1633.py -------------------------------------------------------------------------------- /articles/migrations/0062_auto_20150930_1906.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0062_auto_20150930_1906.py -------------------------------------------------------------------------------- /articles/migrations/0063_auto_20150930_1924.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0063_auto_20150930_1924.py -------------------------------------------------------------------------------- /articles/migrations/0064_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0064_merge.py -------------------------------------------------------------------------------- /articles/migrations/0065_make_pages_themeable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0065_make_pages_themeable.py -------------------------------------------------------------------------------- /articles/migrations/0066_assign_theme_to_pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0066_assign_theme_to_pages.py -------------------------------------------------------------------------------- /articles/migrations/0067_auto_20151005_2045.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0067_auto_20151005_2045.py -------------------------------------------------------------------------------- /articles/migrations/0068_auto_20151006_2148.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0068_auto_20151006_2148.py -------------------------------------------------------------------------------- /articles/migrations/0069_articlebackgroundimagelink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0069_articlebackgroundimagelink.py -------------------------------------------------------------------------------- /articles/migrations/0070_auto_20151013_1900.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0070_auto_20151013_1900.py -------------------------------------------------------------------------------- /articles/migrations/0071_auto_20151013_1911.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0071_auto_20151013_1911.py -------------------------------------------------------------------------------- /articles/migrations/0072_auto_20151013_2006.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0072_auto_20151013_2006.py -------------------------------------------------------------------------------- /articles/migrations/0073_auto_20151013_2024.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0073_auto_20151013_2024.py -------------------------------------------------------------------------------- /articles/migrations/0074_auto_20151015_1726.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0074_auto_20151015_1726.py -------------------------------------------------------------------------------- /articles/migrations/0075_auto_20151015_2022.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0075_auto_20151015_2022.py -------------------------------------------------------------------------------- /articles/migrations/0076_articlepage_video_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0076_articlepage_video_document.py -------------------------------------------------------------------------------- /articles/migrations/0077_seriespage_video_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0077_seriespage_video_document.py -------------------------------------------------------------------------------- /articles/migrations/0078_articlepage_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0078_articlepage_video.py -------------------------------------------------------------------------------- /articles/migrations/0079_auto_20151126_1433.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0079_auto_20151126_1433.py -------------------------------------------------------------------------------- /articles/migrations/0080_auto_20151126_1456.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0080_auto_20151126_1456.py -------------------------------------------------------------------------------- /articles/migrations/0081_auto_20151126_1503.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0081_auto_20151126_1503.py -------------------------------------------------------------------------------- /articles/migrations/0082_auto_20151208_2116.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0082_auto_20151208_2116.py -------------------------------------------------------------------------------- /articles/migrations/0083_auto_20151208_2156.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0083_auto_20151208_2156.py -------------------------------------------------------------------------------- /articles/migrations/0084_auto_20151209_0154.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0084_auto_20151209_0154.py -------------------------------------------------------------------------------- /articles/migrations/0085_articlepage_json_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0085_articlepage_json_file.py -------------------------------------------------------------------------------- /articles/migrations/0086_articlepage_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0086_articlepage_project.py -------------------------------------------------------------------------------- /articles/migrations/0087_seriespage_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0087_seriespage_project.py -------------------------------------------------------------------------------- /articles/migrations/0088_responsearticlelink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0088_responsearticlelink.py -------------------------------------------------------------------------------- /articles/migrations/0089_auto_20161205_1426.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0089_auto_20161205_1426.py -------------------------------------------------------------------------------- /articles/migrations/0090_auto_20171213_1849.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/migrations/0090_auto_20171213_1849.py -------------------------------------------------------------------------------- /articles/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /articles/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/models.py -------------------------------------------------------------------------------- /articles/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/readme.md -------------------------------------------------------------------------------- /articles/templates/articles/article_list_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/templates/articles/article_list_page.html -------------------------------------------------------------------------------- /articles/templates/articles/article_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/templates/articles/article_page.html -------------------------------------------------------------------------------- /articles/templates/articles/blocks/chapter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/templates/articles/blocks/chapter.html -------------------------------------------------------------------------------- /articles/templates/articles/blocks/citation.html: -------------------------------------------------------------------------------- 1 |
{{ self.text }}
2 | -------------------------------------------------------------------------------- /articles/templates/articles/blocks/columnar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/templates/articles/blocks/columnar.html -------------------------------------------------------------------------------- /articles/templates/articles/blocks/document_block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/templates/articles/blocks/document_block.html -------------------------------------------------------------------------------- /articles/templates/articles/blocks/endnote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/templates/articles/blocks/endnote.html -------------------------------------------------------------------------------- /articles/templates/articles/blocks/fullbleed.html: -------------------------------------------------------------------------------- 1 | {{ self.body }} 2 | -------------------------------------------------------------------------------- /articles/templates/articles/blocks/heading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/templates/articles/blocks/heading.html -------------------------------------------------------------------------------- /articles/templates/articles/blocks/image_block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/templates/articles/blocks/image_block.html -------------------------------------------------------------------------------- /articles/templates/articles/blocks/interactive.html: -------------------------------------------------------------------------------- 1 | {{ self }} 2 | 3 | {{ config.html }} 4 | -------------------------------------------------------------------------------- /articles/templates/articles/blocks/overflow.html: -------------------------------------------------------------------------------- 1 | {{ self.body }} 2 | -------------------------------------------------------------------------------- /articles/templates/articles/blocks/paragraph_block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/templates/articles/blocks/paragraph_block.html -------------------------------------------------------------------------------- /articles/templates/articles/blocks/pull_quote.html: -------------------------------------------------------------------------------- 1 |
{{ self }}
2 | -------------------------------------------------------------------------------- /articles/templates/articles/blocks/quote.html: -------------------------------------------------------------------------------- 1 |
{{ self }}
2 | -------------------------------------------------------------------------------- /articles/templates/articles/blocks/related_items_block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/templates/articles/blocks/related_items_block.html -------------------------------------------------------------------------------- /articles/templates/articles/blocks/sharable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/templates/articles/blocks/sharable.html -------------------------------------------------------------------------------- /articles/templates/articles/external_article_list_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/templates/articles/external_article_list_page.html -------------------------------------------------------------------------------- /articles/templates/articles/external_article_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/templates/articles/external_article_page.html -------------------------------------------------------------------------------- /articles/templates/articles/includes/advanced-content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/templates/articles/includes/advanced-content.html -------------------------------------------------------------------------------- /articles/templates/articles/includes/article-contributors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/templates/articles/includes/article-contributors.html -------------------------------------------------------------------------------- /articles/templates/articles/includes/article-feature.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/templates/articles/includes/article-feature.html -------------------------------------------------------------------------------- /articles/templates/articles/includes/article-metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/templates/articles/includes/article-metadata.html -------------------------------------------------------------------------------- /articles/templates/articles/includes/article_teaser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/templates/articles/includes/article_teaser.html -------------------------------------------------------------------------------- /articles/templates/articles/includes/author_blurb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/templates/articles/includes/author_blurb.html -------------------------------------------------------------------------------- /articles/templates/articles/includes/end_notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/templates/articles/includes/end_notes.html -------------------------------------------------------------------------------- /articles/templates/articles/includes/in_the_series.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/templates/articles/includes/in_the_series.html -------------------------------------------------------------------------------- /articles/templates/articles/includes/json-embed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/templates/articles/includes/json-embed.html -------------------------------------------------------------------------------- /articles/templates/articles/includes/related_articles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/templates/articles/includes/related_articles.html -------------------------------------------------------------------------------- /articles/templates/articles/includes/series-metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/templates/articles/includes/series-metadata.html -------------------------------------------------------------------------------- /articles/templates/articles/includes/series_series_teaser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/templates/articles/includes/series_series_teaser.html -------------------------------------------------------------------------------- /articles/templates/articles/includes/series_teaser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/templates/articles/includes/series_teaser.html -------------------------------------------------------------------------------- /articles/templates/articles/includes/share_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/templates/articles/includes/share_links.html -------------------------------------------------------------------------------- /articles/templates/articles/includes/story-content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/templates/articles/includes/story-content.html -------------------------------------------------------------------------------- /articles/templates/articles/series_list_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/templates/articles/series_list_page.html -------------------------------------------------------------------------------- /articles/templates/articles/series_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/templates/articles/series_page.html -------------------------------------------------------------------------------- /articles/templates/articles/topic_list_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/templates/articles/topic_list_page.html -------------------------------------------------------------------------------- /articles/templates/articles/topic_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/templates/articles/topic_page.html -------------------------------------------------------------------------------- /articles/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'csimpson' 2 | -------------------------------------------------------------------------------- /articles/templatetags/article_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/templatetags/article_tags.py -------------------------------------------------------------------------------- /articles/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/articles/tests.py -------------------------------------------------------------------------------- /caching/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /caching/invalidate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/caching/invalidate.py -------------------------------------------------------------------------------- /caching/models.py: -------------------------------------------------------------------------------- 1 | from .invalidate import * 2 | -------------------------------------------------------------------------------- /caching/templates/wagtailadmin/cache/clear.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/caching/templates/wagtailadmin/cache/clear.html -------------------------------------------------------------------------------- /caching/wagtail_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/caching/wagtail_hooks.py -------------------------------------------------------------------------------- /content_notes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/content_notes/__init__.py -------------------------------------------------------------------------------- /content_notes/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/content_notes/admin.py -------------------------------------------------------------------------------- /content_notes/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/content_notes/apps.py -------------------------------------------------------------------------------- /content_notes/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/content_notes/migrations/0001_initial.py -------------------------------------------------------------------------------- /content_notes/migrations/0002_citation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/content_notes/migrations/0002_citation.py -------------------------------------------------------------------------------- /content_notes/migrations/0003_auto_20150930_2002.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/content_notes/migrations/0003_auto_20150930_2002.py -------------------------------------------------------------------------------- /content_notes/migrations/0004_auto_20151006_2134.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/content_notes/migrations/0004_auto_20151006_2134.py -------------------------------------------------------------------------------- /content_notes/migrations/0005_auto_20151007_1902.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/content_notes/migrations/0005_auto_20151007_1902.py -------------------------------------------------------------------------------- /content_notes/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /content_notes/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/content_notes/models.py -------------------------------------------------------------------------------- /content_notes/static/content_notes/js/end-note-chooser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/content_notes/static/content_notes/js/end-note-chooser.js -------------------------------------------------------------------------------- /content_notes/templates/content_notes/chooser/choose.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/content_notes/templates/content_notes/chooser/choose.html -------------------------------------------------------------------------------- /content_notes/templates/content_notes/chooser/choose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/content_notes/templates/content_notes/chooser/choose.js -------------------------------------------------------------------------------- /content_notes/templates/content_notes/chooser/chosen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/content_notes/templates/content_notes/chooser/chosen.js -------------------------------------------------------------------------------- /content_notes/templates/content_notes/chooser/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/content_notes/templates/content_notes/chooser/results.html -------------------------------------------------------------------------------- /content_notes/templates/content_notes/end_note_chooser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/content_notes/templates/content_notes/end_note_chooser.html -------------------------------------------------------------------------------- /content_notes/templates/content_notes/endnotes/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/content_notes/templates/content_notes/endnotes/list.html -------------------------------------------------------------------------------- /content_notes/templates/content_notes/endnotes/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/content_notes/templates/content_notes/endnotes/results.html -------------------------------------------------------------------------------- /content_notes/templates/content_notes/endnotes/type_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/content_notes/templates/content_notes/endnotes/type_index.html -------------------------------------------------------------------------------- /content_notes/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/content_notes/urls.py -------------------------------------------------------------------------------- /content_notes/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /content_notes/views/chooser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/content_notes/views/chooser.py -------------------------------------------------------------------------------- /content_notes/views/endnotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/content_notes/views/endnotes.py -------------------------------------------------------------------------------- /content_notes/wagtail_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/content_notes/wagtail_hooks.py -------------------------------------------------------------------------------- /content_notes/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/content_notes/widgets.py -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/admin.py -------------------------------------------------------------------------------- /core/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/apps.py -------------------------------------------------------------------------------- /core/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/base.py -------------------------------------------------------------------------------- /core/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/context_processors.py -------------------------------------------------------------------------------- /core/feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/feeds.py -------------------------------------------------------------------------------- /core/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/migrations/0001_initial.py -------------------------------------------------------------------------------- /core/migrations/0002_create_home_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/migrations/0002_create_home_page.py -------------------------------------------------------------------------------- /core/migrations/0003_set_homepage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/migrations/0003_set_homepage.py -------------------------------------------------------------------------------- /core/migrations/0004_homepage_featured_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/migrations/0004_homepage_featured_item.py -------------------------------------------------------------------------------- /core/migrations/0007_homepage_number_of_articles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/migrations/0007_homepage_number_of_articles.py -------------------------------------------------------------------------------- /core/migrations/0008_auto_20150716_2138.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/migrations/0008_auto_20150716_2138.py -------------------------------------------------------------------------------- /core/migrations/0009_homepage_number_of_columns_of_articles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/migrations/0009_homepage_number_of_columns_of_articles.py -------------------------------------------------------------------------------- /core/migrations/0010_auto_20150818_1942.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/migrations/0010_auto_20150818_1942.py -------------------------------------------------------------------------------- /core/migrations/0011_sitedefaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/migrations/0011_sitedefaults.py -------------------------------------------------------------------------------- /core/migrations/0012_auto_20150819_1819.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/migrations/0012_auto_20150819_1819.py -------------------------------------------------------------------------------- /core/migrations/0013_auto_20150903_0151.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/migrations/0013_auto_20150903_0151.py -------------------------------------------------------------------------------- /core/migrations/0014_homepage_full_bleed_image_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/migrations/0014_homepage_full_bleed_image_size.py -------------------------------------------------------------------------------- /core/migrations/0015_auto_20150903_1738.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/migrations/0015_auto_20150903_1738.py -------------------------------------------------------------------------------- /core/migrations/0017_sitedefaults_contact_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/migrations/0017_sitedefaults_contact_email.py -------------------------------------------------------------------------------- /core/migrations/0018_auto_20151002_2248.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/migrations/0018_auto_20151002_2248.py -------------------------------------------------------------------------------- /core/migrations/0019_set_contact_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/migrations/0019_set_contact_email.py -------------------------------------------------------------------------------- /core/migrations/0020_assign_theme_to_homepage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/migrations/0020_assign_theme_to_homepage.py -------------------------------------------------------------------------------- /core/migrations/0021_streampage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/migrations/0021_streampage.py -------------------------------------------------------------------------------- /core/migrations/0022_auto_20151016_0320.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/migrations/0022_auto_20151016_0320.py -------------------------------------------------------------------------------- /core/migrations/0023_update_contact_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/migrations/0023_update_contact_email.py -------------------------------------------------------------------------------- /core/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/models.py -------------------------------------------------------------------------------- /core/static/css/_article.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/_article.scss -------------------------------------------------------------------------------- /core/static/css/_bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/_bootstrap.scss -------------------------------------------------------------------------------- /core/static/css/_contributor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/_contributor.scss -------------------------------------------------------------------------------- /core/static/css/_external.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/_external.scss -------------------------------------------------------------------------------- /core/static/css/_features.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/_features.scss -------------------------------------------------------------------------------- /core/static/css/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/_footer.scss -------------------------------------------------------------------------------- /core/static/css/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/_header.scss -------------------------------------------------------------------------------- /core/static/css/_homepage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/_homepage.scss -------------------------------------------------------------------------------- /core/static/css/_job.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/_job.scss -------------------------------------------------------------------------------- /core/static/css/_main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/_main.scss -------------------------------------------------------------------------------- /core/static/css/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/_mixins.scss -------------------------------------------------------------------------------- /core/static/css/_newsletter.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/_newsletter.scss -------------------------------------------------------------------------------- /core/static/css/_search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/_search.scss -------------------------------------------------------------------------------- /core/static/css/_stream.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/_stream.scss -------------------------------------------------------------------------------- /core/static/css/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/_variables.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/_alerts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/_alerts.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/_badges.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/_badges.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/_breadcrumbs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/_breadcrumbs.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/_button-groups.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/_button-groups.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/_buttons.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/_carousel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/_carousel.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/_close.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/_close.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/_code.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/_component-animations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/_component-animations.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/_dropdowns.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/_dropdowns.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/_forms.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/_glyphicons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/_glyphicons.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/_grid.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/_input-groups.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/_input-groups.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/_jumbotron.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/_jumbotron.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/_labels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/_labels.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/_list-group.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/_media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/_media.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/_mixins.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/_modals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/_modals.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/_navbar.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/_navs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/_navs.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/_normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/_normalize.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/_pager.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/_pager.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/_pagination.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/_panels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/_panels.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/_popovers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/_popovers.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/_print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/_print.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/_progress-bars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/_progress-bars.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/_responsive-embed.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/_responsive-embed.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/_responsive-utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/_responsive-utilities.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/_scaffolding.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/_scaffolding.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/_tables.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/_theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/_theme.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/_thumbnails.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/_thumbnails.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/_tooltip.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/_type.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/_utilities.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/_variables.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/_wells.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/_wells.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/mixins/_alerts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/mixins/_alerts.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/mixins/_background-variant.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/mixins/_background-variant.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/mixins/_border-radius.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/mixins/_border-radius.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/mixins/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/mixins/_buttons.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/mixins/_center-block.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/mixins/_center-block.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/mixins/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/mixins/_clearfix.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/mixins/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/mixins/_forms.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/mixins/_gradients.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/mixins/_gradients.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/mixins/_grid-framework.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/mixins/_grid-framework.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/mixins/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/mixins/_grid.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/mixins/_hide-text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/mixins/_hide-text.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/mixins/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/mixins/_image.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/mixins/_labels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/mixins/_labels.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/mixins/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/mixins/_list-group.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/mixins/_nav-divider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/mixins/_nav-divider.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/mixins/_nav-vertical-align.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/mixins/_nav-vertical-align.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/mixins/_opacity.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/mixins/_opacity.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/mixins/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/mixins/_pagination.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/mixins/_panels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/mixins/_panels.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/mixins/_progress-bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/mixins/_progress-bar.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/mixins/_reset-filter.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/mixins/_reset-filter.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/mixins/_resize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/mixins/_resize.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/mixins/_responsive-visibility.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/mixins/_responsive-visibility.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/mixins/_size.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/mixins/_size.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/mixins/_tab-focus.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/mixins/_tab-focus.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/mixins/_table-row.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/mixins/_table-row.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/mixins/_text-emphasis.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/mixins/_text-emphasis.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/mixins/_text-overflow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/mixins/_text-overflow.scss -------------------------------------------------------------------------------- /core/static/css/bootstrap/mixins/_vendor-prefixes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/bootstrap/mixins/_vendor-prefixes.scss -------------------------------------------------------------------------------- /core/static/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/font-awesome.min.css -------------------------------------------------------------------------------- /core/static/css/opencanada.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/opencanada.scss -------------------------------------------------------------------------------- /core/static/css/print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/css/print.scss -------------------------------------------------------------------------------- /core/static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /core/static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /core/static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /core/static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /core/static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /core/static/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /core/static/img/assets/R2P-at-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/img/assets/R2P-at-10.png -------------------------------------------------------------------------------- /core/static/img/assets/R2P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/img/assets/R2P.png -------------------------------------------------------------------------------- /core/static/img/assets/diplomacy-unbound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/img/assets/diplomacy-unbound.png -------------------------------------------------------------------------------- /core/static/img/assets/nato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/img/assets/nato.png -------------------------------------------------------------------------------- /core/static/img/assets/putin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/img/assets/putin.png -------------------------------------------------------------------------------- /core/static/img/assets/related-article.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/img/assets/related-article.png -------------------------------------------------------------------------------- /core/static/img/assets/series-article.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/img/assets/series-article.png -------------------------------------------------------------------------------- /core/static/img/assets/spy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/img/assets/spy.png -------------------------------------------------------------------------------- /core/static/img/assets/tennis-diplomacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/img/assets/tennis-diplomacy.png -------------------------------------------------------------------------------- /core/static/img/bgc-footer-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/img/bgc-footer-logo.png -------------------------------------------------------------------------------- /core/static/img/canadas-hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/img/canadas-hub.png -------------------------------------------------------------------------------- /core/static/img/cic-footer-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/img/cic-footer-logo.png -------------------------------------------------------------------------------- /core/static/img/cigi-footer-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/img/cigi-footer-logo.png -------------------------------------------------------------------------------- /core/static/img/facebook-25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/img/facebook-25.png -------------------------------------------------------------------------------- /core/static/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/img/favicon.png -------------------------------------------------------------------------------- /core/static/img/oc-default-social-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/img/oc-default-social-logo.png -------------------------------------------------------------------------------- /core/static/img/opencanada-logo-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/img/opencanada-logo-square.png -------------------------------------------------------------------------------- /core/static/img/opencanada-logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/img/opencanada-logo-white.png -------------------------------------------------------------------------------- /core/static/img/opencanada-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/img/opencanada-logo.png -------------------------------------------------------------------------------- /core/static/img/opencanada-mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/img/opencanada-mark.png -------------------------------------------------------------------------------- /core/static/img/opencanada-white-st.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/img/opencanada-white-st.png -------------------------------------------------------------------------------- /core/static/img/twitter-25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/img/twitter-25.png -------------------------------------------------------------------------------- /core/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/js/bootstrap.js -------------------------------------------------------------------------------- /core/static/js/bootstrap/affix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/js/bootstrap/affix.js -------------------------------------------------------------------------------- /core/static/js/bootstrap/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/js/bootstrap/alert.js -------------------------------------------------------------------------------- /core/static/js/bootstrap/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/js/bootstrap/button.js -------------------------------------------------------------------------------- /core/static/js/bootstrap/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/js/bootstrap/carousel.js -------------------------------------------------------------------------------- /core/static/js/bootstrap/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/js/bootstrap/collapse.js -------------------------------------------------------------------------------- /core/static/js/bootstrap/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/js/bootstrap/dropdown.js -------------------------------------------------------------------------------- /core/static/js/bootstrap/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/js/bootstrap/modal.js -------------------------------------------------------------------------------- /core/static/js/bootstrap/popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/js/bootstrap/popover.js -------------------------------------------------------------------------------- /core/static/js/bootstrap/scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/js/bootstrap/scrollspy.js -------------------------------------------------------------------------------- /core/static/js/bootstrap/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/js/bootstrap/tab.js -------------------------------------------------------------------------------- /core/static/js/bootstrap/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/js/bootstrap/tooltip.js -------------------------------------------------------------------------------- /core/static/js/bootstrap/transition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/js/bootstrap/transition.js -------------------------------------------------------------------------------- /core/static/js/editor/hallo-modallink-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/js/editor/hallo-modallink-plugin.js -------------------------------------------------------------------------------- /core/static/js/editor/hallo-supsub-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/js/editor/hallo-supsub-plugin.js -------------------------------------------------------------------------------- /core/static/js/features.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/js/features.js -------------------------------------------------------------------------------- /core/static/js/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/js/header.js -------------------------------------------------------------------------------- /core/static/js/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/js/menu.js -------------------------------------------------------------------------------- /core/static/js/opencanada.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/js/opencanada.js -------------------------------------------------------------------------------- /core/static/js/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/js/search.js -------------------------------------------------------------------------------- /core/static/js/sharing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/static/js/sharing.js -------------------------------------------------------------------------------- /core/templates/403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/templates/403.html -------------------------------------------------------------------------------- /core/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/templates/404.html -------------------------------------------------------------------------------- /core/templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/templates/500.html -------------------------------------------------------------------------------- /core/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/templates/base.html -------------------------------------------------------------------------------- /core/templates/basic_site/basic_stream_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/templates/basic_site/basic_stream_page.html -------------------------------------------------------------------------------- /core/templates/basic_site/search_results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/templates/basic_site/search_results.html -------------------------------------------------------------------------------- /core/templates/core/block_forms/placeholder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/templates/core/block_forms/placeholder.html -------------------------------------------------------------------------------- /core/templates/core/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/templates/core/footer.html -------------------------------------------------------------------------------- /core/templates/core/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/templates/core/header.html -------------------------------------------------------------------------------- /core/templates/core/home_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/templates/core/home_page.html -------------------------------------------------------------------------------- /core/templates/core/includes/section-external-features.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/templates/core/includes/section-external-features.html -------------------------------------------------------------------------------- /core/templates/core/includes/section-fullbleed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/templates/core/includes/section-fullbleed.html -------------------------------------------------------------------------------- /core/templates/core/includes/section-simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/templates/core/includes/section-simple.html -------------------------------------------------------------------------------- /core/templates/core/main-feature.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/templates/core/main-feature.html -------------------------------------------------------------------------------- /core/templates/core/stream_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/templates/core/stream_page.html -------------------------------------------------------------------------------- /core/templates/feeds/main/description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/templates/feeds/main/description.html -------------------------------------------------------------------------------- /core/templates/template_error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/templates/template_error.html -------------------------------------------------------------------------------- /core/templates/wagtailadmin/account/password_reset/email.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/templates/wagtailadmin/account/password_reset/email.txt -------------------------------------------------------------------------------- /core/templates/wagtailadmin/account/password_reset/email_subject.txt: -------------------------------------------------------------------------------- 1 | {% load i18n %} 2 | {% trans "Password reset" %} for {{ domain }} 3 | -------------------------------------------------------------------------------- /core/templates/wagtailadmin/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/templates/wagtailadmin/base.html -------------------------------------------------------------------------------- /core/templates/wagtailadmin/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/templates/wagtailadmin/home.html -------------------------------------------------------------------------------- /core/templates/wagtailadmin/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/templates/wagtailadmin/login.html -------------------------------------------------------------------------------- /core/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/templatetags/core_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/templatetags/core_tags.py -------------------------------------------------------------------------------- /core/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/tests.py -------------------------------------------------------------------------------- /core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/urls.py -------------------------------------------------------------------------------- /core/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/views.py -------------------------------------------------------------------------------- /core/wagtail_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/core/wagtail_hooks.py -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/articles/management_commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/docs/articles/management_commands.md -------------------------------------------------------------------------------- /docs/articles/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/docs/articles/overview.md -------------------------------------------------------------------------------- /docs/articles/template_tags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/docs/articles/template_tags.md -------------------------------------------------------------------------------- /docs/people/management_commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/docs/people/management_commands.md -------------------------------------------------------------------------------- /events/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /events/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/events/admin.py -------------------------------------------------------------------------------- /events/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/events/migrations/0001_initial.py -------------------------------------------------------------------------------- /events/migrations/0002_auto_20150728_1915.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/events/migrations/0002_auto_20150728_1915.py -------------------------------------------------------------------------------- /events/migrations/0003_eventpage_body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/events/migrations/0003_eventpage_body.py -------------------------------------------------------------------------------- /events/migrations/0004_eventlistpage_events_per_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/events/migrations/0004_eventlistpage_events_per_page.py -------------------------------------------------------------------------------- /events/migrations/0005_auto_20151005_2123.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/events/migrations/0005_auto_20151005_2123.py -------------------------------------------------------------------------------- /events/migrations/0006_auto_20151005_2125.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/events/migrations/0006_auto_20151005_2125.py -------------------------------------------------------------------------------- /events/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /events/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/events/models.py -------------------------------------------------------------------------------- /events/templates/events/event_list_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/events/templates/events/event_list_page.html -------------------------------------------------------------------------------- /events/templates/events/event_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/events/templates/events/event_page.html -------------------------------------------------------------------------------- /events/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/events/tests.py -------------------------------------------------------------------------------- /fixtures/staging.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/fixtures/staging.json -------------------------------------------------------------------------------- /hooks/pre-commit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/hooks/pre-commit.py -------------------------------------------------------------------------------- /images/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/images/admin.py -------------------------------------------------------------------------------- /images/image_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/images/image_operations.py -------------------------------------------------------------------------------- /images/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/images/migrations/0001_initial.py -------------------------------------------------------------------------------- /images/migrations/0002_auto_20150923_1943.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/images/migrations/0002_auto_20150923_1943.py -------------------------------------------------------------------------------- /images/migrations/0003_auto_20160405_1542.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/images/migrations/0003_auto_20160405_1542.py -------------------------------------------------------------------------------- /images/migrations/0004_auto_20160606_1603.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/images/migrations/0004_auto_20160606_1603.py -------------------------------------------------------------------------------- /images/migrations/0005_auto_20161108_2120.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/images/migrations/0005_auto_20161108_2120.py -------------------------------------------------------------------------------- /images/migrations/0006_auto_20161108_2123.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/images/migrations/0006_auto_20161108_2123.py -------------------------------------------------------------------------------- /images/migrations/0007_auto_20170124_1541.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/images/migrations/0007_auto_20170124_1541.py -------------------------------------------------------------------------------- /images/migrations/0008_auto_20170302_2108.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/images/migrations/0008_auto_20170302_2108.py -------------------------------------------------------------------------------- /images/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/images/models.py -------------------------------------------------------------------------------- /images/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/templatetags/ocimages_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/images/templatetags/ocimages_tags.py -------------------------------------------------------------------------------- /images/wagtail_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/images/wagtail_hooks.py -------------------------------------------------------------------------------- /interactives/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /interactives/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/interactives/migrations/0001_initial.py -------------------------------------------------------------------------------- /interactives/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /interactives/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/interactives/models.py -------------------------------------------------------------------------------- /interactives/static/interactives/d3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/interactives/static/interactives/d3/LICENSE -------------------------------------------------------------------------------- /interactives/static/interactives/d3/d3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/interactives/static/interactives/d3/d3.js -------------------------------------------------------------------------------- /interactives/static/interactives/d3/d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/interactives/static/interactives/d3/d3.min.js -------------------------------------------------------------------------------- /jobs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jobs/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/jobs/migrations/0001_initial.py -------------------------------------------------------------------------------- /jobs/migrations/0002_auto_20151005_2123.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/jobs/migrations/0002_auto_20151005_2123.py -------------------------------------------------------------------------------- /jobs/migrations/0003_auto_20151005_2124.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/jobs/migrations/0003_auto_20151005_2124.py -------------------------------------------------------------------------------- /jobs/migrations/0004_auto_20151007_1902.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/jobs/migrations/0004_auto_20151007_1902.py -------------------------------------------------------------------------------- /jobs/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jobs/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/jobs/models.py -------------------------------------------------------------------------------- /jobs/templates/jobs/job_posting_list_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/jobs/templates/jobs/job_posting_list_page.html -------------------------------------------------------------------------------- /jobs/templates/jobs/job_posting_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/jobs/templates/jobs/job_posting_page.html -------------------------------------------------------------------------------- /jobs/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jobs/templatetags/jobs_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/jobs/templatetags/jobs_tags.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/manage.py -------------------------------------------------------------------------------- /newsletter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /newsletter/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/newsletter/admin.py -------------------------------------------------------------------------------- /newsletter/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/newsletter/migrations/0001_initial.py -------------------------------------------------------------------------------- /newsletter/migrations/0002_auto_20150723_1822.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/newsletter/migrations/0002_auto_20150723_1822.py -------------------------------------------------------------------------------- /newsletter/migrations/0004_auto_20150723_1914.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/newsletter/migrations/0004_auto_20150723_1914.py -------------------------------------------------------------------------------- /newsletter/migrations/0005_auto_20150723_1924.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/newsletter/migrations/0005_auto_20150723_1924.py -------------------------------------------------------------------------------- /newsletter/migrations/0009_auto_20150724_1551.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/newsletter/migrations/0009_auto_20150724_1551.py -------------------------------------------------------------------------------- /newsletter/migrations/0010_auto_20150728_1903.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/newsletter/migrations/0010_auto_20150728_1903.py -------------------------------------------------------------------------------- /newsletter/migrations/0011_newsletterlistpage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/newsletter/migrations/0011_newsletterlistpage.py -------------------------------------------------------------------------------- /newsletter/migrations/0012_newslettereventlink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/newsletter/migrations/0012_newslettereventlink.py -------------------------------------------------------------------------------- /newsletter/migrations/0013_newsletterlistpage_body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/newsletter/migrations/0013_newsletterlistpage_body.py -------------------------------------------------------------------------------- /newsletter/migrations/0014_newsletterlistpage_intro_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/newsletter/migrations/0014_newsletterlistpage_intro_text.py -------------------------------------------------------------------------------- /newsletter/migrations/0015_newsletterexternalarticlelink2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/newsletter/migrations/0015_newsletterexternalarticlelink2.py -------------------------------------------------------------------------------- /newsletter/migrations/0016_auto_20151005_2123.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/newsletter/migrations/0016_auto_20151005_2123.py -------------------------------------------------------------------------------- /newsletter/migrations/0017_auto_20151005_2124.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/newsletter/migrations/0017_auto_20151005_2124.py -------------------------------------------------------------------------------- /newsletter/migrations/0018_auto_20151015_2253.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/newsletter/migrations/0018_auto_20151015_2253.py -------------------------------------------------------------------------------- /newsletter/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /newsletter/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/newsletter/models.py -------------------------------------------------------------------------------- /newsletter/templates/newsletter/includes/newsletter_head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/newsletter/templates/newsletter/includes/newsletter_head.html -------------------------------------------------------------------------------- /newsletter/templates/newsletter/newsletter_list_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/newsletter/templates/newsletter/newsletter_list_page.html -------------------------------------------------------------------------------- /newsletter/templates/newsletter/newsletter_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/newsletter/templates/newsletter/newsletter_page.html -------------------------------------------------------------------------------- /newsletter/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /newsletter/templatetags/paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/newsletter/templatetags/paths.py -------------------------------------------------------------------------------- /newsletter/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/newsletter/tests.py -------------------------------------------------------------------------------- /opencanada/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/opencanada/__init__.py -------------------------------------------------------------------------------- /opencanada/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/opencanada/middleware.py -------------------------------------------------------------------------------- /opencanada/settings/__init__.py: -------------------------------------------------------------------------------- 1 | from .dev import * 2 | -------------------------------------------------------------------------------- /opencanada/settings/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/opencanada/settings/admin.py -------------------------------------------------------------------------------- /opencanada/settings/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/opencanada/settings/base.py -------------------------------------------------------------------------------- /opencanada/settings/dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/opencanada/settings/dev.py -------------------------------------------------------------------------------- /opencanada/settings/production.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/opencanada/settings/production.py -------------------------------------------------------------------------------- /opencanada/settings/staging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/opencanada/settings/staging.py -------------------------------------------------------------------------------- /opencanada/settings/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/opencanada/settings/test.py -------------------------------------------------------------------------------- /opencanada/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/opencanada/urls.py -------------------------------------------------------------------------------- /opencanada/urls_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/opencanada/urls_admin.py -------------------------------------------------------------------------------- /opencanada/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/opencanada/wsgi.py -------------------------------------------------------------------------------- /people/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /people/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/people/admin.py -------------------------------------------------------------------------------- /people/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/people/fields.py -------------------------------------------------------------------------------- /people/fixtures/people_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/people/fixtures/people_test.json -------------------------------------------------------------------------------- /people/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /people/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /people/management/commands/contributor_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/people/management/commands/contributor_export.py -------------------------------------------------------------------------------- /people/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/people/migrations/0001_initial.py -------------------------------------------------------------------------------- /people/migrations/0002_contributorlistpage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/people/migrations/0002_contributorlistpage.py -------------------------------------------------------------------------------- /people/migrations/0003_create_list_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/people/migrations/0003_create_list_page.py -------------------------------------------------------------------------------- /people/migrations/0004_auto_20150706_1547.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/people/migrations/0004_auto_20150706_1547.py -------------------------------------------------------------------------------- /people/migrations/0005_contributorlistpage_people_per_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/people/migrations/0005_contributorlistpage_people_per_page.py -------------------------------------------------------------------------------- /people/migrations/0006_contributorpage_featured.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/people/migrations/0006_contributorpage_featured.py -------------------------------------------------------------------------------- /people/migrations/0007_auto_20150825_2041.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/people/migrations/0007_auto_20150825_2041.py -------------------------------------------------------------------------------- /people/migrations/0008_auto_20150904_0211.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/people/migrations/0008_auto_20150904_0211.py -------------------------------------------------------------------------------- /people/migrations/0009_auto_20151005_2123.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/people/migrations/0009_auto_20151005_2123.py -------------------------------------------------------------------------------- /people/migrations/0010_auto_20151005_2125.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/people/migrations/0010_auto_20151005_2125.py -------------------------------------------------------------------------------- /people/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /people/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/people/models.py -------------------------------------------------------------------------------- /people/templates/people/contributor_list_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/people/templates/people/contributor_list_page.html -------------------------------------------------------------------------------- /people/templates/people/contributor_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/people/templates/people/contributor_page.html -------------------------------------------------------------------------------- /people/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'csimpson' 2 | -------------------------------------------------------------------------------- /people/templatetags/people_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/people/templatetags/people_tags.py -------------------------------------------------------------------------------- /people/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/people/tests.py -------------------------------------------------------------------------------- /projects/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/projects/admin.py -------------------------------------------------------------------------------- /projects/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/management/commands/collectstatistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/projects/management/commands/collectstatistics.py -------------------------------------------------------------------------------- /projects/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/projects/migrations/0001_initial.py -------------------------------------------------------------------------------- /projects/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/projects/models.py -------------------------------------------------------------------------------- /projects/templates/projects/project_list_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/projects/templates/projects/project_list_page.html -------------------------------------------------------------------------------- /projects/templates/projects/project_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/projects/templates/projects/project_page.html -------------------------------------------------------------------------------- /projects/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/projects/tests.py -------------------------------------------------------------------------------- /projects/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/projects/views.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/setup.cfg -------------------------------------------------------------------------------- /sitemap/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sitemap/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sitemap/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/sitemap/models.py -------------------------------------------------------------------------------- /sitemap/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/sitemap/urls.py -------------------------------------------------------------------------------- /themes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/admin.py -------------------------------------------------------------------------------- /themes/blocks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/blocks/__init__.py -------------------------------------------------------------------------------- /themes/blocks/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/blocks/base.py -------------------------------------------------------------------------------- /themes/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/context_processors.py -------------------------------------------------------------------------------- /themes/migrations/0001_squashed_0025_remove_theme_json_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/migrations/0001_squashed_0025_remove_theme_json_file.py -------------------------------------------------------------------------------- /themes/migrations/0002_auto_20171213_1849.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/migrations/0002_auto_20171213_1849.py -------------------------------------------------------------------------------- /themes/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/models.py -------------------------------------------------------------------------------- /themes/static/themes/components/css/_transparency.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/components/css/_transparency.scss -------------------------------------------------------------------------------- /themes/static/themes/components/js/jquery.scrollify.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/components/js/jquery.scrollify.min.js -------------------------------------------------------------------------------- /themes/static/themes/components/js/transparency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/components/js/transparency.js -------------------------------------------------------------------------------- /themes/static/themes/dark/css/dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/dark/css/dark.scss -------------------------------------------------------------------------------- /themes/static/themes/dark/css/dark_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/dark/css/dark_layout.scss -------------------------------------------------------------------------------- /themes/static/themes/dark/css/dark_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/dark/css/dark_variables.scss -------------------------------------------------------------------------------- /themes/static/themes/dark/img/opencanada-mark-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/dark/img/opencanada-mark-white.png -------------------------------------------------------------------------------- /themes/static/themes/exceptionalism/css/exceptionalism.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/exceptionalism/css/exceptionalism.scss -------------------------------------------------------------------------------- /themes/static/themes/exceptionalism/js/exceptionalism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/exceptionalism/js/exceptionalism.js -------------------------------------------------------------------------------- /themes/static/themes/kurdistan/css/kurdistan.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/kurdistan/css/kurdistan.scss -------------------------------------------------------------------------------- /themes/static/themes/kurdistan/css/kurdistan_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/kurdistan/css/kurdistan_layout.scss -------------------------------------------------------------------------------- /themes/static/themes/kurdistan/css/kurdistan_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/kurdistan/css/kurdistan_variables.scss -------------------------------------------------------------------------------- /themes/static/themes/kurdistan/img/kurdistan-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/kurdistan/img/kurdistan-bg.png -------------------------------------------------------------------------------- /themes/static/themes/kurdistan/img/kurdistan-cloud-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/kurdistan/img/kurdistan-cloud-left.png -------------------------------------------------------------------------------- /themes/static/themes/kurdistan/img/kurdistan-cloud-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/kurdistan/img/kurdistan-cloud-right.png -------------------------------------------------------------------------------- /themes/static/themes/kurdistan/img/kurdistan-foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/kurdistan/img/kurdistan-foreground.png -------------------------------------------------------------------------------- /themes/static/themes/kurdistan/js/kurdistan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/kurdistan/js/kurdistan.js -------------------------------------------------------------------------------- /themes/static/themes/leftistForeignPolicy/img/leftist-sq.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/leftistForeignPolicy/img/leftist-sq.jpg -------------------------------------------------------------------------------- /themes/static/themes/light/css/light.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/light/css/light.scss -------------------------------------------------------------------------------- /themes/static/themes/light/css/light_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/light/css/light_layout.scss -------------------------------------------------------------------------------- /themes/static/themes/light/css/light_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/light/css/light_variables.scss -------------------------------------------------------------------------------- /themes/static/themes/light/img/footer_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/light/img/footer_bg.png -------------------------------------------------------------------------------- /themes/static/themes/light/img/main_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/light/img/main_bg.png -------------------------------------------------------------------------------- /themes/static/themes/light/img/opencanada-logo-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/light/img/opencanada-logo-black.png -------------------------------------------------------------------------------- /themes/static/themes/lind/css/lind.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/lind/css/lind.scss -------------------------------------------------------------------------------- /themes/static/themes/lind/css/lind_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/lind/css/lind_layout.scss -------------------------------------------------------------------------------- /themes/static/themes/lind/css/lind_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/lind/css/lind_variables.scss -------------------------------------------------------------------------------- /themes/static/themes/lind/img/opencanada-logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/lind/img/opencanada-logo-white.png -------------------------------------------------------------------------------- /themes/static/themes/lind/img/opencanada-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/lind/img/opencanada-logo.png -------------------------------------------------------------------------------- /themes/static/themes/lind/img/ubc-logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/lind/img/ubc-logo-white.png -------------------------------------------------------------------------------- /themes/static/themes/lind/img/ubc-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/lind/img/ubc-logo.png -------------------------------------------------------------------------------- /themes/static/themes/maplewashing/css/maplewashing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/maplewashing/css/maplewashing.scss -------------------------------------------------------------------------------- /themes/static/themes/maplewashing/css/maplewashing_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/maplewashing/css/maplewashing_layout.scss -------------------------------------------------------------------------------- /themes/static/themes/millennials/css/color_hover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/css/color_hover.scss -------------------------------------------------------------------------------- /themes/static/themes/millennials/css/millennials.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/css/millennials.scss -------------------------------------------------------------------------------- /themes/static/themes/millennials/css/millennials_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/css/millennials_layout.scss -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2016/andrei-marinescu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2016/andrei-marinescu.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2016/ashley-heideman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2016/ashley-heideman.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2016/ben-rankin-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2016/ben-rankin-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2016/ben-rankin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2016/ben-rankin.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2016/chelsea-sayers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2016/chelsea-sayers.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2016/faces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2016/faces.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2016/hilary-jensen-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2016/hilary-jensen-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2016/hilary-jensen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2016/hilary-jensen.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2016/james-clark-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2016/james-clark-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2016/james-clark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2016/james-clark.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2016/lynsey-longfield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2016/lynsey-longfield.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2016/neil-krell-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2016/neil-krell-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2016/neil-krell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2016/neil-krell.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2016/nicholas-harper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2016/nicholas-harper.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2016/paige-gouin-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2016/paige-gouin-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2016/paige-gouin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2016/paige-gouin.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2016/peter-wright-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2016/peter-wright-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2016/peter-wright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2016/peter-wright.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2016/rory-morrison-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2016/rory-morrison-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2016/rory-morrison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2016/rory-morrison.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2016/sean-jellow-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2016/sean-jellow-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2016/sean-jellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2016/sean-jellow.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2017/abdullah-abdi-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2017/abdullah-abdi-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2017/abdullah-abdi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2017/abdullah-abdi.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2017/adam-moscoe-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2017/adam-moscoe-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2017/adam-moscoe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2017/adam-moscoe.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2017/adam-rossiter-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2017/adam-rossiter-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2017/adam-rossiter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2017/adam-rossiter.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2017/alina-kwan-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2017/alina-kwan-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2017/alina-kwan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2017/alina-kwan.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2017/anton-bezglasnyy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2017/anton-bezglasnyy.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2017/colin-chau-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2017/colin-chau-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2017/colin-chau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2017/colin-chau.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2017/daniel-barber-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2017/daniel-barber-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2017/daniel-barber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2017/daniel-barber.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2017/ena-cimic-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2017/ena-cimic-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2017/ena-cimic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2017/ena-cimic.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2017/fanie-thibeault.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2017/fanie-thibeault.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2017/isaac-caverhill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2017/isaac-caverhill.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2017/kristi-choi-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2017/kristi-choi-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2017/kristi-choi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2017/kristi-choi.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2017/mahmud-naqi-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2017/mahmud-naqi-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2017/mahmud-naqi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2017/mahmud-naqi.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2017/rasha-al-katta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2017/rasha-al-katta.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2017/samantha-tam-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2017/samantha-tam-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2017/samantha-tam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2017/samantha-tam.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2017/shawn-friele-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2017/shawn-friele-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2017/shawn-friele.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2017/shawn-friele.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2018/ahmed-hussein-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2018/ahmed-hussein-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2018/ahmed-hussein.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2018/ahmed-hussein.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2018/april-killikelly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2018/april-killikelly.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2018/bryan-tomlinson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2018/bryan-tomlinson.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2018/chantal-martin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2018/chantal-martin.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2018/daniel-canough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2018/daniel-canough.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2018/djordje-vidovic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2018/djordje-vidovic.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2018/ian-grant-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2018/ian-grant-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2018/ian-grant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2018/ian-grant.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2018/jonathan-mcauley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2018/jonathan-mcauley.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2018/lina-alvarez-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2018/lina-alvarez-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2018/lina-alvarez.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2018/lina-alvarez.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2018/mallory-bikinas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2018/mallory-bikinas.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2018/mireille-le-ngoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2018/mireille-le-ngoc.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2018/nadine-khoury-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2018/nadine-khoury-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2018/nadine-khoury.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2018/nadine-khoury.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2018/nicholas-schiavo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2018/nicholas-schiavo.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2018/nika-moeini-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2018/nika-moeini-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2018/nika-moeini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2018/nika-moeini.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2018/paul-zorn-pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2018/paul-zorn-pink.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2018/sara-marshall-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2018/sara-marshall-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2018/sara-marshall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2018/sara-marshall.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2018/sid-rashid-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2018/sid-rashid-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2018/sid-rashid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2018/sid-rashid.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2018/wilson-leite-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2018/wilson-leite-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2018/wilson-leite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2018/wilson-leite.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2018/wisam-salih-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2018/wisam-salih-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/2018/wisam-salih.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/2018/wisam-salih.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/aaron-joshua-pinto-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/aaron-joshua-pinto-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/aaron-joshua-pinto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/aaron-joshua-pinto.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/abdullah-abdi-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/abdullah-abdi-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/abdullah-abdi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/abdullah-abdi.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/adam-moscoe-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/adam-moscoe-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/adam-moscoe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/adam-moscoe.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/adam-rossiter-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/adam-rossiter-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/adam-rossiter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/adam-rossiter.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/ahmed-hussein-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/ahmed-hussein-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/ahmed-hussein.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/ahmed-hussein.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/alina-kwan-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/alina-kwan-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/alina-kwan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/alina-kwan.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/andrei-marinescu-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/andrei-marinescu-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/andrei-marinescu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/andrei-marinescu.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/anton-bezglasnyy-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/anton-bezglasnyy-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/anton-bezglasnyy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/anton-bezglasnyy.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/april-killikelly-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/april-killikelly-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/april-killikelly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/april-killikelly.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/ashley-heideman-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/ashley-heideman-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/ashley-heideman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/ashley-heideman.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/ben-rankin-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/ben-rankin-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/ben-rankin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/ben-rankin.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/bryan-tomlinson-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/bryan-tomlinson-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/bryan-tomlinson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/bryan-tomlinson.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/chantal-martin-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/chantal-martin-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/chantal-martin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/chantal-martin.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/chelsea-sayers-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/chelsea-sayers-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/chelsea-sayers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/chelsea-sayers.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/christopher-heffernan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/christopher-heffernan.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/colin-chau-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/colin-chau-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/colin-chau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/colin-chau.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/daniel-barber-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/daniel-barber-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/daniel-barber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/daniel-barber.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/daniel-canough-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/daniel-canough-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/daniel-canough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/daniel-canough.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/djordje-vidovic-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/djordje-vidovic-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/djordje-vidovic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/djordje-vidovic.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/emma-bell-scollan-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/emma-bell-scollan-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/emma-bell-scollan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/emma-bell-scollan.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/ena-cimic-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/ena-cimic-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/ena-cimic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/ena-cimic.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/faces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/faces.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/fanie-thibeault-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/fanie-thibeault-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/fanie-thibeault.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/fanie-thibeault.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/hilary-jensen-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/hilary-jensen-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/hilary-jensen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/hilary-jensen.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/ian-grant-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/ian-grant-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/ian-grant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/ian-grant.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/isaac-caverhill-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/isaac-caverhill-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/isaac-caverhill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/isaac-caverhill.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/james-clark-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/james-clark-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/james-clark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/james-clark.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/jonathan-mcauley-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/jonathan-mcauley-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/jonathan-mcauley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/jonathan-mcauley.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/karrolyn-van-helden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/karrolyn-van-helden.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/kateryna-sherysheva.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/kateryna-sherysheva.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/katharine-cornish-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/katharine-cornish-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/katharine-cornish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/katharine-cornish.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/kristi-choi-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/kristi-choi-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/kristi-choi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/kristi-choi.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/lina-alvarez-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/lina-alvarez-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/lina-alvarez.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/lina-alvarez.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/lynsey-longfield-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/lynsey-longfield-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/lynsey-longfield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/lynsey-longfield.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/madeleine-sourisseau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/madeleine-sourisseau.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/mahmud-naqi-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/mahmud-naqi-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/mahmud-naqi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/mahmud-naqi.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/mallory-bikinas-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/mallory-bikinas-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/mallory-bikinas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/mallory-bikinas.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/marie-soleil-fecteau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/marie-soleil-fecteau.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/mireille-le-ngoc-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/mireille-le-ngoc-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/mireille-le-ngoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/mireille-le-ngoc.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/nadine-khoury-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/nadine-khoury-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/nadine-khoury.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/nadine-khoury.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/neil-krell-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/neil-krell-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/neil-krell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/neil-krell.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/nicholas-harper-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/nicholas-harper-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/nicholas-harper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/nicholas-harper.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/nicholas-schiavo-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/nicholas-schiavo-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/nicholas-schiavo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/nicholas-schiavo.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/nika-moeini-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/nika-moeini-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/nika-moeini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/nika-moeini.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/paige-gouin-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/paige-gouin-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/paige-gouin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/paige-gouin.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/paul-zorn-pink-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/paul-zorn-pink-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/paul-zorn-pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/paul-zorn-pink.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/peter-wright-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/peter-wright-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/peter-wright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/peter-wright.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/rasha-al-katta-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/rasha-al-katta-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/rasha-al-katta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/rasha-al-katta.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/rory-morrison-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/rory-morrison-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/rory-morrison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/rory-morrison.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/samantha-tam-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/samantha-tam-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/samantha-tam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/samantha-tam.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/sara-marshall-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/sara-marshall-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/sara-marshall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/sara-marshall.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/sean-jellow-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/sean-jellow-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/sean-jellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/sean-jellow.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/shafiqah-muhamad-nor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/shafiqah-muhamad-nor.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/shawn-friele-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/shawn-friele-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/shawn-friele.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/shawn-friele.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/sid-rashid-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/sid-rashid-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/sid-rashid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/sid-rashid.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/wilson-leite-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/wilson-leite-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/wilson-leite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/wilson-leite.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/wisam-salih-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/wisam-salih-sm.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/img/wisam-salih.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/img/wisam-salih.png -------------------------------------------------------------------------------- /themes/static/themes/millennials/js/letterEffect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/js/letterEffect.js -------------------------------------------------------------------------------- /themes/static/themes/millennials/js/millennials.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/js/millennials.js -------------------------------------------------------------------------------- /themes/static/themes/millennials/js/slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/millennials/js/slider.js -------------------------------------------------------------------------------- /themes/static/themes/tan/css/tan.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/tan/css/tan.scss -------------------------------------------------------------------------------- /themes/static/themes/tan/css/tan_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/tan/css/tan_layout.scss -------------------------------------------------------------------------------- /themes/static/themes/tan/css/tan_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/tan/css/tan_variables.scss -------------------------------------------------------------------------------- /themes/static/themes/theWatchers/css/the_watchers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/theWatchers/css/the_watchers.scss -------------------------------------------------------------------------------- /themes/static/themes/theWatchers/css/the_watchers_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/theWatchers/css/the_watchers_layout.scss -------------------------------------------------------------------------------- /themes/static/themes/theWatchers/css/the_watchers_variables.scss: -------------------------------------------------------------------------------- 1 | $body-bg-color: #e8e7e6; 2 | $watchers_red: #b7143e; 3 | 4 | -------------------------------------------------------------------------------- /themes/static/themes/theWatchers/img/csec_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/theWatchers/img/csec_icon.png -------------------------------------------------------------------------------- /themes/static/themes/theWatchers/img/csis_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/theWatchers/img/csis_icon.png -------------------------------------------------------------------------------- /themes/static/themes/theWatchers/img/rcmp_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/theWatchers/img/rcmp_icon.png -------------------------------------------------------------------------------- /themes/static/themes/theWatchers/js/the_watchers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/theWatchers/js/the_watchers.js -------------------------------------------------------------------------------- /themes/static/themes/transparentHeader/css/transparentheader_layout.scss: -------------------------------------------------------------------------------- 1 | //SCSS overrides -------------------------------------------------------------------------------- /themes/static/themes/transparentHeader/css/transparentheader_variables.scss: -------------------------------------------------------------------------------- 1 | //SCSS Variables -------------------------------------------------------------------------------- /themes/static/themes/twitterati/css/twitterati.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/twitterati/css/twitterati.scss -------------------------------------------------------------------------------- /themes/static/themes/twitterati/css/twitterati_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/twitterati/css/twitterati_layout.scss -------------------------------------------------------------------------------- /themes/static/themes/twitterati/css/twitterati_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/twitterati/css/twitterati_variables.scss -------------------------------------------------------------------------------- /themes/static/themes/twitterati/js/twitterati.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/twitterati/js/twitterati.js -------------------------------------------------------------------------------- /themes/static/themes/womendiplomacy/css/women_diplomacy.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/womendiplomacy/css/women_diplomacy.scss -------------------------------------------------------------------------------- /themes/static/themes/womendiplomacy/img/background-top.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/womendiplomacy/img/background-top.jpg -------------------------------------------------------------------------------- /themes/static/themes/womendiplomacy/img/bottom-background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/womendiplomacy/img/bottom-background.jpg -------------------------------------------------------------------------------- /themes/static/themes/womendiplomacy/js/women_diplomacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/womendiplomacy/js/women_diplomacy.js -------------------------------------------------------------------------------- /themes/static/themes/yearinreview2016/img/signature.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/yearinreview2016/img/signature.svg -------------------------------------------------------------------------------- /themes/static/themes/yearinreview2016/js/yearinreview2016.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/static/themes/yearinreview2016/js/yearinreview2016.js -------------------------------------------------------------------------------- /themes/templates/themes/components/simple_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/templates/themes/components/simple_footer.html -------------------------------------------------------------------------------- /themes/templates/themes/dark/articles/article_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/templates/themes/dark/articles/article_page.html -------------------------------------------------------------------------------- /themes/templates/themes/dark/articles/series_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/templates/themes/dark/articles/series_page.html -------------------------------------------------------------------------------- /themes/templates/themes/default/articles/article_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/templates/themes/default/articles/article_page.html -------------------------------------------------------------------------------- /themes/templates/themes/default/articles/series_list_page.html: -------------------------------------------------------------------------------- 1 | {% include 'articles/series_list_page.html' %} 2 | -------------------------------------------------------------------------------- /themes/templates/themes/default/articles/series_page.html: -------------------------------------------------------------------------------- 1 | {% include 'articles/series_page.html' %} -------------------------------------------------------------------------------- /themes/templates/themes/default/articles/topic_list_page.html: -------------------------------------------------------------------------------- 1 | {% include 'articles/topic_list_page.html' %} 2 | -------------------------------------------------------------------------------- /themes/templates/themes/default/core/home_page.html: -------------------------------------------------------------------------------- 1 | 2 | {% include 'core/home_page.html' %} 3 | -------------------------------------------------------------------------------- /themes/templates/themes/default/core/stream_page.html: -------------------------------------------------------------------------------- 1 | 2 | {% include 'core/stream_page.html' %} 3 | -------------------------------------------------------------------------------- /themes/templates/themes/default/events/event_list_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/templates/themes/default/events/event_list_page.html -------------------------------------------------------------------------------- /themes/templates/themes/default/events/event_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/templates/themes/default/events/event_page.html -------------------------------------------------------------------------------- /themes/templates/themes/default/jobs/job_posting_list_page.html: -------------------------------------------------------------------------------- 1 | {% include 'jobs/job_posting_list_page.html' %} 2 | -------------------------------------------------------------------------------- /themes/templates/themes/default/jobs/job_posting_page.html: -------------------------------------------------------------------------------- 1 | {% include 'jobs/job_posting_page.html' %} 2 | -------------------------------------------------------------------------------- /themes/templates/themes/default/people/contributor_list_page.html: -------------------------------------------------------------------------------- 1 | {% include 'people/contributor_list_page.html' %} 2 | -------------------------------------------------------------------------------- /themes/templates/themes/default/people/contributor_page.html: -------------------------------------------------------------------------------- 1 | {% include 'people/contributor_page.html' %} 2 | -------------------------------------------------------------------------------- /themes/templates/themes/default/projects/project_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/templates/themes/default/projects/project_page.html -------------------------------------------------------------------------------- /themes/templates/themes/exceptionalism/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/templates/themes/exceptionalism/header.html -------------------------------------------------------------------------------- /themes/templates/themes/kurdistan/articles/article_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/templates/themes/kurdistan/articles/article_page.html -------------------------------------------------------------------------------- /themes/templates/themes/light/articles/article-feature.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/templates/themes/light/articles/article-feature.html -------------------------------------------------------------------------------- /themes/templates/themes/light/articles/article_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/templates/themes/light/articles/article_page.html -------------------------------------------------------------------------------- /themes/templates/themes/light/articles/series_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/templates/themes/light/articles/series_page.html -------------------------------------------------------------------------------- /themes/templates/themes/lind/articles/article_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/templates/themes/lind/articles/article_page.html -------------------------------------------------------------------------------- /themes/templates/themes/lind/articles/series_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/templates/themes/lind/articles/series_page.html -------------------------------------------------------------------------------- /themes/templates/themes/lind/lind_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/templates/themes/lind/lind_footer.html -------------------------------------------------------------------------------- /themes/templates/themes/lind/lind_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/templates/themes/lind/lind_header.html -------------------------------------------------------------------------------- /themes/templates/themes/maplewashing/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/templates/themes/maplewashing/header.html -------------------------------------------------------------------------------- /themes/templates/themes/tan/articles/article_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/templates/themes/tan/articles/article_page.html -------------------------------------------------------------------------------- /themes/templates/themes/yearinreview2016/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/templates/themes/yearinreview2016/header.html -------------------------------------------------------------------------------- /themes/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/templatetags/theme_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/themes/templatetags/theme_tags.py -------------------------------------------------------------------------------- /vagrant/provision.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIGIHub/opencanada/HEAD/vagrant/provision.sh --------------------------------------------------------------------------------