Change template.html to index.html

This commit is contained in:
Dita Aji Pratama 2025-08-04 11:39:24 +07:00
parent 358663f1e4
commit 8cb024f82d
2 changed files with 2 additions and 2 deletions

View File

@ -332,7 +332,7 @@ ul.social li{
<table role="presentation" border="0" cellpadding="0" cellspacing="0" width="100%"> <table role="presentation" border="0" cellpadding="0" cellspacing="0" width="100%">
<tr> <tr>
<td class="logo" style="text-align: center;"> <td class="logo" style="text-align: center;">
<h1>${heading}</h1> <h1>${header}</h1>
</td> </td>
</tr> </tr>
</table> </table>

View File

@ -7,7 +7,7 @@ def main(dir, page):
html_template = html.main.get_html("templates/ezmail/html") html_template = html.main.get_html("templates/ezmail/html")
html_page = html.main.get_html(dir) html_page = html.main.get_html(dir)
params_list = { params_list = {
"template" : html_template ["template.html" ] , "index" : html_template ["index.html" ] ,
"container" : html_page [ page+".html" ] "container" : html_page [ page+".html" ]
} }
return params_list return params_list