a5w_include()
<!DOCTYPE HTML>
<html lang="en">
<head>
</head>
<%A5 a5w_include("header.a5w") %>
</head>
<body>
<%A5 a5w_include("body.a5w") %>
Hello world!
<div class="clearfix"></div>
<%A5 a5w_include("header.a5w") %>
</body>
</html>
header.a5w
....
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/grid.css">
....
body.a5w
<h1>My title here</h1>
<p>Some text that is always at the top of my website body section</p>
....
footer.a5w
<p>Copyright IADN, LLC.</p>