You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

17 lines
909 B

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="theme_college_assets" inherit_id="web.assets_frontend">
<!-- The "theme_college_assets" template extends the "web.assets_frontend" -->
<!-- template and adds additional assets for a college theme. It injects-->
<!-- a CSS file and a JavaScript file into the web page, allowing for custom -->
<!-- styling and functionality related to college themes.-->
<xpath expr="//link[last()]" position="after">
<link rel="stylesheet" type="text/css"
href="/theme_college/static/src/css/theme_college.css"/>
</xpath>
<xpath expr="//script[last()]" position="after">
<script type="text/javascript"
src="/theme_college/static/src/js/college_location.js"/>
</xpath>
</template>
</odoo>