I was wondering if anyone could help me out with a .js solution since that is not my strength and we have no programmers. All of our courses are required to uses the Syllabus as the course homepage. Currently we are embedding an iframe of a custom webpage (currently - UAB SON Slider) on all of the courses homepages so that we can periodically update the page and it updates in all of our courses. This has worked of, but I have to make some compromises that I have never been happy with.

Today I was thinking that maybe this could be done with .js below the "Jump to Today" link similar to the way we are able to append the menu across the top of the old UI:
(function() { var menu = $('#menu'); if (!menu.length) return; //Menu Item Support var stuResources = $('', { 'class': 'menu-item', html: 'Student Resources'+ //'Resources ''+ //List items 'http://www.uab.edu/students/one-stop" target="_blank">UAB One Stop'+ 'http://www.uab.edu/libraries/" target="_blank">UAB Libraries'+ 'http://www.uab.edu/students/academics/exceptions-to-academic-policy" target="_blank">UAB Academic Policies'+ 'http://www.uab.edu/students/academics/academic-calendar" target="_blank">UAB Academic Calendar'+ 'http://www.uab.edu/handbook/" target="_blank">UAB Student Handbook'+ 'http://www.uab.edu/students/services" target="_blank">UAB Services Directory'+ 'http://www.uab.edu/students/services/disability-support-services" target="_blank">UAB Disability Services'+ 'http://www.uab.edu/writingcenter/" target="_blank">UAB Writing Center'+ 'http://www.uab.edu/elearning/students/canvas-tutorials" target="_blank">Canvas Student Tutorials'+ 'http://www.uab.edu/elearning/how-online-learning-works" target="_blank">Online Student Success'+ 'http://www.uab.edu/careerservices/" target="_blank">UAB Career & Professional Development'+ 'http://www.uab.edu/elearning/academic-technology/student" target="_blank">UAB Academic Technologies'+ //Ending '' }); menmenu.append(stuResources);})So I guess my question is this - is there a way to append the syllabus so that it will write some standard content within all of our courses? The slide we are using is created entirely out of HTML & CSS, so I would think I could add the CSS to our global CSS and add the HTML similar to above. I just don't know how to write the call to put it in the correct place.
I hope I have given enough of an idea of what I am trying to do. I am totally open to feed back on ideas or reasons that this is a completely insane idea.