I have an application, where I have a file called "layout" which is responsible for displaying all HTML
(head, footer, body just to call the side menu which is another file) CSS
and Javascript
common to all pages of this application.
All the pages of my application, I create only the body of them, because I call the layout to display the rest. Everything works fine up there.
There was a time when I needed to create a custom%% for a specific page, so in the body of that page it includes this CSS
with the CSS
tag. But this time, had to occur other times with this same CSS, leaving it to be rare in the application.
Then I put this <style>
in the application's default%% file, but since I have hundreds of pages, that CSS
also exists in the body of that page, causing it to exist in duplicate when these pages are accessed.
I'm slowly removing this CSS
from these pages and leaving it only in the file of CSS
default.
Can this duplicate% of% result in some performance problem or other problem?