-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathposts.html
More file actions
106 lines (94 loc) · 4.65 KB
/
posts.html
File metadata and controls
106 lines (94 loc) · 4.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
---
title: Wiki Knights Posts
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{{ page.title }}</title>
<!-- Stylesheets -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="{{ site.url }}{{ site.baseurl }}/assets/posts-small.css">
<link rel="stylesheet" id="maywood-fonts-css"
href="https://fonts-api.wp.com/css?family=IBM+Plex+Sans%3A300%2C300i%2C500%2C500i%2C700&subset=latin%2Clatin-ext"
media="all">
<link crossorigin="anonymous" rel="stylesheet" id="all-css-14-1"
href="https://s0.wp.com/wp-content/themes/pub/maywood/style.css?m=1747306771i&cssminify=yes" type="text/css"
media="all">
<!-- End Stylesheets -->
<!-- Open Graph Tags -->
<meta property="og:type" content="website">
<meta property="og:title" content="{{ site.title }}">
<meta property="og:url" content="{{ site.url }}{{ site.baseurl }}{{ page.url }}">
<meta property="og:site_name" content="{{ site.title }}">
<meta property="og:image"
content="{{ site.url }}{{ site.icon }}?w=100">
<meta property="og:image:width" content="200">
<meta property="og:image:height" content="200">
<meta property="og:image:alt" content="">
<meta property="og:locale" content="en_US">
<!-- End Open Graph Tags -->
<link rel="icon" href="{{ site.url }}{{ site.icon }}?w=32"
sizes="32x32">
<link rel="icon" href="{{ site.url }}{{ site.icon }}?w=100"
sizes="192x192">
<link rel="apple-touch-icon"
href="{{ site.url }}{{ site.icon }}?w=100">
<meta name="msapplication-TileImage"
content="{{ site.url }}{{ site.icon }}?w=100">
</head>
<body
class="blog wp-embed-responsive wp-theme-pubvaria wp-child-theme-pubmaywood customizer-styles-applied hfeed image-filters-enabled hide-homepage-header hide-homepage-footer jetpack-reblog-enabled">
<div id="page" class="site">
<a class="skip-link screen-reader-text" href="#content">Skip to content</a>
<header id="masthead" class="site-header responsive-max-width" role="banner">
<div class="site-branding">
<p class="site-title"><a href="{{ site.url }}{{ site.baseurl }}" rel="home">{{ site.title }}</a></p>
</div>
</header>
<div id="content" class="site-content">
<section id="primary" class="content-area">
<main id="main" class="site-main">
{% for post in site.posts %}
<article id="post-499"
class="post-499 post type-post status-publish format-standard has-post-thumbnail hentry category-uncategorized entry">
<header class="entry-header responsive-max-width">
<h2 class="entry-title">
<a href="{{ site.url }}{{ site.baseurl }}{{ post.url }}"
rel="bookmark">
{{ post.title }}
</a>
</h2>
</header>
<figure class="post-thumbnail">
<a class="post-thumbnail-inner alignwide"
href="{{ site.url }}{{ site.baseurl }}{{ post.url }}"
aria-hidden="true" tabindex="-1">
<img width="1568" height="881"
src="{{ site.url }}{{ post.thumbnail }}?w=1568"
class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt=""
decoding="async"
sizes="(max-width: 1568px) 100vw, 1568px" >
</a>
</figure>
<div class="entry-content">
<p>
{{ post.summary }}
<a class="more-link"
href="{{ site.url }}{{ site.baseurl }}{{ post.url }}">Continue
reading <span class="screen-reader-text">{{ post.title }}</span></a>
</p>
</div>
</article>
{% endfor %}
</main>
</section>
</div>
<footer id="colophon" class="site-footer responsive-max-width">
<div class="site-info">
<a class="site-name" href="{{ site.url }}{{ site.baseurl }}" rel="home">{{ site.title }}</a>
</div>
</footer>
</div>
</body>
</html>