blog.php
См. документацию.
1 <?php
2 
3 /**
4  * @file
5  * @brief страница
6  */
7 
8 ?>
9 <script>
10  addEventListener('DOMContentLoaded', () => {
11  $('body').addClass('sub_page');
12  });
13 </script>
14 <div class="hero_area">
15  <!-- header section strats -->
16  <header class="header_section">
17  <div class="container-fluid">
18  <nav class="navbar navbar-expand-lg custom_nav-container">
19  <a class="navbar-brand" href="/">
20  <span>
21  Delfood
22  </span>
23  </a>
24  <div class="" id="">
25  <div class="User_option">
26  <a href="">
27  <i class="fa fa-user" aria-hidden="true"></i>
28  <span>Login</span>
29  </a>
30  <form class="form-inline ">
31  <input type="search" placeholder="Search" />
32  <button class="btn nav_search-btn" type="submit">
33  <i class="fa fa-search" aria-hidden="true"></i>
34  </button>
35  </form>
36  </div>
37  <div class="custom_menu-btn">
38  <button onclick="openNav()">
39  <img src="images/menu.png" alt="">
40  </button>
41  </div>
42  <div id="myNav" class="overlay">
43  <div class="overlay-content">
44  <a href="./index">Home</a>
45  <a href="./about">About</a>
46  <a href="./blog">Blog</a>
47  <a href="./testimonial">Testimonial</a>
48  </div>
49  </div>
50  </div>
51  </nav>
52  </div>
53  </header>
54  <!-- end header section -->
55 </div>
56 
57 
58 <!-- news section -->
59 
60 <section class="news_section layout_padding">
61  <div class="container">
62  <div class="heading_container heading_center">
63  <h2>
64  Latest Blog
65  </h2>
66  </div>
67  <div class="row">
68  <div class="col-md-6">
69  <div class="box">
70  <div class="img-box">
71  <img src="images/n1.jpg" class="box-img" alt="">
72  </div>
73  <div class="detail-box">
74  <h4>
75  Tasty Food For you
76  </h4>
77  <p>
78  there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined
79  </p>
80  <a href="">
81  <i class="fa fa-arrow-right" aria-hidden="true"></i>
82  </a>
83  </div>
84  </div>
85  </div>
86  <div class="col-md-6">
87  <div class="box">
88  <div class="img-box">
89  <img src="images/n2.jpg" class="box-img" alt="">
90  </div>
91  <div class="detail-box">
92  <h4>
93  Breakfast For you
94  </h4>
95  <p>
96  there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined
97  </p>
98  <a href="">
99  <i class="fa fa-arrow-right" aria-hidden="true"></i>
100  </a>
101  </div>
102  </div>
103  </div>
104  </div>
105  </div>
106 </section>
107 
108 <!-- end news section -->
href
Definition: main.php:21