-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
96 lines (80 loc) · 3.72 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
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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sheets API - Specials Menu</title>
<link href="https://fonts.googleapis.com/css?family=Damion|Quicksand" rel="stylesheet">
<link rel="stylesheet" href="./style.css">
<link rel="shortcut icon" href="favicon.png" type="image/x-icon">
<meta name="author" content="Roger Colquehuanca ">
<meta name="description" content="daily specials - google sheets" />
<meta name="keywords" content="" />
<meta name="robots" content="noodp" />
<meta name="theme-color" content="#252525" />
<link rel="canonical" href="https://rogergcc.github.io/specials_menu/" />
<meta name="msapplication-TileColor" content="#252525">
<meta name="theme-color" content="#252525">
<meta itemprop="name" content="Menu - Especialidades del dia">
<meta itemprop="description" content="roger's android & web">
<meta property="og:site_name" content="Menu-Especialidades del dia">
<meta property="og:url" content="/">
<meta property="og:title" content="Menu - Especialidades del dia">
<meta property="og:image" content="favicon.png">
<meta property="og:locale" content="en-us">
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:image" content="https://rogergcc.github.io/specials_menu/"/>
<meta name="twitter:title" content="Menu - Especialidades del dia"/>
<meta name="twitter:description" content="daily specials google sheets"/>
</head>
<body>
<a href="https://docs.google.com/spreadsheets/d/1q8tX6qEj5NbWKaGX3hWAzoSbrHqwM9IN-8bqOZmbIIo/edit?usp=sharing" target="_blank" rel="noopener noreferrer">
<div class="editlink">INSPECT<br />DATA</div>
</a>
<div id="spinner" class="show"></div>
<div id="app">
<section id="specialssection" class="specials-container" v-if="menuItems_L" >
<div id="special_component" >
<!-- <h1>Daily Specials</h1> -->
<h1>Especiales del día</h1>
<div class="specials-table-container">
<table id="table_1">
<tbody id="tbody_1">
<tr class="nameandprice">
<td >
<span >Food Name</span>
</td>
<td >
<span >$price</span>
</td>
</tr>
<tr class="description">
<td colspan="2">Description</td>
</tr>
</tbody>
</table>
<table id="table_2">
<tbody id="tbody_2">
<tr class="nameandprice">
<td >
<span >Food Name</span>
</td>
<td >
<span >$price</span>
</td>
</tr>
<tr class="description">
<td colspan="2">Description</td>
</tr>
</tbody>
</table>
</div>
</div>
</section>
</div>
<!-- partial -->
<!-- <script src='https://cdnjs.cloudflare.com/ajax/libs/vue/2.5.17/vue.min.js'></script> -->
<script src='https://cdnjs.cloudflare.com/ajax/libs/axios/0.18.0/axios.min.js'>
</script><script src="./myscript.js"></script>
</body>
</html>