-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
92 lines (86 loc) · 3.99 KB
/
blog.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="build/css/app.css">
<title>Bienes Raices</title>
</head>
<body>
<header class="header">
<div class="contenedor contenido-header">
<div class="barra">
<a href="/">
<img src="build/img/logo.svg" alt="Logototipo de Bienes Raices">
</a>
<div class="mobile-menu">
<img src="build/img/barras.svg" alt="">
</div>
<div class="derecha">
<img src="build/img/dark-mode.svg" alt="" class="boton-dark">
<nav class="navegacion">
<a href="nosotros.html" class="" id="">Nosotros</a>
<a href="anuncios.html" class="" id="">Anuncios</a>
<a href="blog.html" class="" id="">Blog</a>
<a href="contacto.html" class="" id="">Contacto</a>
</nav>
</div>
</div>
</div>
</header>
<main class="contenedor">
<h1>Nuestro Blog</h1>
<section class="blog">
<article class="entrada-blog">
<div class="entrada-imagen">
<picture>
<source srcset="build/img/blog1.webp" type="image/webp">
<source srcset="build/img/blog1.jpg" type="image/jpg">
<img src="build/img/blog1.jpg" alt="">
</picture>
</div>
<div class="entrada-contenido">
<a href="entrada.html">
<h4>Terraza en el techo de tu casa</h4>
<p>Escrito el: <span class="informacion-meta">20/10/2022</span> por: <span class="informacion-meta">Admin</span></p>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Sint quas et repellendus maiores ex
cumque magnam, repudiandae commodi molestiae similique sapiente provident velit illum illo
cum, qui, ad corporis. Aspernatur?</p>
</a>
</div>
</article>
<article class="entrada-blog">
<div class="entrada-imagen">
<picture>
<source srcset="build/img/blog2.webp" type="image/webp">
<source srcset="build/img/blog2.jpg" type="image/jpg">
<img src="build/img/blog2.jpg" alt="">
</picture>
</div>
<div class="entrada-contenido">
<a href="entrada.html">
<h4>Terraza en el techo de tu casa</h4>
<p>Escrito el: <span class="informacion-meta">20/10/2022</span> por: <span class="informacion-meta">Admin</span></p>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Sint quas et repellendus maiores ex
cumque magnam, repudiandae commodi molestiae similique sapiente provident velit illum illo
cum, qui, ad corporis. Aspernatur?</p>
</a>
</div>
</article>
</section>
</main>
<footer class="footer seccion">
<div class="contenedor contenedor-footer">
<nav class="navegacion">
<a href="nosotros.html" class="" id="">Nosotros</a>
<a href="anuncios.html" class="" id="">Anuncios</a>
<a href="blog.html" class="" id="">Blog</a>
<a href="contacto.html" class="" id="">Contacto</a>
</nav>
<p>Todos los Derechos Reservados</p>
</div>
</footer>
<script src="build/js/bundle.min.js"></script>
</body>
</html>