Customize file index, add meta viewport

This commit is contained in:
Reimar 2024-03-23 16:27:10 +01:00
parent 73eaee7c6d
commit def456d7e2
Signed by: Reimar
GPG Key ID: 93549FA07F0AE268
215 changed files with 4466 additions and 7403 deletions

24
Copy.HC
View File

@ -2,13 +2,13 @@
U8 *FilenameToURL(U8 *filename, I64 line) U8 *FilenameToURL(U8 *filename, I64 line)
{ {
 filename[StrLen(filename) - 2] = NULL; filename[StrLen(filename) - 2] = NULL;
U8 *htmlext = ""; U8 *htmlext = "";
if (StrMatch(".DD", filename)) if (StrMatch(".DD", filename))
htmlext = ".HTML"; htmlext = ".HTML";
return MStrPrint("/src%s%s#l%d", filename + 2, htmlext, line); return MStrPrint("/Wb%s%s#l%d", filename + 2, htmlext, line);
} }
U8 *LinkCvt(U8 *link_st) U8 *LinkCvt(U8 *link_st)
@ -48,22 +48,27 @@ U8 *LinkCvt(U8 *link_st)
} }
CDirEntry *start_entry = FilesFind( CDirEntry *start_entry = FilesFind(
"/*.HC.Z;*.DD.Z;!/Home/*", "/*.HC.Z;*/.HH.Z;*.DD.Z;!/Home/*",
FUF_RECURSE | FUF_JUST_FILES FUF_RECURSE | FUF_JUST_FILES
); );
CDirEntry *entry = start_entry; CDirEntry *entry = start_entry;
U8 *header = U8 *html_header =
"<!DOCTYPEhtml>\n" "<!DOCTYPEhtml>\n"
"<html lang=\"en\">\n" "<html lang=\"en\">\n"
"<head>\n" "<head>\n"
"<meta charset=\"UTF-8\">\n" "<meta charset=\"UTF-8\">\n"
"<meta name=\"generator\" content=\"TempleOS V5.03\">\n" "<meta name=\"generator\" content=\"TempleOS V5.03\">\n"
"<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n"
"<link rel=\"stylesheet\" href=\"/style/templeos.css\">\n" "<link rel=\"stylesheet\" href=\"/style/templeos.css\">\n"
"<script src=\"/script/templeos.js\"></script>\n"; "<script src=\"/script/templeos.js\"></script>\n";
U8 *body_header =
"<body>\n"
"<pre style=\"font-family: courier, monospace; font-size: 10pt;\">\n";
Del("C:/Home/Src", FALSE, TRUE); Del("C:/Home/Src", FALSE, TRUE);
do { do {
@ -86,9 +91,12 @@ do {
ToHtml( ToHtml(
entry->full_name, entry->full_name,
new_name, new_name,
header, html_header,
NULL, NULL, NULL, body_header,
80, TRUE, NULL,
NULL,
80,
TRUE,
&LinkCvt, &LinkCvt,
); );
else else
@ -96,4 +104,4 @@ do {
} while (entry = entry->next); } while (entry = entry->next);
DirTreeDel(start_entry); DirTreeDel(start_entry);

50
file_index.xslt Normal file
View File

@ -0,0 +1,50 @@
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:param name="directory"/>
<xsl:template match="/">
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>TempleOS files</title>
<link rel="stylesheet" href="/style/templeos.css"/>
</head>
<body>
<pre style="font-family: courier, monospace; font-size: 10pt; width: 700px; max-width: 100%;">
<p>Index of <script>document.write(location.pathname.substr(3));</script></p>
<a href=".." style="color: #aa00aa;">..</a>
<br/>
<xsl:for-each select="list/*">
<xsl:variable name="name">
<xsl:value-of select="."/>
</xsl:variable>
<xsl:choose>
<xsl:when test="contains($name, '.DD.HTML')">
<a href="{$name}" style="color: #5555ff;"><xsl:value-of select="substring-before($name, '.HTML')"/></a>
</xsl:when>
<xsl:otherwise>
<xsl:choose>
<xsl:when test="contains($name, '.')">
<a href="{$name}" style="color: #5555ff;"><xsl:value-of select="."/></a>
</xsl:when>
<xsl:otherwise>
<a href="{$name}" style="color: #aa00aa;">+] <xsl:value-of select="."/></a>
</xsl:otherwise>
</xsl:choose>
</xsl:otherwise>
</xsl:choose>
<br/>
</xsl:for-each>
</pre>
</body>
</html>
</xsl:template>
</xsl:stylesheet>

Binary file not shown.

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

File diff suppressed because it is too large Load Diff

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="TempleOS V5.03"> <meta name="generator" content="TempleOS V5.03">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/templeos.css"> <link rel="stylesheet" href="/style/templeos.css">
<script src="/script/templeos.js"></script> <script src="/script/templeos.js"></script>
<style type="text/css"> <style type="text/css">

Some files were not shown because too many files have changed in this diff Show More