I work in a public body and we have numerous web applications in PHP and .Net .
I'm working on a standard layout so that we maintain the visual identity across all systems.
Is there any way (tool / framework / API) that every developer, regardless of language can use?
The structure we set up is: Header
, PostCss
, Navbar
, Content
, Sidebar
, PostScript
and Footer
.
In PHP for example, I give include
to the file and that's it. I can still customize some variables as $tituloPagina
.
We would still like to create sections like Laravel in Blade , where I can use @yield
and @section
.
The idea was to create an API and in the URL, the programmer already passed the value of the variables and then mount the layout with the JSON of the result, or something like: ?tituloPagina=loremipsum&corpoPagina=centralizado
.