Skip to content

Commit a21d85a

Browse files
committed
Add new foodish images
1 parent 11fc986 commit a21d85a

File tree

152 files changed

+14
-4
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

152 files changed

+14
-4
lines changed

README.md

+2
357 KB
400 KB
276 KB
472 KB
185 KB
252 KB
451 KB
182 KB
551 KB
231 KB
274 KB
247 KB
386 KB
289 KB
329 KB
228 KB
208 KB
219 KB
276 KB
216 KB
260 KB
161 KB
225 KB
352 KB
177 KB
244 KB
256 KB
161 KB
196 KB
392 KB
246 KB
358 KB
302 KB
246 KB
256 KB
346 KB

public/assets/images/pasta/pasta1.jpg

303 KB
213 KB
163 KB
242 KB
7.51 MB
132 KB
431 KB
182 KB
117 KB
161 KB
8.48 MB

public/assets/images/pasta/pasta2.jpg

138 KB
97.8 KB
560 KB
299 KB
316 KB
251 KB
195 KB
165 KB
221 KB
300 KB
139 KB

public/assets/images/pasta/pasta3.jpg

145 KB
158 KB
204 KB
301 KB
178 KB
199 KB

public/assets/images/pasta/pasta4.jpg

233 KB

public/assets/images/pasta/pasta5.jpg

192 KB

public/assets/images/pasta/pasta6.jpg

254 KB

public/assets/images/pasta/pasta7.jpg

255 KB

public/assets/images/pasta/pasta8.jpg

101 KB

public/assets/images/pasta/pasta9.jpg

147 KB

public/assets/images/rice/rice1.jpg

153 KB

public/assets/images/rice/rice10.jpg

156 KB

public/assets/images/rice/rice11.jpg

95.3 KB

public/assets/images/rice/rice12.jpg

282 KB

public/assets/images/rice/rice13.jpg

456 KB

public/assets/images/rice/rice14.jpg

4.88 MB

public/assets/images/rice/rice15.jpg

110 KB

public/assets/images/rice/rice16.jpg

47 KB

public/assets/images/rice/rice17.jpg

192 KB

public/assets/images/rice/rice18.jpg

132 KB

public/assets/images/rice/rice19.jpg

2.48 MB

public/assets/images/rice/rice2.jpg

415 KB

public/assets/images/rice/rice20.jpg

109 KB

public/assets/images/rice/rice21.jpg

265 KB

public/assets/images/rice/rice22.jpg

289 KB

public/assets/images/rice/rice23.jpg

301 KB

public/assets/images/rice/rice24.jpg

196 KB

public/assets/images/rice/rice25.jpg

544 KB

public/assets/images/rice/rice26.jpg

256 KB

public/assets/images/rice/rice27.jpg

234 KB

public/assets/images/rice/rice28.jpg

474 KB

public/assets/images/rice/rice29.jpg

235 KB

public/assets/images/rice/rice3.jpg

91.5 KB

public/assets/images/rice/rice30.jpg

247 KB

public/assets/images/rice/rice31.jpg

181 KB

public/assets/images/rice/rice32.jpg

362 KB

public/assets/images/rice/rice33.jpg

223 KB

public/assets/images/rice/rice34.jpg

312 KB

public/assets/images/rice/rice35.jpg

211 KB

public/assets/images/rice/rice4.jpg

172 KB

public/assets/images/rice/rice5.jpg

218 KB

public/assets/images/rice/rice6.jpg

4.44 MB

public/assets/images/rice/rice7.jpg

268 KB

public/assets/images/rice/rice8.jpg

145 KB

public/assets/images/rice/rice9.jpg

421 KB
179 KB
247 KB
135 KB
119 KB
2.38 MB
128 KB
110 KB
65.1 KB
97.7 KB
111 KB
665 KB
153 KB
878 KB
282 KB
159 KB
232 KB
200 KB
390 KB
73.2 KB
625 KB
267 KB
1.4 MB

views/foodish.ejs

+6-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,11 @@
2525
<% if (food.foodDB) { %>
2626
<ul>
2727
<% food.foodDB.forEach((dish) => { %>
28-
<li><%= dish.title %> : <%= dish.count %></li>
28+
<% if (dish.title === 'Total Foodishes') { %>
29+
<li><%= dish.title %> : <%= dish.count %></li>
30+
<% } else { %>
31+
<li><a href="https://foodish-api.herokuapp.com/images/<%= dish.title %>/"><%= dish.title %></a> : <%= dish.count %></li>
32+
<% } %>
2933
<% }) %>
3034
</ul>
3135
<% } %>
@@ -46,7 +50,7 @@
4650
</div>
4751
</div>
4852
<footer class="footer">
49-
<p class="lead">Designed and Coded by : <a href="https://github.com/surhud004">surhud004</a> &copy; 2020</p>
53+
<p class="lead">Designed and Coded by : <a href="https://github.com/surhud004">surhud004</a> &copy; <%= new Date().getFullYear(); %></p>
5054
<!-- Build date : 10th October 2020 -->
5155
</footer>
5256
</div>

views/notfound.ejs

+6-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,11 @@
2121
<% if (food.foodDB) { %>
2222
<ul>
2323
<% food.foodDB.forEach((dish) => { %>
24-
<li><%= dish.title %> : <%= dish.count %></li>
24+
<% if (dish.title === 'Total Foodishes') { %>
25+
<li><%= dish.title %> : <%= dish.count %></li>
26+
<% } else { %>
27+
<li><a href="https://foodish-api.herokuapp.com/images/<%= dish.title %>/"><%= dish.title %></a> : <%= dish.count %></li>
28+
<% } %>
2529
<% }) %>
2630
</ul>
2731
<% } %>
@@ -30,7 +34,7 @@
3034
<br>
3135
<span>Read the Documentation at : <a href="https://github.com/surhud004/Foodish#readme">Foodish</a></span>
3236
<footer class="footer">
33-
<p class="lead">Designed and Coded by : <a href="https://github.com/surhud004">surhud004</a> &copy; 2020</p>
37+
<p class="lead">Designed and Coded by : <a href="https://github.com/surhud004">surhud004</a> &copy; <%= new Date().getFullYear(); %></p>
3438
<!-- Build date : 10th October 2020 -->
3539
</footer>
3640
</div>

0 commit comments

Comments
 (0)