|
|
|
|
|
by dakna
895 days ago
|
|
> How else are you going to achieve that? People already thought about that problem when the World Wide Web was invented and they came up with Server Side Includes [0], a scripting standard that predates the Apache HTTP Server. Looks like this inside the HTML document: <!--#include file="header.html" --> <!--#include file="footer.html" --> Not many people use this anymore, but it is easy to share common markup and very accessible for people with just basic HTML knowledge. Major web servers of today still support it. [0] https://en.wikipedia.org/wiki/Server_Side_Includes. |
|