Files
42_INT_12_webserv/srcs/webserv/autoindex.hpp
2022-08-12 04:38:07 +02:00

28 lines
335 B
C++

#ifndef AUTOINDEX_HPP
# define AUTOINDEX_HPP
# define AUTOINDEX_START \
"<!DOCTYPE html>"\
"<html>"\
"<head>"\
"<title>Index of "
# define AUTOINDEX_MID1 \
"</title>"\
"</head>"\
"<body>" \
"<h1>Index of "
# define AUTOINDEX_MID2 \
"</h1>"\
"<hr>"\
"<pre>"
# define AUTOINDEX_END \
"</pre>"\
"<hr>"\
"</body>"\
"</html>"
#endif