.. ================================================== .. FOR YOUR INFORMATION .. -------------------------------------------------- .. -*- coding: utf-8 -*- with BOM. .. _developers_bestpractise_fluid_01Storage: .. index:: ! Fluid single: Fluid; storage 01 Storage ========== * Location of your Fluid partials. * Your templates are partials only. * Partials must called 01, 02, 03, ... Below is a sample with four additional Fluid partials. .. code:: bash EXT:my_ext/Resources/Private/View/xblog/ ├── 1stPlugin │   └── Partials │   └── Externaltemplate │      ├── List │      │   ├── 01.html │      │   ├── 02.html │      │   ├── 03.html │      │   └── 04.html │      └── Single │      ├── 01.html │      ├── 02.html │      ├── 03.html │      └── 04.html └── 2ndContent └── Partials └── Externaltemplate    ├── List    │   ├── 01.html    │   ├── 02.html    │   ├── 03.html    │   └── 04.html    └── Single    ├── 01.html    ├── 02.html    ├── 03.html    └── 04.html