One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
<!-- Raven.js Config --> | |
<script src="{{ JS_PATH }}/lib/raven.js" type="text/javascript"></script> | |
<script type="text/javascript"> | |
// Ignore list based off: https://gist.github.com/1878283 | |
var ravenOptions = { | |
// Will cause a deprecation warning, but the demise of `ignoreErrors` is still under discussion. | |
// See: https://github.com/getsentry/raven-js/issues/73 | |
ignoreErrors: [ | |
// Random plugins/extensions | |
'top.GLOBALS', |
// List all files in a directory in Node.js recursively in a synchronous fashion | |
var walkSync = function(dir, filelist) { | |
var fs = fs || require('fs'), | |
files = fs.readdirSync(dir); | |
filelist = filelist || []; | |
files.forEach(function(file) { | |
if (fs.statSync(dir + file).isDirectory()) { | |
filelist = walkSync(dir + file + '/', filelist); | |
} | |
else { |
{ | |
'/py/api/student/projects' : 'projectsList', | |
'/py/api/student/projects/objectives' : 'objectivesList', | |
'/py/api/student/catalogues' : 'programs', | |
'/py/api/students/catalogue/batches' : 'batches', | |
'/api/university/list' : 'universities' | |
} |
/* | |
Right angle triangles | |
*/ | |
.right-angle-top-left{ | |
position: relative; | |
margin: 30px; | |
width: 0; | |
border-right: 100px solid transparent; | |
border-top: 100px solid red; | |
} |