Merge e38db62af2f2ca57ee6c348985757c89d303ada7 into bf172e0d78fa08060176fd0014499692230200ba

This commit is contained in:
yoanhg421 2023-10-02 11:41:48 -07:00 committed by GitHub
commit 5a84ca3b15
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 4 deletions

View File

@ -6,8 +6,6 @@
body { body {
color: #{{ .View.Color.Foreground }}; color: #{{ .View.Color.Foreground }};
background: #{{ .View.Color.Background }}; background: #{{ .View.Color.Background }};
width: {{ .View.Width }}px;
height: {{ .View.Height }}px;
display: block; display: block;
margin: 0; margin: 0;
padding: 0; padding: 0;

View File

@ -8,8 +8,8 @@
<meta name="viewport" content="{{ .ViewPort }}"/> <meta name="viewport" content="{{ .ViewPort }}"/>
</head> </head>
<body> <body>
<div style="top:{{ .Image.Top }}%"> <div >
<img src="../{{ .Image.Path }}" alt="{{ .Title }}" width="{{ .Image.Width }}" height="{{ .Image.Height }}"/> <img src="../{{ .Image.Path }}" alt="{{ .Title }}" width="{{ .Image.Width }}" height="{{ .Image.Height }}" />
</div> </div>
</body> </body>
</html> </html>