-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (36 loc) · 1.19 KB
/
index.html
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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WordPress REST API</title>
<link href="https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./style/estilos.css">
</head>
<body>
<h1>WordPress REST API</h1>
<article id="site" class="site"></article>
<section id="posts" class="posts"></section>
<img class="loader" src="./assets/loader.svg" alt="Cargando...">
<template id="post-template">
<article class="post">
<img class="post-image">
<aside>
<h2 class="post-title"></h2>
<figure class="post-author"></figure>
<small class="post-date"></small>
<a class="post-link" target="_blank">Ver publicación original</a>
<p class="post-excerpt"></p>
<div class="post-categories"></div>
<div class="post-tags"></div>
<details class="post-content">
<summary>Ver contenido de la publicación</summary>
<article></article>
</details>
</aside>
</article>
<hr>
</template>
<script src="./js/posts.js"></script>
</body>
</html>