| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 | <!DOCTYPE html><html>	<head>		<meta charset="UTF-8">		<meta name="apple-mobile-web-app-capable" content="yes" />		<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1, maximum-scale=1"/>		<meta name="theme-color" content="#ff9224">		<link rel="stylesheet" href="../script/tocas/tocas.css">		<script src="../script/tocas/tocas.js"></script>		<script src="../script/jquery.min.js"></script>		<script src="../script/ao_module.js"></script>		<link rel="manifest" crossorigin="use-credentials" href="manifest.json">		<title>Blog</title>		<style>			body{				background-color: white;			}			.postControls{				position: absolute;				top: 0.5em;				right: 0.5em;			}			.blog.main{				background-color: #ff9224;				border: 1px solid #ff9224;				color: white;			}			.blog.main:hover{				background-color: #c7721c !important;				border: 1px solid #c7721c !important;				color: white !important;			}			.blog.green{				background-color: #47d191;				border: 1px solid #47d191;				color: white;			}			.blog.green:hover{				background-color: #38a170 !important;				border: 1px solid #38a170 !important;				color: white !important;			}			.blog.red{				background-color: #ff3d3d;				border: 1px solid #ff3d3d;				color: white;			}			.blog.red:hover{				background-color: #962d2d !important;				border: 1px solid #962d2d !important;				color: white !important;			}			.blog.blue{				background-color: #4287f5;				border: 1px solid #4287f5;				color: white;			}			.blog.blue:hover{				background-color: #336bc4 !important;				border: 1px solid #336bc4 !important;				color: white !important;			}			            .topPad{                margin-top: 4px;            }		</style>	</head>	<body>		<br><br>		<div class="ts container">			<a href="index.html">				<h4><img class="ts mini spaced image" src="img/module_icon.png" style="margin-right: 12px;">  Blog Writer</h4>            </a>			<div class="ts divider"></div>			<h3>Settings</h3>            <div class="ts segment">                <h4><i class="ts home icon"></i> Blog Homepage Settings</h4>                <p>Title Text</p>                <div class="ts fluid input">                    <input id="title" type="text" placeholder="Title">                </div>                <br>                <p>Subtitle Text</p>                <div class="ts fluid input">                    <input id="subtitle" type="text" placeholder="Subtitle">                </div>                <p>Footer Text</p>                <div class="ts fluid input">                    <input id="footer" type="text" placeholder="Footer">                </div>                <br><br>                <button class="ts button blog green" onclick="updateRender();"><i class="save icon"></i> Update Render</button>            </div>			<br><br><br>		</div>				<script>            function updateRender(){                var title = $("#title").val();                var subtitle = $("#subtitle").val();                var footer = $("#footer").val();                ao_module_agirun("Blog/backend/renderIndex.html", {                    title: title,                    subtitle: subtitle,                    footer: footer                }, function(data){                    console.log(data);                })            }		</script>	</body></html>
 |