-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
50 lines (41 loc) · 1.83 KB
/
index.php
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
<?php
/**
* The main template file.
*
* This is the most generic template file in a WordPress theme
* and one of the two required files for a theme (the other being style.css).
* It is used to display a page when nothing more specific matches a query.
* E.g., it puts together the home page when no home.php file exists.
* Learn more: http://codex.wordpress.org/Template_Hierarchy
*
* @package understrap
*/
// Exit if accessed directly.
defined( 'ABSPATH' ) || exit;
get_header();
?>
<section>
<div class="container mx-auto lg:py-10 py-5">
<div class="flex flex-col mb-12">
<div class="sobre-mi px-5 lg:mt-0 mx-auto lg:w-3/4">
<h2 class="text-2xl text-mm font-black lg:text-3xl mt-3">Blog</h2>
</div>
</div>
<div class=" grid grid-cols-1 lg:grid-cols-3 gap-4 bg-white max-w-screen-lg mx-auto mb-4">
<a href="#" class="w-full flex justify-center items-center" >
<img class="w-full" src="<?php echo get_stylesheet_directory_uri() ?>/img/vegas.jpg" alt="">
</a>
<div class="block py-8 px-6 lg:col-span-2">
<div class="tags flex mb-4">
<a href="#" class="inline-block bg-gray-200 rounded-full px-3 py-1 text-sm text-gray-700 mr-2">#JQuery</a>
<a href="#" class="inline-block bg-gray-200 rounded-full px-3 py-1 text-sm text-gray-700 mr-2">#VegasJS</a>
<a href="#" class="inline-block bg-gray-200 rounded-full px-3 py-1 text-sm text-gray-700">#SlideShow</a>
</div>
<h2 class="text-2xl text-primary font-black lg:text-2xl mb-2">¿Cómo utilizar vegas slideshow?</h2>
<p class="text-mm font-normal text-base lg:text-lg mb-4">Dale un toque atractivo a ese backgound con este chulo slideshow.</p>
<a href="#" class="text-mm font-normal text-base lg:text-lg ">Ver más</a>
</div>
</div>
</div>
</section>
<?php get_footer(); ?>