mirror of
https://github.com/OCA/web.git
synced 2025-02-22 13:21:25 +02:00
* Create SlickJS widget field * Remove template test * Move web_widget_slick assets to backend only, update ReadMe, bump version * Remove highlighting in ReadMe
19 lines
911 B
XML
19 lines
911 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
|
© 2016-TODAY LasLabs Inc.
|
|
@license AGPL-3 or later (http://www.gnu.org/licenses/agpl.html).
|
|
-->
|
|
|
|
<odoo>
|
|
<template id="assets_slick" name="web_widget_slick Assets" inherit_id="web.assets_backend">
|
|
<xpath expr="//script[last()]" position="after">
|
|
<link href="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.5.9/slick.min.css" rel="stylesheet" type="text/css" />
|
|
<link href="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.5.9/slick-theme.min.css" rel="stylesheet" type="text/css" />
|
|
<link href="/web_widget_slick/static/src/css/slick.css" rel="stylesheet" type="text/css" />
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.5.9/slick.min.js" />
|
|
<script src="/web_widget_slick/static/src/js/widget_slick.js" />
|
|
</xpath>
|
|
</template>
|
|
</odoo>
|