This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| π Morning 7 commits βββββββββββββββββββββ 6.8% | |
| π Daytime 54 commits βββββββββββββββββββββ 52.4% | |
| π Evening 42 commits βββββββββββββββββββββ 40.8% | |
| π Night 0 commits βββββββββββββββββββββ 0.0% |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| document.addEventListener("DOMContentLoaded", () => { | |
| const API_KEY = "a5850b5d70524186b8c0"; | |
| const SERVICE_ID = "COOKRCP01"; | |
| const DATA_TYPE = "json"; | |
| let pagesize = 9; | |
| let totalRecipes = 1124; | |
| let totalPages = Math.ceil(totalRecipes / pagesize); | |
| let currentPage = 1; | |
| let groupSize = 9; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <title>Document</title> | |
| <style> | |
| h1 { | |
| text-align: center; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| * { | |
| margin: 0; | |
| padding: 0; | |
| box-sizing: border-box; | |
| } | |
| li { | |
| list-style: none; | |
| } | |
| .slide { |