Skip to content

Commit a3e25ea

Browse files
[ADD] howto/website: add media page
This commit adds the `media` page, links it to the `website_themes` index, deletes duplicated content from the `pages.rst` page and moves images from the current `pages` folder to a new one. Task-4316611 closes #12466 X-original-commit: 0044a6b Signed-off-by: Carlos Valverde (cvs) <[email protected]>
1 parent 52e1bdd commit a3e25ea

File tree

5 files changed

+191
-143
lines changed

5 files changed

+191
-143
lines changed

content/developer/howtos/website_themes.rst

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ successes. We invite you to use it as a base to build your own website and adapt
2828
website_themes/layout
2929
website_themes/navigation
3030
website_themes/pages
31+
website_themes/media
3132
website_themes/building_blocks
3233
website_themes/shapes
3334
website_themes/gradients
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,190 @@
1+
=====
2+
Media
3+
=====
4+
5+
In this chapter we will see how to include media elements such as images, videos or icons within Odoo.
6+
7+
.. _website_themes/media/images:
8+
9+
Images
10+
======
11+
12+
Record images in the database and use them later in your design/code. They will also be
13+
available for the end user through the *media dialog*.
14+
15+
.. image:: media/media-window.png
16+
:alt: Media window
17+
18+
The Website Builder supports the following image file formats: JPG, GIF, PNG, and SVG.
19+
20+
.. warning::
21+
Some options offered by the Website Builder are only applicable to media registered into a
22+
record. You might not see some options if you add an image directly with a relative path to
23+
your module folder.
24+
25+
.. _website_themes/media/images/declaration:
26+
27+
Declaration
28+
-----------
29+
30+
To use your images in your code and have them included in the builder's gallery (so the client can
31+
reuse them), declare them like this:
32+
33+
.. code-block:: xml
34+
:caption: ``/website_airproof/data/images.xml``
35+
36+
<record id="img_about_01" model="ir.attachment">
37+
<field name="name">About Image 01</field>
38+
<field name="datas" type="base64" file="website_airproof/static/src/img/content/img_about_01.jpg"/>
39+
<field name="res_model">ir.ui.view</field>
40+
<field name="public" eval="True"/>
41+
</record>
42+
43+
.. list-table::
44+
:header-rows: 1
45+
:stub-columns: 1
46+
:widths: 20 80
47+
48+
* - Field
49+
- Description
50+
* - id
51+
- The name of your image to be used in your code
52+
* - name
53+
- A descriptive name for your image
54+
* - datas
55+
- The location of your image
56+
57+
.. _website_themes/media/images/use:
58+
59+
Use
60+
---
61+
62+
.. _website_themes/media/images/use/regular:
63+
64+
Regular images
65+
~~~~~~~~~~~~~~
66+
67+
In your xml templates, call your images as follows:
68+
69+
.. code-block:: xml
70+
71+
<img src="/web/image/website_airproof.img_about_01" alt=""/>
72+
73+
Being `img_about_01` the id you gave to your image.
74+
75+
.. _website_themes/media/images/use/background:
76+
77+
Background images
78+
~~~~~~~~~~~~~~~~~
79+
80+
.. code-block:: xml
81+
82+
<section style="background-image: url('/web/image/website_airproof.img_about_01');">
83+
84+
.. _website_themes/media/images/use/logo:
85+
86+
Company logo
87+
~~~~~~~~~~~~
88+
89+
For the company logo, the use is a little bit different. First declare it within the `images.xml`
90+
library and then call it using the right template. For instance, to call inside the header, we will
91+
use `<t t-call="website.placeholder_header_brand">`.
92+
93+
.. code-block:: xml
94+
:caption: ``/website_airproof/data/images.xml``
95+
96+
<record id="website.default_website" model="website">
97+
<field name="logo" type="base64" file="website_airproof/static/src/img/content/logo.png"/>
98+
</record>
99+
100+
.. tip::
101+
To make sure that your images don't slow down your web page and don't weigh too much, try to
102+
respect these few points:
103+
104+
- **Weight**: < 200Kb.
105+
- **Size**: not more than 1500px if not needed.
106+
- **Extension**: use svg or jpg, png or gif.
107+
- **Name**: no spaces, accents or special characters and separate words with dashes. Use
108+
relevant words whenever possible.
109+
- Images larger than 1920px will be heavily compressed by the website builder. If < 1920px, they
110+
will remain intact.
111+
112+
.. _website_themes/media/videos:
113+
114+
Videos
115+
======
116+
117+
Add videos as background.
118+
119+
.. code-block:: xml
120+
121+
<section class="o_background_video" data-bg-video-src="...">
122+
<!-- Content -->
123+
</section>
124+
125+
.. list-table::
126+
:header-rows: 1
127+
:stub-columns: 1
128+
:widths: 20 80
129+
130+
* - Attribute
131+
- Description
132+
* - data-bg-video-src
133+
- Video URL.
134+
135+
Add videos as content.
136+
137+
.. code-block:: xml
138+
139+
<div class="media_iframe_video" data-oe-expression="...">
140+
<div class="css_editable_mode_display">&nbsp;</div>
141+
<div class="media_iframe_video_size" contenteditable="false">&nbsp;</div>
142+
<iframe src="..."
143+
frameborder="0"
144+
contenteditable="false"
145+
allowfullscreen="allowfullscreen"/>
146+
</div>
147+
148+
.. list-table::
149+
:header-rows: 1
150+
:stub-columns: 1
151+
:widths: 20 80
152+
153+
* - Attribute
154+
- Description
155+
* - data-oe-expression
156+
- Video URL.
157+
* - src
158+
- Video URL.
159+
160+
.. _website_themes/media/icons:
161+
162+
Icons
163+
=====
164+
165+
By default, the Font Awesome icons library is included in the Website Builder. You can place icons
166+
anywhere using the CSS Prefix `fa` and the icon's name. Font Awesome is designed to be used with
167+
inline elements. You can use `<i>` tag for brevity, but using a `<span>` is more semantically
168+
correct.
169+
170+
.. code-block:: xml
171+
172+
<span class="fa fa-picture-o"/>
173+
174+
.. seealso::
175+
`Font Awesome v4 icons <https://fontawesome.com/v4/icons/>`_
176+
177+
Enable the Website Builder style options.
178+
179+
.. code-block:: xml
180+
181+
<span class="fa fa-2x fa-picture-o rounded-circle"/>
182+
183+
Increase the icon size (fa-2x, fa-3x, fa-4x, or fa-5x classes).
184+
185+
.. code-block:: xml
186+
187+
<span class="fa fa-2x fa-picture-o"/>
188+
189+
.. image:: media/icon-options.png
190+
:alt: Icon options

content/developer/howtos/website_themes/pages.rst

-143
Original file line numberDiff line numberDiff line change
@@ -164,146 +164,3 @@ Make the header background transparent and stand on top of the page content.
164164
165165
.. image:: pages/header-overlay.png
166166
:alt: Header overlay
167-
168-
Media
169-
=====
170-
171-
Images
172-
------
173-
174-
You can record images in the database and use them later in your design/code. They will also be
175-
available for the end user through the *media dialog*.
176-
177-
.. image:: pages/media-window.png
178-
:alt: Media window
179-
180-
The Website Builder supports the following image file formats: JPG, GIF, PNG, and SVG.
181-
182-
**Declaration**
183-
184-
.. code-block:: xml
185-
:caption: ``/website_airproof/data/images.xml``
186-
187-
<record id="img_about_01" model="ir.attachment">
188-
<field name="name">About Image 01</field>
189-
<field name="datas" type="base64" file="website_airproof/static/src/img/content/img_about_01.jpg"/>
190-
<field name="res_model">ir.ui.view</field>
191-
<field name="public" eval="True"/>
192-
</record>
193-
194-
.. todo:: Missing description in table ...
195-
196-
.. list-table::
197-
:header-rows: 1
198-
:stub-columns: 1
199-
:widths: 20 80
200-
201-
* - Field
202-
- Description
203-
* - name
204-
- Image name
205-
* - datas
206-
- Path to the image file
207-
* - res_model
208-
- Name of the wizard model
209-
210-
Use it as a background image.
211-
212-
.. code-block:: xml
213-
214-
<section style="background-image: url('/web/image/website_airproof.img_about_01');">
215-
216-
Use it as a regular image.
217-
218-
.. code-block:: xml
219-
220-
<img src="/web/image/website_airproof.img_about_01" alt=""/>
221-
222-
Use as a regular image with a color filter.
223-
224-
.. code-block:: xml
225-
226-
<img src="/web/image/website.s_media_list_default_image_1"
227-
class="img img-fluid mx-auto" alt=""
228-
data-gl-filter="custom"
229-
data-filter-options="{'filterColor': 'rgba(0, 0, 0, 0.5)'}"/>
230-
231-
.. tip::
232-
The image size greatly influences the user experience, search engine optimization, and overall
233-
website performance. So, be sure to size your images correctly.
234-
235-
Videos
236-
------
237-
238-
Add videos as background.
239-
240-
.. code-block:: xml
241-
242-
<section class="o_background_video" data-bg-video-src="...">
243-
<!-- Content -->
244-
</section>
245-
246-
.. list-table::
247-
:header-rows: 1
248-
:stub-columns: 1
249-
:widths: 20 80
250-
251-
* - Attribute
252-
- Description
253-
* - data-bg-video-src
254-
- Video URL.
255-
256-
Add videos as content.
257-
258-
.. code-block:: xml
259-
260-
<div class="media_iframe_video" data-oe-expression="...">
261-
<div class="css_editable_mode_display">&nbsp;</div>
262-
<div class="media_iframe_video_size" contenteditable="false">&nbsp;</div>
263-
<iframe src="..."
264-
frameborder="0"
265-
contenteditable="false"
266-
allowfullscreen="allowfullscreen"/>
267-
</div>
268-
269-
.. list-table::
270-
:header-rows: 1
271-
:stub-columns: 1
272-
:widths: 20 80
273-
274-
* - Attribute
275-
- Description
276-
* - data-oe-expression
277-
- Video URL.
278-
* - src
279-
- Video URL.
280-
281-
Icons
282-
-----
283-
284-
By default, the Font Awesome icons library is included in the Website Builder. You can place icons
285-
anywhere using the CSS Prefix `fa` and the icon's name. Font Awesome is designed to be used with
286-
inline elements. You can use `<i>` tag for brevity, but using a `<span>` is more semantically
287-
correct.
288-
289-
.. code-block:: xml
290-
291-
<span class="fa fa-picture-o"/>
292-
293-
.. seealso::
294-
`Font Awesome v4 icons <https://fontawesome.com/v4/icons/>`_
295-
296-
Enable the Website Builder style options.
297-
298-
.. code-block:: xml
299-
300-
<span class="fa fa-2x fa-picture-o rounded-circle"/>
301-
302-
Increase the icon size (fa-2x, fa-3x, fa-4x, or fa-5x classes).
303-
304-
.. code-block:: xml
305-
306-
<span class="fa fa-2x fa-picture-o"/>
307-
308-
.. image:: pages/icon-options.png
309-
:alt: Icon options

0 commit comments

Comments
 (0)