blob: b19a20f56800e67cd206ed6d4978c717a269ddc2 [file]
<%
try:
file_content = open(path)
except:
raise "Should never execute here"
doc_content = ''.join(file_content.readlines())
file_content.close()
%>
${doc_content}