20 lines
354 B
Plaintext
Executable File
20 lines
354 B
Plaintext
Executable File
<%inc
|
|
#include <iostream>
|
|
%>
|
|
<%c++
|
|
std::cout<<"this is a Http backend rendering Test"<<std::endl;
|
|
%>
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<%c++ std::string title=@@.get<std::string>("title");%>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title><%c++ $$<<title;%></title>
|
|
</head>
|
|
<body>
|
|
<footer>
|
|
<span>CopyRight@2017 All Rights Reserved</span>
|
|
</footer>
|
|
</body>
|
|
</html>
|