├── .coveragerc ├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── auto_assign.yml ├── config.yml ├── weekly-digest.yml └── workflows │ └── master_mspglobal.yml ├── .gitignore ├── .idea ├── inspectionProfiles │ └── Project_Default.xml ├── microsoft_student_partners.iml ├── misc.xml ├── modules.xml ├── rGraphicsSettings.xml ├── rSettings.xml ├── rpackages.xml ├── runConfigurations │ ├── merge_production_dotenvs_in_dotenv.xml │ ├── migrate.xml │ ├── pytest___.xml │ ├── pytest__users.xml │ ├── runserver.xml │ └── runserver_plus.xml ├── vcs.xml ├── watcherTasks.xml └── webResources.xml ├── .pre-commit-config.yaml ├── .pylintrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CONTRIBUTORS.txt ├── LICENSE ├── README.md ├── README.rst ├── config ├── __init__.py ├── settings │ ├── __init__.py │ ├── base.py │ ├── local.py │ ├── production.py │ └── test.py ├── urls.py └── wsgi.py ├── db.sqlite3 ├── docs ├── Makefile ├── __init__.py ├── conf.py ├── index.rst ├── make.bat └── pycharm │ ├── configuration.rst │ └── images │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 7.png │ ├── 8.png │ ├── f1.png │ ├── f2.png │ ├── f3.png │ ├── f4.png │ ├── issue1.png │ └── issue2.png ├── locale └── README.rst ├── manage.py ├── microsoft_student_partners ├── __init__.py ├── certificates │ ├── Libre_Baskerville │ │ ├── LibreBaskerville-Bold.ttf │ │ ├── LibreBaskerville-Italic.ttf │ │ ├── LibreBaskerville-Regular.ttf │ │ └── OFL.txt │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── helpers.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── msp_certificate.png │ ├── tests.py │ ├── urls.py │ └── views.py ├── conftest.py ├── contrib │ ├── __init__.py │ └── sites │ │ ├── __init__.py │ │ └── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_alter_domain_unique.py │ │ ├── 0003_set_site_domain_and_name.py │ │ └── __init__.py ├── github │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ └── views.py ├── msp │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── static │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ ├── style.css │ │ │ └── style.min.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── images │ │ │ ├── banner-img.jpg │ │ │ ├── blog │ │ │ │ ├── 1.jpg │ │ │ │ ├── 2.jpg │ │ │ │ ├── 3.jpg │ │ │ │ ├── 4.jpg │ │ │ │ ├── 5.jpg │ │ │ │ ├── 6.jpg │ │ │ │ └── blog-details.jpg │ │ │ ├── client_logo │ │ │ │ ├── client_logo-1.png │ │ │ │ ├── client_logo-2.png │ │ │ │ ├── client_logo-3.png │ │ │ │ ├── client_logo-4.png │ │ │ │ └── client_logo-5.png │ │ │ ├── comments │ │ │ │ ├── 1.jpg │ │ │ │ ├── 2.jpg │ │ │ │ ├── 3.jpg │ │ │ │ └── 4.jpg │ │ │ ├── footer-img.jpg │ │ │ ├── icone-1.png │ │ │ ├── icone-2.png │ │ │ ├── icone-3.png │ │ │ ├── image_about_left.jpg │ │ │ ├── image_about_right.jpg │ │ │ ├── image_large.jpg │ │ │ ├── img-2.png │ │ │ ├── img-g.png │ │ │ ├── left-r.png │ │ │ ├── logo_img.png │ │ │ ├── logos-s.png │ │ │ ├── post │ │ │ │ ├── 1.jpg │ │ │ │ ├── 2.jpg │ │ │ │ └── 3.jpg │ │ │ ├── right-r.png │ │ │ ├── s-left-1.png │ │ │ ├── s-left.png │ │ │ ├── shap-a.png │ │ │ ├── team │ │ │ │ ├── tm-1.jpg │ │ │ │ ├── tm-2.jpg │ │ │ │ └── tm-3.jpg │ │ │ ├── testimonial-1.jpg │ │ │ ├── testimonial-2.jpg │ │ │ └── testimonial-3.jpg │ │ ├── js │ │ │ ├── bootstrap.min.js │ │ │ ├── jquery-1.12.0.min.js │ │ │ ├── theme.js │ │ │ └── theme.min.js │ │ └── vendors │ │ │ ├── animate │ │ │ ├── animate.css │ │ │ └── wow.min.js │ │ │ ├── font-awesome │ │ │ ├── css │ │ │ │ └── font-awesome.min.css │ │ │ └── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ ├── owl_carousel │ │ │ ├── owl.carousel.css │ │ │ └── owl.carousel.min.js │ │ │ └── popup │ │ │ ├── lightbox.css │ │ │ └── lightbox.min.js │ ├── templates │ │ ├── about.html │ │ ├── blog-single.html │ │ ├── blog.html │ │ ├── contact.html │ │ ├── elements.html │ │ ├── footer.html │ │ ├── index.html │ │ ├── mspbase.html │ │ ├── navbar.html │ │ └── services.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── mspsoc │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── organizers.json │ ├── project.json │ ├── projects_list.json │ ├── tests.py │ ├── tweets.csv │ ├── urls.py │ └── views.py ├── qpower │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── organizers.json │ ├── tests.py │ ├── urls.py │ └── views.py ├── static │ ├── css │ │ └── project.css │ ├── fonts │ │ └── .gitkeep │ ├── images │ │ ├── QPower-logo.png │ │ ├── favicons │ │ │ ├── android-chrome-192x192.png │ │ │ ├── android-chrome-512x512.png │ │ │ ├── apple-touch-icon.png │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon.ico │ │ │ └── site.webmanifest │ │ └── msp_certificate.png │ ├── js │ │ └── project.js │ ├── microsoft │ │ ├── Blog Header Graphic │ │ │ ├── 2019_MSP_IO_Pattern_Blog_Black_850x376.png │ │ │ ├── 2019_MSP_IO_Pattern_Blog_Blue_850x376.png │ │ │ └── 2019_MSP_IO_Pattern_Blog_White_850x376.png │ │ ├── Business Cards │ │ │ ├── MSP_2019_BusinessCard_CMYK_Full-Bleed.ai │ │ │ └── MSP_2019_BusinessCard_CMYK_Full-Bleed_CALLOUTS.pdf │ │ ├── Certificates (Workshop attendees) │ │ │ └── MSP_2019_Certificate_Attendee.ai │ │ ├── Email │ │ │ ├── Layout │ │ │ │ └── 2019_MSP_IO_Pattern_Email.png │ │ │ └── MSP_Email_Template_2019_Final.oft │ │ ├── Microsoft Student Partner Style Guide.pdf │ │ ├── Poster │ │ │ ├── 2019_MSP_IO_Pattern_Poster_22x32_Black.ai │ │ │ ├── 2019_MSP_IO_Pattern_Poster_22x32_Black.pdf │ │ │ ├── 2019_MSP_IO_Pattern_Poster_22x32_White.ai │ │ │ ├── 2019_MSP_IO_Pattern_Poster_22x32_White.pdf │ │ │ └── Layout │ │ │ │ ├── 2019_MSP_IO_Pattern_Poster_22x32_Black.png │ │ │ │ └── 2019_MSP_IO_Pattern_Poster_22x32_White.png │ │ ├── Social │ │ │ └── Source Files │ │ │ │ ├── 2019_MSP_IO_Pattern_Black_FBAd_1200x628.ai │ │ │ │ ├── 2019_MSP_IO_Pattern_Blue_FBAd_1200x628.ai │ │ │ │ ├── 2019_MSP_IO_Pattern_White_FBAd_1200x628.ai │ │ │ │ ├── MSP_2019_SocialAds_Circuit_Blue.psd │ │ │ │ ├── MSP_2019_SocialAds_Circuit_Green.psd │ │ │ │ └── MSP_2019_SocialAds_Circuit_Purple.psd │ │ ├── Stickers │ │ │ ├── AI │ │ │ │ ├── MSP_2019_Sticker_Alpha1_Milestone_Art.ai │ │ │ │ ├── MSP_2019_Sticker_Alpha2_Milestone_Art.ai │ │ │ │ ├── MSP_2019_Sticker_Beta_Milestone_Art.ai │ │ │ │ ├── MSP_2019_Sticker_Code_Art.ai │ │ │ │ ├── MSP_2019_Sticker_Gold_Milestone_Art.ai │ │ │ │ ├── MSP_2019_Sticker_Ninja_Art.ai │ │ │ │ └── MSP_2019_Sticker_Polygons_Art.ai │ │ │ └── PDF │ │ │ │ ├── MSP_2019_Sticker_Alpha1_Milestone_Art.pdf │ │ │ │ ├── MSP_2019_Sticker_Alpha2_Milestone_Art.pdf │ │ │ │ ├── MSP_2019_Sticker_Beta_Milestone_Art.pdf │ │ │ │ ├── MSP_2019_Sticker_Code_Art.pdf │ │ │ │ ├── MSP_2019_Sticker_Gold_Milestone_Art.pdf │ │ │ │ ├── MSP_2019_Sticker_Ninja_Art.pdf │ │ │ │ └── MSP_2019_Sticker_Polygons_Art.pdf │ │ └── Visual ID and Logo │ │ │ ├── Code is Life Shield Logo │ │ │ ├── Blue │ │ │ │ ├── CMYK │ │ │ │ │ ├── MSP_Shield logo_CMYK_Blue.eps │ │ │ │ │ ├── MSP_Shield logo_CMYK_Blue.pdf │ │ │ │ │ └── MSP_Shield_logo_CMYK_Blue.png │ │ │ │ └── RGB │ │ │ │ │ ├── MSP_Shield logo_RGB_Blue.eps │ │ │ │ │ ├── MSP_Shield logo_RGB_Blue.pdf │ │ │ │ │ └── MSP_Shield_logo_RGB_Blue.png │ │ │ ├── Grayscale │ │ │ │ ├── CMYK │ │ │ │ │ ├── MSP_ Shield logo_CMYK_Blck.eps │ │ │ │ │ ├── MSP_ Shield logo_CMYK_Blck.pdf │ │ │ │ │ ├── MSP_ Shield logo_CMYK_Wht.eps │ │ │ │ │ ├── MSP_ Shield logo_CMYK_Wht.pdf │ │ │ │ │ ├── MSP_ Shield_logo_CMYK_Blck.jpg │ │ │ │ │ ├── MSP_ Shield_logo_CMYK_Blck.png │ │ │ │ │ └── MSP_ Shield_logo_CMYK_Wht.png │ │ │ │ └── RGB │ │ │ │ │ ├── MSP_ Shield logo_RGB_Blck.eps │ │ │ │ │ ├── MSP_ Shield logo_RGB_Blck.pdf │ │ │ │ │ ├── MSP_ Shield logo_RGB_Wht.eps │ │ │ │ │ ├── MSP_ Shield logo_RGB_Wht.pdf │ │ │ │ │ ├── MSP_ Shield_logo_RGB_Blck.jpg │ │ │ │ │ ├── MSP_ Shield_logo_RGB_Blck.png │ │ │ │ │ └── MSP_ Shield_logo_RGB_Wht.png │ │ │ ├── MS_MSP Brand Refresh_ Shields_CMYK.ai │ │ │ └── MS_MSP Brand Refresh_Shields_RGB.ai │ │ │ └── Student Partner Visual ID │ │ │ ├── Blue_Black │ │ │ ├── CMYK │ │ │ │ ├── 1Line │ │ │ │ │ ├── 0419_MS_MSP_logo_Lockups_CMYK_1line_blue.pdf │ │ │ │ │ ├── 0419_MS_MSP_logo_Lockups_CMYK_MSP-1line-blue.eps │ │ │ │ │ ├── 0419_MS_MSP_logo_Lockups_CMYK_MSP-1line-blue.jpg │ │ │ │ │ └── 0419_MS_MSP_logo_Lockups_CMYK_MSP-1line-blue.png │ │ │ │ └── Stacked │ │ │ │ │ ├── MSP_visual ID_CMYK_stacked_blue.eps │ │ │ │ │ ├── MSP_visual ID_CMYK_stacked_blue.jpg │ │ │ │ │ ├── MSP_visual ID_CMYK_stacked_blue.pdf │ │ │ │ │ └── MSP_visual ID_CMYK_stacked_blue.png │ │ │ └── RGB │ │ │ │ ├── 1Line │ │ │ │ ├── MSP_visual ID_RGB_1line_blue.eps │ │ │ │ ├── MSP_visual ID_RGB_1line_blue.jpg │ │ │ │ ├── MSP_visual ID_RGB_1line_blue.pdf │ │ │ │ └── MSP_visual ID_RGB_1line_blue.png │ │ │ │ └── Stacked │ │ │ │ ├── MSP_visual ID_RGB_stacked_blue.eps │ │ │ │ ├── MSP_visual ID_RGB_stacked_blue.jpg │ │ │ │ ├── MSP_visual ID_RGB_stacked_blue.pdf │ │ │ │ └── MSP_visual ID_RGB_stacked_blue.png │ │ │ ├── Blue_White │ │ │ ├── CMYK │ │ │ │ ├── 1Line │ │ │ │ │ ├── MSP_visual ID_CMYK_1line_blue_white.eps │ │ │ │ │ ├── MSP_visual ID_CMYK_1line_blue_white.pdf │ │ │ │ │ └── MSP_visual-ID_CMYK_1line_blue_white.png │ │ │ │ └── Stacked │ │ │ │ │ ├── MSP_visual ID_CMYK_stacked_blue_white.eps │ │ │ │ │ ├── MSP_visual ID_CMYK_stacked_blue_white.pdf │ │ │ │ │ └── MSP_visual-ID_CMYK_stacked_blue_white.png │ │ │ └── RGB │ │ │ │ └── Stacked │ │ │ │ ├── MSP_visual ID_RGB_stacked_blue_white.eps │ │ │ │ ├── MSP_visual ID_RGB_stacked_blue_white.pdf │ │ │ │ └── MSP_visual-ID_RGB_stacked_blue_white.png │ │ │ ├── Grayscale │ │ │ ├── CMYK │ │ │ │ ├── 1Line │ │ │ │ │ ├── MSP_visual ID_CMYK_1line_blck.eps │ │ │ │ │ ├── MSP_visual ID_CMYK_1line_blck.jpg │ │ │ │ │ ├── MSP_visual ID_CMYK_1line_blck.pdf │ │ │ │ │ ├── MSP_visual ID_CMYK_1line_blck.png │ │ │ │ │ ├── MSP_visual ID_CMYK_1line_wht.eps │ │ │ │ │ ├── MSP_visual ID_CMYK_1line_wht.pdf │ │ │ │ │ └── MSP_visual ID_CMYK_1line_wht.png │ │ │ │ └── Stacked │ │ │ │ │ ├── MSP_visual ID_CMYK_stacked_blk.eps │ │ │ │ │ └── MSP_visual ID_CMYK_stacked_blk.jpg │ │ │ └── RGB │ │ │ │ ├── 1Line │ │ │ │ ├── MSP_visual ID_RGB_1line_blk.eps │ │ │ │ ├── MSP_visual ID_RGB_1line_blk.jpg │ │ │ │ ├── MSP_visual ID_RGB_1line_blk.pdf │ │ │ │ ├── MSP_visual ID_RGB_1line_blk.png │ │ │ │ ├── MSP_visual ID_RGB_1line_wht.eps │ │ │ │ ├── MSP_visual ID_RGB_1line_wht.pdf │ │ │ │ └── MSP_visual ID_RGB_1line_wht.png │ │ │ │ └── Stacked │ │ │ │ ├── MSP_visual ID_RGB_stacked_blk.eps │ │ │ │ ├── MSP_visual ID_RGB_stacked_blk.jpg │ │ │ │ ├── MSP_visual ID_RGB_stacked_blk.pdf │ │ │ │ ├── MSP_visual ID_RGB_stacked_blk.png │ │ │ │ ├── MSP_visual ID_RGB_stacked_wht.eps │ │ │ │ ├── MSP_visual ID_RGB_stacked_wht.pdf │ │ │ │ └── MSP_visual ID_RGB_stacked_wht.png │ │ │ ├── MSP_logo_Lockups_CMYK.ai │ │ │ └── MSP_logo_Lockups_RGB.ai │ ├── mspsoc │ │ ├── css │ │ │ ├── animate.css │ │ │ ├── bootstrap.min.css │ │ │ ├── flaticon.css │ │ │ ├── font-awesome.min.css │ │ │ ├── magnific-popup.css │ │ │ ├── nice-select.css │ │ │ ├── owl.carousel.min.css │ │ │ ├── slicknav.css │ │ │ ├── style.css │ │ │ ├── style.map │ │ │ ├── theme-default.css │ │ │ ├── theme-default.map │ │ │ └── themify-icons.css │ │ ├── fonts │ │ │ ├── Flaticon.eot │ │ │ ├── Flaticon.svg │ │ │ ├── Flaticon.ttf │ │ │ ├── Flaticon.woff │ │ │ ├── Flaticon.woff2 │ │ │ ├── FontAwesome.otf │ │ │ ├── fa-brands-400.eot │ │ │ ├── fa-brands-400.svg │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.eot │ │ │ ├── fa-regular-400.svg │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-solid-900.eot │ │ │ ├── fa-solid-900.svg │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff │ │ │ ├── fa-solid-900.woff2 │ │ │ ├── flaticon.css │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ ├── fontawesome-webfont.woff2 │ │ │ ├── themify.eot │ │ │ ├── themify.svg │ │ │ ├── themify.ttf │ │ │ └── themify.woff │ │ ├── img │ │ │ ├── about │ │ │ │ ├── shap1.png │ │ │ │ └── shap2.png │ │ │ ├── banner │ │ │ │ ├── banner_1.png │ │ │ │ ├── breadcam_bg.png │ │ │ │ ├── footer_ball.png │ │ │ │ ├── footer_bg_1.png │ │ │ │ ├── path.png │ │ │ │ ├── path2.png │ │ │ │ └── resister.png │ │ │ ├── barnd │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ ├── bg.png │ │ │ │ └── info.png │ │ │ ├── elements │ │ │ │ ├── a.jpg │ │ │ │ ├── a2.jpg │ │ │ │ ├── d.jpg │ │ │ │ ├── disabled-check.png │ │ │ │ ├── disabled-radio.png │ │ │ │ ├── f1.jpg │ │ │ │ ├── f2.jpg │ │ │ │ ├── f3.jpg │ │ │ │ ├── f4.jpg │ │ │ │ ├── f5.jpg │ │ │ │ ├── f6.jpg │ │ │ │ ├── f7.jpg │ │ │ │ ├── f8.jpg │ │ │ │ ├── g1.jpg │ │ │ │ ├── g2.jpg │ │ │ │ ├── g3.jpg │ │ │ │ ├── g4.jpg │ │ │ │ ├── g5.jpg │ │ │ │ ├── g6.jpg │ │ │ │ ├── g7.jpg │ │ │ │ ├── g8.jpg │ │ │ │ ├── primary-check.png │ │ │ │ ├── primary-radio.png │ │ │ │ ├── success-check.png │ │ │ │ └── success-radio.png │ │ │ └── speakers │ │ │ │ └── line.png │ │ ├── js │ │ │ ├── ajax-form.js │ │ │ ├── bootstrap.min.js │ │ │ ├── contact.js │ │ │ ├── imagesloaded.pkgd.min.js │ │ │ ├── isotope.pkgd.min.js │ │ │ ├── jquery.ajaxchimp.min.js │ │ │ ├── jquery.countdown.js │ │ │ ├── jquery.counterup.min.js │ │ │ ├── jquery.form.js │ │ │ ├── jquery.magnific-popup.min.js │ │ │ ├── jquery.scrollUp.min.js │ │ │ ├── jquery.slicknav.min.js │ │ │ ├── jquery.validate.min.js │ │ │ ├── mail-script.js │ │ │ ├── main.js │ │ │ ├── nice-select.min.js │ │ │ ├── owl.carousel.min.js │ │ │ ├── plugins.js │ │ │ ├── popper.min.js │ │ │ ├── scrollIt.js │ │ │ ├── vendor │ │ │ │ ├── jquery-1.12.4.min.js │ │ │ │ └── modernizr-3.5.0.min.js │ │ │ ├── waypoints.min.js │ │ │ └── wow.min.js │ │ └── scss │ │ │ ├── _about.scss │ │ │ ├── _accordion.scss │ │ │ ├── _blog.scss │ │ │ ├── _blog_part.scss │ │ │ ├── _bradcam.scss │ │ │ ├── _btn.scss │ │ │ ├── _contact.scss │ │ │ ├── _elements.scss │ │ │ ├── _event.scss │ │ │ ├── _extend.scss │ │ │ ├── _faq.scss │ │ │ ├── _footer.scss │ │ │ ├── _header.scss │ │ │ ├── _latestProject.scss │ │ │ ├── _mixins.scss │ │ │ ├── _project_details.scss │ │ │ ├── _reset.scss │ │ │ ├── _resister.scss │ │ │ ├── _responsive.scss │ │ │ ├── _section_title.scss │ │ │ ├── _slick-nav.scss │ │ │ ├── _slider.scss │ │ │ ├── _speakers.scss │ │ │ ├── _team.scss │ │ │ ├── _testmonial.scss │ │ │ ├── _varriable.scss │ │ │ └── style.scss │ ├── sass │ │ ├── custom_bootstrap_vars.scss │ │ └── project.scss │ └── users │ │ └── ramanaditya.jpg ├── templates │ ├── 403.html │ ├── 404.html │ ├── 500.html │ ├── account │ │ ├── account_inactive.html │ │ ├── base.html │ │ ├── email.html │ │ ├── email_confirm.html │ │ ├── login.html │ │ ├── logout.html │ │ ├── password_change.html │ │ ├── password_reset.html │ │ ├── password_reset_done.html │ │ ├── password_reset_from_key.html │ │ ├── password_reset_from_key_done.html │ │ ├── password_set.html │ │ ├── signup.html │ │ ├── signup_closed.html │ │ ├── verification_sent.html │ │ └── verified_email_required.html │ ├── base.html │ ├── base.zip │ ├── certificates │ │ ├── base.html │ │ ├── email.html │ │ ├── footer.html │ │ ├── header.html │ │ └── project.html │ ├── mspsoc │ │ ├── base.html │ │ ├── contact.html │ │ ├── elements.html │ │ ├── footer.html │ │ ├── header.html │ │ ├── index.html │ │ ├── project.html │ │ ├── readme.txt │ │ ├── schedule.html │ │ ├── single-blog.html │ │ ├── social.html │ │ ├── speakers.html │ │ ├── twitter_analytics.html │ │ └── venue.html │ ├── new msp website │ │ ├── assets │ │ │ ├── 2019_MSP_IO_Pattern_Blog_Black_850x376.png │ │ │ ├── css │ │ │ │ ├── custom.css │ │ │ │ ├── main-green.css │ │ │ │ ├── main.css │ │ │ │ ├── owl.video.play.html │ │ │ │ └── plugins.css │ │ │ ├── fonts │ │ │ │ ├── et-line.eot │ │ │ │ ├── et-line.woff │ │ │ │ ├── et-lined41d.eot │ │ │ │ ├── fa-brands-400.eot │ │ │ │ ├── fa-brands-400.svg │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-brands-400d41d.eot │ │ │ │ ├── fa-regular-400.eot │ │ │ │ ├── fa-regular-400.svg │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-regular-400d41d.eot │ │ │ │ ├── fa-solid-900.eot │ │ │ │ ├── fa-solid-900.svg │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff │ │ │ │ ├── fa-solid-900.woff2 │ │ │ │ ├── fa-solid-900d41d.eot │ │ │ │ ├── ionicons5d5c.eot │ │ │ │ ├── ionicons5d5c.svg │ │ │ │ ├── ionicons5d5c.ttf │ │ │ │ ├── ionicons5d5c.woff │ │ │ │ └── ionicons5d5c.woff2 │ │ │ ├── imgs │ │ │ │ ├── blog │ │ │ │ │ ├── b1.jpg │ │ │ │ │ ├── b2.jpg │ │ │ │ │ └── b3.jpg │ │ │ │ ├── c-t-a-bg.png │ │ │ │ ├── cover │ │ │ │ │ └── cover.png │ │ │ │ ├── icone-1.png │ │ │ │ ├── icone-2.png │ │ │ │ ├── icone-3.png │ │ │ │ ├── logo1.png │ │ │ │ ├── projects │ │ │ │ │ ├── portfolio1.jpg │ │ │ │ │ ├── portfolio2.jpg │ │ │ │ │ ├── portfolio3.jpg │ │ │ │ │ ├── portfolio4.jpg │ │ │ │ │ ├── portfolio5.jpg │ │ │ │ │ ├── portfolio6.jpg │ │ │ │ │ ├── portfolio7.jpg │ │ │ │ │ ├── portfolio8.jpg │ │ │ │ │ └── portfolio9.jpg │ │ │ │ ├── team │ │ │ │ │ ├── t1.jpg │ │ │ │ │ ├── t2.jpg │ │ │ │ │ └── t3.jpg │ │ │ │ └── testimonial │ │ │ │ │ └── t1.jpg │ │ │ └── js │ │ │ │ ├── app-function.js │ │ │ │ ├── app-scripts.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── popper.min.js │ │ │ │ └── wow.min.js │ │ ├── fonts │ │ │ ├── et-line-2.html │ │ │ └── et-line.html │ │ └── index-2.html │ ├── pages │ │ ├── about.html │ │ └── home.html │ ├── qpower │ │ ├── base.html │ │ ├── footer.html │ │ ├── header.html │ │ └── index.html │ └── users │ │ ├── user_detail.html │ │ └── user_form.html ├── twitter │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ └── views.py ├── users │ ├── __init__.py │ ├── adapters.py │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── tests │ │ ├── __init__.py │ │ ├── factories.py │ │ ├── test_forms.py │ │ ├── test_models.py │ │ ├── test_urls.py │ │ └── test_views.py │ ├── urls.py │ └── views.py └── utils │ ├── __init__.py │ └── context_processors.py ├── pytest.ini ├── requirements.txt ├── requirements ├── base.txt ├── local.txt └── production.txt ├── setup.cfg └── utility ├── install_os_dependencies.sh ├── install_python_dependencies.sh ├── requirements-bionic.apt ├── requirements-buster.apt ├── requirements-jessie.apt ├── requirements-stretch.apt ├── requirements-trusty.apt └── requirements-xenial.apt /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/.coveragerc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/auto_assign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/.github/auto_assign.yml -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.github/weekly-digest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/.github/weekly-digest.yml -------------------------------------------------------------------------------- /.github/workflows/master_mspglobal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/.github/workflows/master_mspglobal.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/microsoft_student_partners.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/.idea/microsoft_student_partners.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/rGraphicsSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/.idea/rGraphicsSettings.xml -------------------------------------------------------------------------------- /.idea/rSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/.idea/rSettings.xml -------------------------------------------------------------------------------- /.idea/rpackages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/.idea/rpackages.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/merge_production_dotenvs_in_dotenv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/.idea/runConfigurations/merge_production_dotenvs_in_dotenv.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/migrate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/.idea/runConfigurations/migrate.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/pytest___.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/.idea/runConfigurations/pytest___.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/pytest__users.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/.idea/runConfigurations/pytest__users.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/runserver.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/.idea/runConfigurations/runserver.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/runserver_plus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/.idea/runConfigurations/runserver_plus.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/watcherTasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/.idea/watcherTasks.xml -------------------------------------------------------------------------------- /.idea/webResources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/.idea/webResources.xml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/.pylintrc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS.txt: -------------------------------------------------------------------------------- 1 | Aditya Raman 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/README.rst -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/settings/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/config/settings/base.py -------------------------------------------------------------------------------- /config/settings/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/config/settings/local.py -------------------------------------------------------------------------------- /config/settings/production.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/config/settings/production.py -------------------------------------------------------------------------------- /config/settings/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/config/settings/test.py -------------------------------------------------------------------------------- /config/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/config/urls.py -------------------------------------------------------------------------------- /config/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/config/wsgi.py -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/docs/__init__.py -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/pycharm/configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/docs/pycharm/configuration.rst -------------------------------------------------------------------------------- /docs/pycharm/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/docs/pycharm/images/1.png -------------------------------------------------------------------------------- /docs/pycharm/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/docs/pycharm/images/2.png -------------------------------------------------------------------------------- /docs/pycharm/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/docs/pycharm/images/3.png -------------------------------------------------------------------------------- /docs/pycharm/images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/docs/pycharm/images/4.png -------------------------------------------------------------------------------- /docs/pycharm/images/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/docs/pycharm/images/7.png -------------------------------------------------------------------------------- /docs/pycharm/images/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/docs/pycharm/images/8.png -------------------------------------------------------------------------------- /docs/pycharm/images/f1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/docs/pycharm/images/f1.png -------------------------------------------------------------------------------- /docs/pycharm/images/f2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/docs/pycharm/images/f2.png -------------------------------------------------------------------------------- /docs/pycharm/images/f3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/docs/pycharm/images/f3.png -------------------------------------------------------------------------------- /docs/pycharm/images/f4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/docs/pycharm/images/f4.png -------------------------------------------------------------------------------- /docs/pycharm/images/issue1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/docs/pycharm/images/issue1.png -------------------------------------------------------------------------------- /docs/pycharm/images/issue2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/docs/pycharm/images/issue2.png -------------------------------------------------------------------------------- /locale/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/locale/README.rst -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/manage.py -------------------------------------------------------------------------------- /microsoft_student_partners/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/__init__.py -------------------------------------------------------------------------------- /microsoft_student_partners/certificates/Libre_Baskerville/LibreBaskerville-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/certificates/Libre_Baskerville/LibreBaskerville-Bold.ttf -------------------------------------------------------------------------------- /microsoft_student_partners/certificates/Libre_Baskerville/LibreBaskerville-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/certificates/Libre_Baskerville/LibreBaskerville-Italic.ttf -------------------------------------------------------------------------------- /microsoft_student_partners/certificates/Libre_Baskerville/LibreBaskerville-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/certificates/Libre_Baskerville/LibreBaskerville-Regular.ttf -------------------------------------------------------------------------------- /microsoft_student_partners/certificates/Libre_Baskerville/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/certificates/Libre_Baskerville/OFL.txt -------------------------------------------------------------------------------- /microsoft_student_partners/certificates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /microsoft_student_partners/certificates/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/certificates/admin.py -------------------------------------------------------------------------------- /microsoft_student_partners/certificates/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/certificates/apps.py -------------------------------------------------------------------------------- /microsoft_student_partners/certificates/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/certificates/helpers.py -------------------------------------------------------------------------------- /microsoft_student_partners/certificates/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /microsoft_student_partners/certificates/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/certificates/models.py -------------------------------------------------------------------------------- /microsoft_student_partners/certificates/msp_certificate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/certificates/msp_certificate.png -------------------------------------------------------------------------------- /microsoft_student_partners/certificates/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/certificates/tests.py -------------------------------------------------------------------------------- /microsoft_student_partners/certificates/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/certificates/urls.py -------------------------------------------------------------------------------- /microsoft_student_partners/certificates/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/certificates/views.py -------------------------------------------------------------------------------- /microsoft_student_partners/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/conftest.py -------------------------------------------------------------------------------- /microsoft_student_partners/contrib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/contrib/__init__.py -------------------------------------------------------------------------------- /microsoft_student_partners/contrib/sites/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/contrib/sites/__init__.py -------------------------------------------------------------------------------- /microsoft_student_partners/contrib/sites/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/contrib/sites/migrations/0001_initial.py -------------------------------------------------------------------------------- /microsoft_student_partners/contrib/sites/migrations/0002_alter_domain_unique.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/contrib/sites/migrations/0002_alter_domain_unique.py -------------------------------------------------------------------------------- /microsoft_student_partners/contrib/sites/migrations/0003_set_site_domain_and_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/contrib/sites/migrations/0003_set_site_domain_and_name.py -------------------------------------------------------------------------------- /microsoft_student_partners/contrib/sites/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/contrib/sites/migrations/__init__.py -------------------------------------------------------------------------------- /microsoft_student_partners/github/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /microsoft_student_partners/github/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/github/admin.py -------------------------------------------------------------------------------- /microsoft_student_partners/github/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/github/apps.py -------------------------------------------------------------------------------- /microsoft_student_partners/github/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /microsoft_student_partners/github/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/github/models.py -------------------------------------------------------------------------------- /microsoft_student_partners/github/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/github/tests.py -------------------------------------------------------------------------------- /microsoft_student_partners/github/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/github/views.py -------------------------------------------------------------------------------- /microsoft_student_partners/msp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /microsoft_student_partners/msp/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/admin.py -------------------------------------------------------------------------------- /microsoft_student_partners/msp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/apps.py -------------------------------------------------------------------------------- /microsoft_student_partners/msp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /microsoft_student_partners/msp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/models.py -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/css/style.css -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/css/style.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/css/style.min.css -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/images/banner-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/images/banner-img.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/images/blog/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/images/blog/1.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/images/blog/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/images/blog/2.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/images/blog/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/images/blog/3.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/images/blog/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/images/blog/4.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/images/blog/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/images/blog/5.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/images/blog/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/images/blog/6.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/images/blog/blog-details.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/images/blog/blog-details.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/images/client_logo/client_logo-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/images/client_logo/client_logo-1.png -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/images/client_logo/client_logo-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/images/client_logo/client_logo-2.png -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/images/client_logo/client_logo-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/images/client_logo/client_logo-3.png -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/images/client_logo/client_logo-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/images/client_logo/client_logo-4.png -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/images/client_logo/client_logo-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/images/client_logo/client_logo-5.png -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/images/comments/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/images/comments/1.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/images/comments/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/images/comments/2.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/images/comments/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/images/comments/3.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/images/comments/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/images/comments/4.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/images/footer-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/images/footer-img.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/images/icone-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/images/icone-1.png -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/images/icone-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/images/icone-2.png -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/images/icone-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/images/icone-3.png -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/images/image_about_left.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/images/image_about_left.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/images/image_about_right.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/images/image_about_right.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/images/image_large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/images/image_large.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/images/img-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/images/img-2.png -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/images/img-g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/images/img-g.png -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/images/left-r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/images/left-r.png -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/images/logo_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/images/logo_img.png -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/images/logos-s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/images/logos-s.png -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/images/post/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/images/post/1.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/images/post/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/images/post/2.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/images/post/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/images/post/3.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/images/right-r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/images/right-r.png -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/images/s-left-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/images/s-left-1.png -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/images/s-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/images/s-left.png -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/images/shap-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/images/shap-a.png -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/images/team/tm-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/images/team/tm-1.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/images/team/tm-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/images/team/tm-2.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/images/team/tm-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/images/team/tm-3.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/images/testimonial-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/images/testimonial-1.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/images/testimonial-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/images/testimonial-2.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/images/testimonial-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/images/testimonial-3.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/js/jquery-1.12.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/js/jquery-1.12.0.min.js -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/js/theme.js -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/js/theme.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/js/theme.min.js -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/vendors/animate/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/vendors/animate/animate.css -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/vendors/animate/wow.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/vendors/animate/wow.min.js -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/vendors/font-awesome/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/vendors/font-awesome/css/font-awesome.min.css -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/vendors/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/vendors/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/vendors/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/vendors/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/vendors/font-awesome/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/vendors/font-awesome/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/vendors/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/vendors/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/vendors/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/vendors/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/vendors/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/vendors/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/vendors/owl_carousel/owl.carousel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/vendors/owl_carousel/owl.carousel.css -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/vendors/owl_carousel/owl.carousel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/vendors/owl_carousel/owl.carousel.min.js -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/vendors/popup/lightbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/vendors/popup/lightbox.css -------------------------------------------------------------------------------- /microsoft_student_partners/msp/static/vendors/popup/lightbox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/static/vendors/popup/lightbox.min.js -------------------------------------------------------------------------------- /microsoft_student_partners/msp/templates/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/templates/about.html -------------------------------------------------------------------------------- /microsoft_student_partners/msp/templates/blog-single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/templates/blog-single.html -------------------------------------------------------------------------------- /microsoft_student_partners/msp/templates/blog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/templates/blog.html -------------------------------------------------------------------------------- /microsoft_student_partners/msp/templates/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/templates/contact.html -------------------------------------------------------------------------------- /microsoft_student_partners/msp/templates/elements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/templates/elements.html -------------------------------------------------------------------------------- /microsoft_student_partners/msp/templates/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/templates/footer.html -------------------------------------------------------------------------------- /microsoft_student_partners/msp/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/templates/index.html -------------------------------------------------------------------------------- /microsoft_student_partners/msp/templates/mspbase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/templates/mspbase.html -------------------------------------------------------------------------------- /microsoft_student_partners/msp/templates/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/templates/navbar.html -------------------------------------------------------------------------------- /microsoft_student_partners/msp/templates/services.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/templates/services.html -------------------------------------------------------------------------------- /microsoft_student_partners/msp/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/tests.py -------------------------------------------------------------------------------- /microsoft_student_partners/msp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/urls.py -------------------------------------------------------------------------------- /microsoft_student_partners/msp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/msp/views.py -------------------------------------------------------------------------------- /microsoft_student_partners/mspsoc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /microsoft_student_partners/mspsoc/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/mspsoc/admin.py -------------------------------------------------------------------------------- /microsoft_student_partners/mspsoc/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/mspsoc/apps.py -------------------------------------------------------------------------------- /microsoft_student_partners/mspsoc/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /microsoft_student_partners/mspsoc/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/mspsoc/models.py -------------------------------------------------------------------------------- /microsoft_student_partners/mspsoc/organizers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/mspsoc/organizers.json -------------------------------------------------------------------------------- /microsoft_student_partners/mspsoc/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/mspsoc/project.json -------------------------------------------------------------------------------- /microsoft_student_partners/mspsoc/projects_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/mspsoc/projects_list.json -------------------------------------------------------------------------------- /microsoft_student_partners/mspsoc/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/mspsoc/tests.py -------------------------------------------------------------------------------- /microsoft_student_partners/mspsoc/tweets.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/mspsoc/tweets.csv -------------------------------------------------------------------------------- /microsoft_student_partners/mspsoc/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/mspsoc/urls.py -------------------------------------------------------------------------------- /microsoft_student_partners/mspsoc/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/mspsoc/views.py -------------------------------------------------------------------------------- /microsoft_student_partners/qpower/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /microsoft_student_partners/qpower/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/qpower/admin.py -------------------------------------------------------------------------------- /microsoft_student_partners/qpower/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/qpower/apps.py -------------------------------------------------------------------------------- /microsoft_student_partners/qpower/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /microsoft_student_partners/qpower/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/qpower/models.py -------------------------------------------------------------------------------- /microsoft_student_partners/qpower/organizers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/qpower/organizers.json -------------------------------------------------------------------------------- /microsoft_student_partners/qpower/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/qpower/tests.py -------------------------------------------------------------------------------- /microsoft_student_partners/qpower/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/qpower/urls.py -------------------------------------------------------------------------------- /microsoft_student_partners/qpower/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/qpower/views.py -------------------------------------------------------------------------------- /microsoft_student_partners/static/css/project.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/css/project.css -------------------------------------------------------------------------------- /microsoft_student_partners/static/fonts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /microsoft_student_partners/static/images/QPower-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/images/QPower-logo.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/images/favicons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/images/favicons/android-chrome-192x192.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/images/favicons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/images/favicons/android-chrome-512x512.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/images/favicons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/images/favicons/apple-touch-icon.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/images/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/images/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/images/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/images/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/images/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/images/favicons/favicon.ico -------------------------------------------------------------------------------- /microsoft_student_partners/static/images/favicons/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/images/favicons/site.webmanifest -------------------------------------------------------------------------------- /microsoft_student_partners/static/images/msp_certificate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/images/msp_certificate.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/js/project.js: -------------------------------------------------------------------------------- 1 | /* Project specific Javascript goes here. */ 2 | -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Blog Header Graphic/2019_MSP_IO_Pattern_Blog_Black_850x376.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Blog Header Graphic/2019_MSP_IO_Pattern_Blog_Black_850x376.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Blog Header Graphic/2019_MSP_IO_Pattern_Blog_Blue_850x376.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Blog Header Graphic/2019_MSP_IO_Pattern_Blog_Blue_850x376.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Blog Header Graphic/2019_MSP_IO_Pattern_Blog_White_850x376.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Blog Header Graphic/2019_MSP_IO_Pattern_Blog_White_850x376.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Business Cards/MSP_2019_BusinessCard_CMYK_Full-Bleed.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Business Cards/MSP_2019_BusinessCard_CMYK_Full-Bleed.ai -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Business Cards/MSP_2019_BusinessCard_CMYK_Full-Bleed_CALLOUTS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Business Cards/MSP_2019_BusinessCard_CMYK_Full-Bleed_CALLOUTS.pdf -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Certificates (Workshop attendees)/MSP_2019_Certificate_Attendee.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Certificates (Workshop attendees)/MSP_2019_Certificate_Attendee.ai -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Email/Layout/2019_MSP_IO_Pattern_Email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Email/Layout/2019_MSP_IO_Pattern_Email.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Email/MSP_Email_Template_2019_Final.oft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Email/MSP_Email_Template_2019_Final.oft -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Microsoft Student Partner Style Guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Microsoft Student Partner Style Guide.pdf -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Poster/2019_MSP_IO_Pattern_Poster_22x32_Black.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Poster/2019_MSP_IO_Pattern_Poster_22x32_Black.ai -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Poster/2019_MSP_IO_Pattern_Poster_22x32_Black.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Poster/2019_MSP_IO_Pattern_Poster_22x32_Black.pdf -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Poster/2019_MSP_IO_Pattern_Poster_22x32_White.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Poster/2019_MSP_IO_Pattern_Poster_22x32_White.ai -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Poster/2019_MSP_IO_Pattern_Poster_22x32_White.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Poster/2019_MSP_IO_Pattern_Poster_22x32_White.pdf -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Poster/Layout/2019_MSP_IO_Pattern_Poster_22x32_Black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Poster/Layout/2019_MSP_IO_Pattern_Poster_22x32_Black.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Poster/Layout/2019_MSP_IO_Pattern_Poster_22x32_White.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Poster/Layout/2019_MSP_IO_Pattern_Poster_22x32_White.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Social/Source Files/2019_MSP_IO_Pattern_Black_FBAd_1200x628.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Social/Source Files/2019_MSP_IO_Pattern_Black_FBAd_1200x628.ai -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Social/Source Files/2019_MSP_IO_Pattern_Blue_FBAd_1200x628.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Social/Source Files/2019_MSP_IO_Pattern_Blue_FBAd_1200x628.ai -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Social/Source Files/2019_MSP_IO_Pattern_White_FBAd_1200x628.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Social/Source Files/2019_MSP_IO_Pattern_White_FBAd_1200x628.ai -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Social/Source Files/MSP_2019_SocialAds_Circuit_Blue.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Social/Source Files/MSP_2019_SocialAds_Circuit_Blue.psd -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Social/Source Files/MSP_2019_SocialAds_Circuit_Green.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Social/Source Files/MSP_2019_SocialAds_Circuit_Green.psd -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Social/Source Files/MSP_2019_SocialAds_Circuit_Purple.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Social/Source Files/MSP_2019_SocialAds_Circuit_Purple.psd -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Stickers/AI/MSP_2019_Sticker_Alpha1_Milestone_Art.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Stickers/AI/MSP_2019_Sticker_Alpha1_Milestone_Art.ai -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Stickers/AI/MSP_2019_Sticker_Alpha2_Milestone_Art.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Stickers/AI/MSP_2019_Sticker_Alpha2_Milestone_Art.ai -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Stickers/AI/MSP_2019_Sticker_Beta_Milestone_Art.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Stickers/AI/MSP_2019_Sticker_Beta_Milestone_Art.ai -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Stickers/AI/MSP_2019_Sticker_Code_Art.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Stickers/AI/MSP_2019_Sticker_Code_Art.ai -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Stickers/AI/MSP_2019_Sticker_Gold_Milestone_Art.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Stickers/AI/MSP_2019_Sticker_Gold_Milestone_Art.ai -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Stickers/AI/MSP_2019_Sticker_Ninja_Art.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Stickers/AI/MSP_2019_Sticker_Ninja_Art.ai -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Stickers/AI/MSP_2019_Sticker_Polygons_Art.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Stickers/AI/MSP_2019_Sticker_Polygons_Art.ai -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Stickers/PDF/MSP_2019_Sticker_Alpha1_Milestone_Art.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Stickers/PDF/MSP_2019_Sticker_Alpha1_Milestone_Art.pdf -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Stickers/PDF/MSP_2019_Sticker_Alpha2_Milestone_Art.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Stickers/PDF/MSP_2019_Sticker_Alpha2_Milestone_Art.pdf -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Stickers/PDF/MSP_2019_Sticker_Beta_Milestone_Art.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Stickers/PDF/MSP_2019_Sticker_Beta_Milestone_Art.pdf -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Stickers/PDF/MSP_2019_Sticker_Code_Art.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Stickers/PDF/MSP_2019_Sticker_Code_Art.pdf -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Stickers/PDF/MSP_2019_Sticker_Gold_Milestone_Art.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Stickers/PDF/MSP_2019_Sticker_Gold_Milestone_Art.pdf -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Stickers/PDF/MSP_2019_Sticker_Ninja_Art.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Stickers/PDF/MSP_2019_Sticker_Ninja_Art.pdf -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Stickers/PDF/MSP_2019_Sticker_Polygons_Art.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Stickers/PDF/MSP_2019_Sticker_Polygons_Art.pdf -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Code is Life Shield Logo/Blue/CMYK/MSP_Shield logo_CMYK_Blue.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Code is Life Shield Logo/Blue/CMYK/MSP_Shield logo_CMYK_Blue.eps -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Code is Life Shield Logo/Blue/CMYK/MSP_Shield logo_CMYK_Blue.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Code is Life Shield Logo/Blue/CMYK/MSP_Shield logo_CMYK_Blue.pdf -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Code is Life Shield Logo/Blue/CMYK/MSP_Shield_logo_CMYK_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Code is Life Shield Logo/Blue/CMYK/MSP_Shield_logo_CMYK_Blue.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Code is Life Shield Logo/Blue/RGB/MSP_Shield logo_RGB_Blue.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Code is Life Shield Logo/Blue/RGB/MSP_Shield logo_RGB_Blue.eps -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Code is Life Shield Logo/Blue/RGB/MSP_Shield logo_RGB_Blue.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Code is Life Shield Logo/Blue/RGB/MSP_Shield logo_RGB_Blue.pdf -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Code is Life Shield Logo/Blue/RGB/MSP_Shield_logo_RGB_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Code is Life Shield Logo/Blue/RGB/MSP_Shield_logo_RGB_Blue.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Code is Life Shield Logo/Grayscale/CMYK/MSP_ Shield logo_CMYK_Blck.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Code is Life Shield Logo/Grayscale/CMYK/MSP_ Shield logo_CMYK_Blck.eps -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Code is Life Shield Logo/Grayscale/CMYK/MSP_ Shield logo_CMYK_Blck.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Code is Life Shield Logo/Grayscale/CMYK/MSP_ Shield logo_CMYK_Blck.pdf -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Code is Life Shield Logo/Grayscale/CMYK/MSP_ Shield logo_CMYK_Wht.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Code is Life Shield Logo/Grayscale/CMYK/MSP_ Shield logo_CMYK_Wht.eps -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Code is Life Shield Logo/Grayscale/CMYK/MSP_ Shield logo_CMYK_Wht.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Code is Life Shield Logo/Grayscale/CMYK/MSP_ Shield logo_CMYK_Wht.pdf -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Code is Life Shield Logo/Grayscale/CMYK/MSP_ Shield_logo_CMYK_Blck.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Code is Life Shield Logo/Grayscale/CMYK/MSP_ Shield_logo_CMYK_Blck.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Code is Life Shield Logo/Grayscale/CMYK/MSP_ Shield_logo_CMYK_Blck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Code is Life Shield Logo/Grayscale/CMYK/MSP_ Shield_logo_CMYK_Blck.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Code is Life Shield Logo/Grayscale/CMYK/MSP_ Shield_logo_CMYK_Wht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Code is Life Shield Logo/Grayscale/CMYK/MSP_ Shield_logo_CMYK_Wht.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Code is Life Shield Logo/Grayscale/RGB/MSP_ Shield logo_RGB_Blck.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Code is Life Shield Logo/Grayscale/RGB/MSP_ Shield logo_RGB_Blck.eps -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Code is Life Shield Logo/Grayscale/RGB/MSP_ Shield logo_RGB_Blck.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Code is Life Shield Logo/Grayscale/RGB/MSP_ Shield logo_RGB_Blck.pdf -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Code is Life Shield Logo/Grayscale/RGB/MSP_ Shield logo_RGB_Wht.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Code is Life Shield Logo/Grayscale/RGB/MSP_ Shield logo_RGB_Wht.eps -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Code is Life Shield Logo/Grayscale/RGB/MSP_ Shield logo_RGB_Wht.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Code is Life Shield Logo/Grayscale/RGB/MSP_ Shield logo_RGB_Wht.pdf -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Code is Life Shield Logo/Grayscale/RGB/MSP_ Shield_logo_RGB_Blck.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Code is Life Shield Logo/Grayscale/RGB/MSP_ Shield_logo_RGB_Blck.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Code is Life Shield Logo/Grayscale/RGB/MSP_ Shield_logo_RGB_Blck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Code is Life Shield Logo/Grayscale/RGB/MSP_ Shield_logo_RGB_Blck.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Code is Life Shield Logo/Grayscale/RGB/MSP_ Shield_logo_RGB_Wht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Code is Life Shield Logo/Grayscale/RGB/MSP_ Shield_logo_RGB_Wht.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Code is Life Shield Logo/MS_MSP Brand Refresh_ Shields_CMYK.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Code is Life Shield Logo/MS_MSP Brand Refresh_ Shields_CMYK.ai -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Code is Life Shield Logo/MS_MSP Brand Refresh_Shields_RGB.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Code is Life Shield Logo/MS_MSP Brand Refresh_Shields_RGB.ai -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Blue_Black/CMYK/1Line/0419_MS_MSP_logo_Lockups_CMYK_1line_blue.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Blue_Black/CMYK/1Line/0419_MS_MSP_logo_Lockups_CMYK_1line_blue.pdf -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Blue_Black/CMYK/1Line/0419_MS_MSP_logo_Lockups_CMYK_MSP-1line-blue.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Blue_Black/CMYK/1Line/0419_MS_MSP_logo_Lockups_CMYK_MSP-1line-blue.eps -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Blue_Black/CMYK/1Line/0419_MS_MSP_logo_Lockups_CMYK_MSP-1line-blue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Blue_Black/CMYK/1Line/0419_MS_MSP_logo_Lockups_CMYK_MSP-1line-blue.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Blue_Black/CMYK/1Line/0419_MS_MSP_logo_Lockups_CMYK_MSP-1line-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Blue_Black/CMYK/1Line/0419_MS_MSP_logo_Lockups_CMYK_MSP-1line-blue.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Blue_Black/CMYK/Stacked/MSP_visual ID_CMYK_stacked_blue.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Blue_Black/CMYK/Stacked/MSP_visual ID_CMYK_stacked_blue.eps -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Blue_Black/CMYK/Stacked/MSP_visual ID_CMYK_stacked_blue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Blue_Black/CMYK/Stacked/MSP_visual ID_CMYK_stacked_blue.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Blue_Black/CMYK/Stacked/MSP_visual ID_CMYK_stacked_blue.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Blue_Black/CMYK/Stacked/MSP_visual ID_CMYK_stacked_blue.pdf -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Blue_Black/CMYK/Stacked/MSP_visual ID_CMYK_stacked_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Blue_Black/CMYK/Stacked/MSP_visual ID_CMYK_stacked_blue.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Blue_Black/RGB/1Line/MSP_visual ID_RGB_1line_blue.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Blue_Black/RGB/1Line/MSP_visual ID_RGB_1line_blue.eps -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Blue_Black/RGB/1Line/MSP_visual ID_RGB_1line_blue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Blue_Black/RGB/1Line/MSP_visual ID_RGB_1line_blue.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Blue_Black/RGB/1Line/MSP_visual ID_RGB_1line_blue.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Blue_Black/RGB/1Line/MSP_visual ID_RGB_1line_blue.pdf -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Blue_Black/RGB/1Line/MSP_visual ID_RGB_1line_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Blue_Black/RGB/1Line/MSP_visual ID_RGB_1line_blue.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Blue_Black/RGB/Stacked/MSP_visual ID_RGB_stacked_blue.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Blue_Black/RGB/Stacked/MSP_visual ID_RGB_stacked_blue.eps -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Blue_Black/RGB/Stacked/MSP_visual ID_RGB_stacked_blue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Blue_Black/RGB/Stacked/MSP_visual ID_RGB_stacked_blue.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Blue_Black/RGB/Stacked/MSP_visual ID_RGB_stacked_blue.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Blue_Black/RGB/Stacked/MSP_visual ID_RGB_stacked_blue.pdf -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Blue_Black/RGB/Stacked/MSP_visual ID_RGB_stacked_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Blue_Black/RGB/Stacked/MSP_visual ID_RGB_stacked_blue.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Blue_White/CMYK/1Line/MSP_visual ID_CMYK_1line_blue_white.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Blue_White/CMYK/1Line/MSP_visual ID_CMYK_1line_blue_white.eps -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Blue_White/CMYK/1Line/MSP_visual ID_CMYK_1line_blue_white.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Blue_White/CMYK/1Line/MSP_visual ID_CMYK_1line_blue_white.pdf -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Blue_White/CMYK/1Line/MSP_visual-ID_CMYK_1line_blue_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Blue_White/CMYK/1Line/MSP_visual-ID_CMYK_1line_blue_white.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Blue_White/CMYK/Stacked/MSP_visual ID_CMYK_stacked_blue_white.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Blue_White/CMYK/Stacked/MSP_visual ID_CMYK_stacked_blue_white.eps -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Blue_White/CMYK/Stacked/MSP_visual ID_CMYK_stacked_blue_white.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Blue_White/CMYK/Stacked/MSP_visual ID_CMYK_stacked_blue_white.pdf -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Blue_White/CMYK/Stacked/MSP_visual-ID_CMYK_stacked_blue_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Blue_White/CMYK/Stacked/MSP_visual-ID_CMYK_stacked_blue_white.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Blue_White/RGB/Stacked/MSP_visual ID_RGB_stacked_blue_white.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Blue_White/RGB/Stacked/MSP_visual ID_RGB_stacked_blue_white.eps -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Blue_White/RGB/Stacked/MSP_visual ID_RGB_stacked_blue_white.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Blue_White/RGB/Stacked/MSP_visual ID_RGB_stacked_blue_white.pdf -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Blue_White/RGB/Stacked/MSP_visual-ID_RGB_stacked_blue_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Blue_White/RGB/Stacked/MSP_visual-ID_RGB_stacked_blue_white.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Grayscale/CMYK/1Line/MSP_visual ID_CMYK_1line_blck.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Grayscale/CMYK/1Line/MSP_visual ID_CMYK_1line_blck.eps -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Grayscale/CMYK/1Line/MSP_visual ID_CMYK_1line_blck.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Grayscale/CMYK/1Line/MSP_visual ID_CMYK_1line_blck.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Grayscale/CMYK/1Line/MSP_visual ID_CMYK_1line_blck.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Grayscale/CMYK/1Line/MSP_visual ID_CMYK_1line_blck.pdf -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Grayscale/CMYK/1Line/MSP_visual ID_CMYK_1line_blck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Grayscale/CMYK/1Line/MSP_visual ID_CMYK_1line_blck.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Grayscale/CMYK/1Line/MSP_visual ID_CMYK_1line_wht.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Grayscale/CMYK/1Line/MSP_visual ID_CMYK_1line_wht.eps -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Grayscale/CMYK/1Line/MSP_visual ID_CMYK_1line_wht.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Grayscale/CMYK/1Line/MSP_visual ID_CMYK_1line_wht.pdf -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Grayscale/CMYK/1Line/MSP_visual ID_CMYK_1line_wht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Grayscale/CMYK/1Line/MSP_visual ID_CMYK_1line_wht.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Grayscale/CMYK/Stacked/MSP_visual ID_CMYK_stacked_blk.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Grayscale/CMYK/Stacked/MSP_visual ID_CMYK_stacked_blk.eps -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Grayscale/CMYK/Stacked/MSP_visual ID_CMYK_stacked_blk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Grayscale/CMYK/Stacked/MSP_visual ID_CMYK_stacked_blk.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Grayscale/RGB/1Line/MSP_visual ID_RGB_1line_blk.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Grayscale/RGB/1Line/MSP_visual ID_RGB_1line_blk.eps -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Grayscale/RGB/1Line/MSP_visual ID_RGB_1line_blk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Grayscale/RGB/1Line/MSP_visual ID_RGB_1line_blk.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Grayscale/RGB/1Line/MSP_visual ID_RGB_1line_blk.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Grayscale/RGB/1Line/MSP_visual ID_RGB_1line_blk.pdf -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Grayscale/RGB/1Line/MSP_visual ID_RGB_1line_blk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Grayscale/RGB/1Line/MSP_visual ID_RGB_1line_blk.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Grayscale/RGB/1Line/MSP_visual ID_RGB_1line_wht.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Grayscale/RGB/1Line/MSP_visual ID_RGB_1line_wht.eps -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Grayscale/RGB/1Line/MSP_visual ID_RGB_1line_wht.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Grayscale/RGB/1Line/MSP_visual ID_RGB_1line_wht.pdf -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Grayscale/RGB/1Line/MSP_visual ID_RGB_1line_wht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Grayscale/RGB/1Line/MSP_visual ID_RGB_1line_wht.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Grayscale/RGB/Stacked/MSP_visual ID_RGB_stacked_blk.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Grayscale/RGB/Stacked/MSP_visual ID_RGB_stacked_blk.eps -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Grayscale/RGB/Stacked/MSP_visual ID_RGB_stacked_blk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Grayscale/RGB/Stacked/MSP_visual ID_RGB_stacked_blk.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Grayscale/RGB/Stacked/MSP_visual ID_RGB_stacked_blk.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Grayscale/RGB/Stacked/MSP_visual ID_RGB_stacked_blk.pdf -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Grayscale/RGB/Stacked/MSP_visual ID_RGB_stacked_blk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Grayscale/RGB/Stacked/MSP_visual ID_RGB_stacked_blk.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Grayscale/RGB/Stacked/MSP_visual ID_RGB_stacked_wht.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Grayscale/RGB/Stacked/MSP_visual ID_RGB_stacked_wht.eps -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Grayscale/RGB/Stacked/MSP_visual ID_RGB_stacked_wht.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Grayscale/RGB/Stacked/MSP_visual ID_RGB_stacked_wht.pdf -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Grayscale/RGB/Stacked/MSP_visual ID_RGB_stacked_wht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/Grayscale/RGB/Stacked/MSP_visual ID_RGB_stacked_wht.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/MSP_logo_Lockups_CMYK.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/MSP_logo_Lockups_CMYK.ai -------------------------------------------------------------------------------- /microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/MSP_logo_Lockups_RGB.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/microsoft/Visual ID and Logo/Student Partner Visual ID/MSP_logo_Lockups_RGB.ai -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/css/animate.css -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/css/bootstrap.min.css -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/css/flaticon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/css/flaticon.css -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/css/font-awesome.min.css -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/css/magnific-popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/css/magnific-popup.css -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/css/nice-select.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/css/nice-select.css -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/css/owl.carousel.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/css/owl.carousel.min.css -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/css/slicknav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/css/slicknav.css -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/css/style.css -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/css/style.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/css/style.map -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/css/theme-default.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/css/theme-default.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/css/theme-default.map -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/css/themify-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/css/themify-icons.css -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/fonts/Flaticon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/fonts/Flaticon.eot -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/fonts/Flaticon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/fonts/Flaticon.svg -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/fonts/Flaticon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/fonts/Flaticon.ttf -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/fonts/Flaticon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/fonts/Flaticon.woff -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/fonts/Flaticon.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/fonts/Flaticon.woff2 -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/fonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/fonts/fa-brands-400.eot -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/fonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/fonts/fa-brands-400.svg -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/fonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/fonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/fonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/fonts/fa-brands-400.woff -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/fonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/fonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/fonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/fonts/fa-regular-400.eot -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/fonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/fonts/fa-regular-400.svg -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/fonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/fonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/fonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/fonts/fa-regular-400.woff -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/fonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/fonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/fonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/fonts/fa-solid-900.eot -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/fonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/fonts/fa-solid-900.svg -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/fonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/fonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/fonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/fonts/fa-solid-900.woff -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/fonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/fonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/fonts/flaticon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/fonts/flaticon.css -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/fonts/themify.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/fonts/themify.eot -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/fonts/themify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/fonts/themify.svg -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/fonts/themify.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/fonts/themify.ttf -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/fonts/themify.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/fonts/themify.woff -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/img/about/shap1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/img/about/shap1.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/img/about/shap2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/img/about/shap2.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/img/banner/banner_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/img/banner/banner_1.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/img/banner/breadcam_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/img/banner/breadcam_bg.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/img/banner/footer_ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/img/banner/footer_ball.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/img/banner/footer_bg_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/img/banner/footer_bg_1.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/img/banner/path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/img/banner/path.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/img/banner/path2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/img/banner/path2.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/img/banner/resister.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/img/banner/resister.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/img/barnd/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/img/barnd/1.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/img/barnd/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/img/barnd/2.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/img/barnd/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/img/barnd/3.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/img/barnd/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/img/barnd/4.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/img/barnd/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/img/barnd/5.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/img/barnd/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/img/barnd/6.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/img/barnd/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/img/barnd/bg.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/img/barnd/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/img/barnd/info.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/img/elements/a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/img/elements/a.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/img/elements/a2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/img/elements/a2.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/img/elements/d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/img/elements/d.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/img/elements/disabled-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/img/elements/disabled-check.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/img/elements/disabled-radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/img/elements/disabled-radio.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/img/elements/f1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/img/elements/f1.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/img/elements/f2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/img/elements/f2.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/img/elements/f3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/img/elements/f3.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/img/elements/f4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/img/elements/f4.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/img/elements/f5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/img/elements/f5.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/img/elements/f6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/img/elements/f6.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/img/elements/f7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/img/elements/f7.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/img/elements/f8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/img/elements/f8.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/img/elements/g1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/img/elements/g1.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/img/elements/g2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/img/elements/g2.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/img/elements/g3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/img/elements/g3.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/img/elements/g4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/img/elements/g4.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/img/elements/g5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/img/elements/g5.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/img/elements/g6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/img/elements/g6.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/img/elements/g7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/img/elements/g7.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/img/elements/g8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/img/elements/g8.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/img/elements/primary-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/img/elements/primary-check.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/img/elements/primary-radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/img/elements/primary-radio.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/img/elements/success-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/img/elements/success-check.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/img/elements/success-radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/img/elements/success-radio.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/img/speakers/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/img/speakers/line.png -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/js/ajax-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/js/ajax-form.js -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/js/bootstrap.min.js -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/js/contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/js/contact.js -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/js/imagesloaded.pkgd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/js/imagesloaded.pkgd.min.js -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/js/isotope.pkgd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/js/isotope.pkgd.min.js -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/js/jquery.ajaxchimp.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/js/jquery.ajaxchimp.min.js -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/js/jquery.countdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/js/jquery.countdown.js -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/js/jquery.counterup.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/js/jquery.counterup.min.js -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/js/jquery.form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/js/jquery.form.js -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/js/jquery.magnific-popup.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/js/jquery.magnific-popup.min.js -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/js/jquery.scrollUp.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/js/jquery.scrollUp.min.js -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/js/jquery.slicknav.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/js/jquery.slicknav.min.js -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/js/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/js/jquery.validate.min.js -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/js/mail-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/js/mail-script.js -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/js/main.js -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/js/nice-select.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/js/nice-select.min.js -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/js/owl.carousel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/js/owl.carousel.min.js -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/js/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/js/plugins.js -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/js/popper.min.js -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/js/scrollIt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/js/scrollIt.js -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/js/vendor/jquery-1.12.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/js/vendor/jquery-1.12.4.min.js -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/js/vendor/modernizr-3.5.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/js/vendor/modernizr-3.5.0.min.js -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/js/waypoints.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/js/waypoints.min.js -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/js/wow.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/js/wow.min.js -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/scss/_about.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/scss/_about.scss -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/scss/_accordion.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/scss/_accordion.scss -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/scss/_blog.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/scss/_blog.scss -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/scss/_blog_part.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/scss/_blog_part.scss -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/scss/_bradcam.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/scss/_bradcam.scss -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/scss/_btn.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/scss/_btn.scss -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/scss/_contact.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/scss/_contact.scss -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/scss/_elements.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/scss/_elements.scss -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/scss/_event.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/scss/_event.scss -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/scss/_extend.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/scss/_extend.scss -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/scss/_faq.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/scss/_faq.scss -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/scss/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/scss/_footer.scss -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/scss/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/scss/_header.scss -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/scss/_latestProject.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/scss/_latestProject.scss -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/scss/_mixins.scss -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/scss/_project_details.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/scss/_project_details.scss -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/scss/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/scss/_reset.scss -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/scss/_resister.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/scss/_resister.scss -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/scss/_responsive.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/scss/_responsive.scss -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/scss/_section_title.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/scss/_section_title.scss -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/scss/_slick-nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/scss/_slick-nav.scss -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/scss/_slider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/scss/_slider.scss -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/scss/_speakers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/scss/_speakers.scss -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/scss/_team.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/scss/_team.scss -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/scss/_testmonial.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/scss/_testmonial.scss -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/scss/_varriable.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/scss/_varriable.scss -------------------------------------------------------------------------------- /microsoft_student_partners/static/mspsoc/scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/mspsoc/scss/style.scss -------------------------------------------------------------------------------- /microsoft_student_partners/static/sass/custom_bootstrap_vars.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /microsoft_student_partners/static/sass/project.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/sass/project.scss -------------------------------------------------------------------------------- /microsoft_student_partners/static/users/ramanaditya.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/static/users/ramanaditya.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/templates/403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/403.html -------------------------------------------------------------------------------- /microsoft_student_partners/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/404.html -------------------------------------------------------------------------------- /microsoft_student_partners/templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/500.html -------------------------------------------------------------------------------- /microsoft_student_partners/templates/account/account_inactive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/account/account_inactive.html -------------------------------------------------------------------------------- /microsoft_student_partners/templates/account/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/account/base.html -------------------------------------------------------------------------------- /microsoft_student_partners/templates/account/email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/account/email.html -------------------------------------------------------------------------------- /microsoft_student_partners/templates/account/email_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/account/email_confirm.html -------------------------------------------------------------------------------- /microsoft_student_partners/templates/account/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/account/login.html -------------------------------------------------------------------------------- /microsoft_student_partners/templates/account/logout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/account/logout.html -------------------------------------------------------------------------------- /microsoft_student_partners/templates/account/password_change.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/account/password_change.html -------------------------------------------------------------------------------- /microsoft_student_partners/templates/account/password_reset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/account/password_reset.html -------------------------------------------------------------------------------- /microsoft_student_partners/templates/account/password_reset_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/account/password_reset_done.html -------------------------------------------------------------------------------- /microsoft_student_partners/templates/account/password_reset_from_key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/account/password_reset_from_key.html -------------------------------------------------------------------------------- /microsoft_student_partners/templates/account/password_reset_from_key_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/account/password_reset_from_key_done.html -------------------------------------------------------------------------------- /microsoft_student_partners/templates/account/password_set.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/account/password_set.html -------------------------------------------------------------------------------- /microsoft_student_partners/templates/account/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/account/signup.html -------------------------------------------------------------------------------- /microsoft_student_partners/templates/account/signup_closed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/account/signup_closed.html -------------------------------------------------------------------------------- /microsoft_student_partners/templates/account/verification_sent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/account/verification_sent.html -------------------------------------------------------------------------------- /microsoft_student_partners/templates/account/verified_email_required.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/account/verified_email_required.html -------------------------------------------------------------------------------- /microsoft_student_partners/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/base.html -------------------------------------------------------------------------------- /microsoft_student_partners/templates/base.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/base.zip -------------------------------------------------------------------------------- /microsoft_student_partners/templates/certificates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/certificates/base.html -------------------------------------------------------------------------------- /microsoft_student_partners/templates/certificates/email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/certificates/email.html -------------------------------------------------------------------------------- /microsoft_student_partners/templates/certificates/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/certificates/footer.html -------------------------------------------------------------------------------- /microsoft_student_partners/templates/certificates/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/certificates/header.html -------------------------------------------------------------------------------- /microsoft_student_partners/templates/certificates/project.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/certificates/project.html -------------------------------------------------------------------------------- /microsoft_student_partners/templates/mspsoc/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/mspsoc/base.html -------------------------------------------------------------------------------- /microsoft_student_partners/templates/mspsoc/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/mspsoc/contact.html -------------------------------------------------------------------------------- /microsoft_student_partners/templates/mspsoc/elements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/mspsoc/elements.html -------------------------------------------------------------------------------- /microsoft_student_partners/templates/mspsoc/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/mspsoc/footer.html -------------------------------------------------------------------------------- /microsoft_student_partners/templates/mspsoc/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/mspsoc/header.html -------------------------------------------------------------------------------- /microsoft_student_partners/templates/mspsoc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/mspsoc/index.html -------------------------------------------------------------------------------- /microsoft_student_partners/templates/mspsoc/project.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/mspsoc/project.html -------------------------------------------------------------------------------- /microsoft_student_partners/templates/mspsoc/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/mspsoc/readme.txt -------------------------------------------------------------------------------- /microsoft_student_partners/templates/mspsoc/schedule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/mspsoc/schedule.html -------------------------------------------------------------------------------- /microsoft_student_partners/templates/mspsoc/single-blog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/mspsoc/single-blog.html -------------------------------------------------------------------------------- /microsoft_student_partners/templates/mspsoc/social.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/mspsoc/social.html -------------------------------------------------------------------------------- /microsoft_student_partners/templates/mspsoc/speakers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/mspsoc/speakers.html -------------------------------------------------------------------------------- /microsoft_student_partners/templates/mspsoc/twitter_analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/mspsoc/twitter_analytics.html -------------------------------------------------------------------------------- /microsoft_student_partners/templates/mspsoc/venue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/mspsoc/venue.html -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/2019_MSP_IO_Pattern_Blog_Black_850x376.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/2019_MSP_IO_Pattern_Blog_Black_850x376.png -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/css/custom.css -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/css/main-green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/css/main-green.css -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/css/main.css -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/css/owl.video.play.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/css/owl.video.play.html -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/css/plugins.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/css/plugins.css -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/fonts/et-line.eot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/fonts/et-line.woff: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/fonts/et-lined41d.eot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/fonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/fonts/fa-brands-400.eot -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/fonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/fonts/fa-brands-400.svg -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/fonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/fonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/fonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/fonts/fa-brands-400.woff -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/fonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/fonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/fonts/fa-brands-400d41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/fonts/fa-brands-400d41d.eot -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/fonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/fonts/fa-regular-400.eot -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/fonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/fonts/fa-regular-400.svg -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/fonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/fonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/fonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/fonts/fa-regular-400.woff -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/fonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/fonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/fonts/fa-regular-400d41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/fonts/fa-regular-400d41d.eot -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/fonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/fonts/fa-solid-900.eot -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/fonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/fonts/fa-solid-900.svg -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/fonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/fonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/fonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/fonts/fa-solid-900.woff -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/fonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/fonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/fonts/fa-solid-900d41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/fonts/fa-solid-900d41d.eot -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/fonts/ionicons5d5c.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/fonts/ionicons5d5c.eot -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/fonts/ionicons5d5c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/fonts/ionicons5d5c.svg -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/fonts/ionicons5d5c.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/fonts/ionicons5d5c.ttf -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/fonts/ionicons5d5c.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/fonts/ionicons5d5c.woff -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/fonts/ionicons5d5c.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/fonts/ionicons5d5c.woff2 -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/imgs/blog/b1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/imgs/blog/b1.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/imgs/blog/b2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/imgs/blog/b2.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/imgs/blog/b3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/imgs/blog/b3.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/imgs/c-t-a-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/imgs/c-t-a-bg.png -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/imgs/cover/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/imgs/cover/cover.png -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/imgs/icone-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/imgs/icone-1.png -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/imgs/icone-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/imgs/icone-2.png -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/imgs/icone-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/imgs/icone-3.png -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/imgs/logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/imgs/logo1.png -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/imgs/projects/portfolio1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/imgs/projects/portfolio1.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/imgs/projects/portfolio2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/imgs/projects/portfolio2.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/imgs/projects/portfolio3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/imgs/projects/portfolio3.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/imgs/projects/portfolio4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/imgs/projects/portfolio4.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/imgs/projects/portfolio5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/imgs/projects/portfolio5.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/imgs/projects/portfolio6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/imgs/projects/portfolio6.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/imgs/projects/portfolio7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/imgs/projects/portfolio7.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/imgs/projects/portfolio8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/imgs/projects/portfolio8.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/imgs/projects/portfolio9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/imgs/projects/portfolio9.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/imgs/team/t1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/imgs/team/t1.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/imgs/team/t2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/imgs/team/t2.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/imgs/team/t3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/imgs/team/t3.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/imgs/testimonial/t1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/imgs/testimonial/t1.jpg -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/js/app-function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/js/app-function.js -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/js/app-scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/js/app-scripts.js -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/js/jquery.min.js -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/js/popper.min.js -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/assets/js/wow.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/assets/js/wow.min.js -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/fonts/et-line-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/fonts/et-line-2.html -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/fonts/et-line.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/fonts/et-line.html -------------------------------------------------------------------------------- /microsoft_student_partners/templates/new msp website/index-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/new msp website/index-2.html -------------------------------------------------------------------------------- /microsoft_student_partners/templates/pages/about.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} -------------------------------------------------------------------------------- /microsoft_student_partners/templates/pages/home.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} -------------------------------------------------------------------------------- /microsoft_student_partners/templates/qpower/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/qpower/base.html -------------------------------------------------------------------------------- /microsoft_student_partners/templates/qpower/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/qpower/footer.html -------------------------------------------------------------------------------- /microsoft_student_partners/templates/qpower/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/qpower/header.html -------------------------------------------------------------------------------- /microsoft_student_partners/templates/qpower/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/qpower/index.html -------------------------------------------------------------------------------- /microsoft_student_partners/templates/users/user_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/users/user_detail.html -------------------------------------------------------------------------------- /microsoft_student_partners/templates/users/user_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/templates/users/user_form.html -------------------------------------------------------------------------------- /microsoft_student_partners/twitter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /microsoft_student_partners/twitter/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/twitter/admin.py -------------------------------------------------------------------------------- /microsoft_student_partners/twitter/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/twitter/apps.py -------------------------------------------------------------------------------- /microsoft_student_partners/twitter/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /microsoft_student_partners/twitter/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/twitter/models.py -------------------------------------------------------------------------------- /microsoft_student_partners/twitter/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/twitter/tests.py -------------------------------------------------------------------------------- /microsoft_student_partners/twitter/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/twitter/views.py -------------------------------------------------------------------------------- /microsoft_student_partners/users/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /microsoft_student_partners/users/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/users/adapters.py -------------------------------------------------------------------------------- /microsoft_student_partners/users/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/users/admin.py -------------------------------------------------------------------------------- /microsoft_student_partners/users/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/users/apps.py -------------------------------------------------------------------------------- /microsoft_student_partners/users/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/users/forms.py -------------------------------------------------------------------------------- /microsoft_student_partners/users/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/users/migrations/0001_initial.py -------------------------------------------------------------------------------- /microsoft_student_partners/users/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /microsoft_student_partners/users/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/users/models.py -------------------------------------------------------------------------------- /microsoft_student_partners/users/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /microsoft_student_partners/users/tests/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/users/tests/factories.py -------------------------------------------------------------------------------- /microsoft_student_partners/users/tests/test_forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/users/tests/test_forms.py -------------------------------------------------------------------------------- /microsoft_student_partners/users/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/users/tests/test_models.py -------------------------------------------------------------------------------- /microsoft_student_partners/users/tests/test_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/users/tests/test_urls.py -------------------------------------------------------------------------------- /microsoft_student_partners/users/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/users/tests/test_views.py -------------------------------------------------------------------------------- /microsoft_student_partners/users/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/users/urls.py -------------------------------------------------------------------------------- /microsoft_student_partners/users/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/users/views.py -------------------------------------------------------------------------------- /microsoft_student_partners/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /microsoft_student_partners/utils/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/microsoft_student_partners/utils/context_processors.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -r requirements/production.txt 2 | -------------------------------------------------------------------------------- /requirements/base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/requirements/base.txt -------------------------------------------------------------------------------- /requirements/local.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/requirements/local.txt -------------------------------------------------------------------------------- /requirements/production.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/requirements/production.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/setup.cfg -------------------------------------------------------------------------------- /utility/install_os_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/utility/install_os_dependencies.sh -------------------------------------------------------------------------------- /utility/install_python_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/utility/install_python_dependencies.sh -------------------------------------------------------------------------------- /utility/requirements-bionic.apt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/utility/requirements-bionic.apt -------------------------------------------------------------------------------- /utility/requirements-buster.apt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/utility/requirements-buster.apt -------------------------------------------------------------------------------- /utility/requirements-jessie.apt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/utility/requirements-jessie.apt -------------------------------------------------------------------------------- /utility/requirements-stretch.apt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/utility/requirements-stretch.apt -------------------------------------------------------------------------------- /utility/requirements-trusty.apt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/utility/requirements-trusty.apt -------------------------------------------------------------------------------- /utility/requirements-xenial.apt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spider-yamet/Microsoft-Student-Partners/HEAD/utility/requirements-xenial.apt --------------------------------------------------------------------------------