-
Notifications
You must be signed in to change notification settings - Fork 0
/
article.html
120 lines (101 loc) · 5.27 KB
/
article.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-QJCYVVK2Q0"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-QJCYVVK2Q0');
</script>
<title>Authentic Thai and Fusion Recipes - Free Cooking Guides and Delicious Ideas</title>
<meta property="og:title" content="Authentic Thai and Fusion Recipes - Free Cooking Guides and Delicious Ideas" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://kinthai.in.th/article.html" />
<meta property="og:image" content="https://kinthai.in.th/img/1708838144en-satay-peanut-sauce.jpg" />
<meta property="og:description" content="Discover a diverse collection of authentic Thai and global recipes. From classic dishes like Chicken Satay to innovative fusion cuisine, our free recipes offer easy-to-follow guides for every home chef. Start exploring delicious dishes from around the world now!" />
<meta property="og:site_name" content="Kinthai" />
<meta property="og:locale" content="en_US" />
<meta name="description" content="Discover a diverse collection of authentic Thai and global recipes. From classic dishes like Chicken Satay to innovative fusion cuisine, our free recipes offer easy-to-follow guides for every home chef. Start exploring delicious dishes from around the world now!">
<meta name="robots" content="index, follow">
<link rel="canonical" href="https://kinthai.in.th/article.html">
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link href="./css/aos.css" rel="stylesheet">
<link rel="stylesheet" href="./css/style.css" />
<script src="./js/jquery.min.js"></script>
<link rel="icon" href="./img/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" sizes="180x180" href="./img/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./img/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./img/favicon-16x16.png">
<link rel="manifest" href="./img/site.webmanifest">
</head>
<div id="header"></div>
<script>
fetch('header.html')
.then(response => response.text())
.then(data => {
document.getElementById('header').innerHTML = data;
});
</script>
<body>
<div class="maincontent">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-8">
<h1 class="display-4 text-center">Article's Hub</h1>
<div class="row mt-5 mb-5">
<!-- Article 1 -->
<div class="col-md-6">
<div class="article-card" data-aos="fade-up" data-aos-duration="1000">
<a href="thai-chicken-satay-skewers-with-peanut-sauce.html" target="_blank">
<img src="./img/1708838144en-satay-peanut-sauce.jpg" alt="Satay Kae - Chicken Marinated and Grilled with Peanut Sauce" class="img-fluid">
<h3 class="text-center mt-2">Thai Chicken Satay Skewers with Peanut Sauce</h3>
</a>
</div>
</div>
<!-- Article 2 -->
<!--
<div class="col-md-6">
<div class="article-card" data-aos="fade-up" data-aos-duration="1000">
<a href="link-to-your-second-article.html" target="_blank">
<img src="./img/second-article-image.jpg" alt="Second Article Title" class="img-fluid">
<h3 class="text-center mt-2">New Article Title</h3>
</a>
</div>
</div> -->
<!-- Add more articles as needed -->
<!-- Example of a third article -->
<!--
<div class="col-md-6">
<div class="article-card" data-aos="fade-up" data-aos-duration="1000">
<a href="link-to-your-third-article.html" target="_blank">
<img src="./img/third-article-image.jpg" alt="Third Article Title" class="img-fluid">
<h3 class="text-center mt-2">Third Article Title</h3>
</a>
</div>
</div>
-->
</div>
</div>
</div>
</div>
</div>
<div id="footer"></div>
<script>
fetch('footer.html')
.then(response => response.text())
.then(data => {
document.getElementById('footer').innerHTML = data;
});
</script>
<script src="js/bootstrap.min.js"></script>
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script>
AOS.init();
</script>
<script src="js/custom-general.js"></script>
</body>
</html>