From adc3dec70740fdc4e955ee7b3409ec98ff2a67b3 Mon Sep 17 00:00:00 2001 From: alreadynyeong Date: Sat, 18 Dec 2021 00:40:43 +0900 Subject: [PATCH 01/14] =?UTF-8?q?#24=20=ED=99=94=EB=A9=B4=EC=97=90=20?= =?UTF-8?q?=EC=B9=B5=ED=85=8C=EC=9D=BC=20=EC=9D=B4=EB=A6=84,=20=EB=B9=84?= =?UTF-8?q?=EC=9C=A8,=20=EC=84=A4=EB=AA=85=20=EB=9D=84=EC=9A=B0=EA=B8=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/css/recipe.css | 26 +++++++++ routes/search_listRouter.js | 32 +++++++++++ template/recipe.js | 104 ++++++++++++++++++++++++++++++++++++ 3 files changed, 162 insertions(+) create mode 100644 public/css/recipe.css create mode 100644 template/recipe.js diff --git a/public/css/recipe.css b/public/css/recipe.css new file mode 100644 index 0000000..842bc78 --- /dev/null +++ b/public/css/recipe.css @@ -0,0 +1,26 @@ +*{margin:0;padding:0;} +html{ + overflow: hidden; +} +header{ + margin-top: 120px; + margin-bottom: 30px; +} + +body { + padding: 20px; + margin: 0; + background-color: #242424; + text-align: center; + font-size: 15px; +} + +a { + text-decoration: none; + color: white; + font-size: 35px; +} + +.container{ + color: white; +} \ No newline at end of file diff --git a/routes/search_listRouter.js b/routes/search_listRouter.js index 72a1879..5dade2b 100644 --- a/routes/search_listRouter.js +++ b/routes/search_listRouter.js @@ -1,6 +1,7 @@ const express = require('express'); const router = express.Router(); const search_list = require('../template/search_list.js'); +const recipe = require('../template/recipe.js'); var db = require('../config/db'); // db.js 폴더 경로 var url = require('url'); @@ -81,4 +82,35 @@ router.get('/', async function(request, response){ }); +router.get('/recipe', function(request, response){ + + + db.query(`select * from recipe`, function(err, result){ + + var _url = request.url; + var queryData = url.parse(_url, true).query; + + if (err) throw err; + db.query(`select * from recipe WHERE id=?`, [queryData.id], function(err2, result2){ + + if (err2) throw err2; + + var name = result2[0].cocktail; + var rate = result2[0].rate; + var content = result2[0].content; + + + + var html = recipe.HTML(name, rate, content); + + response.send(html); + // response.send(result2); + }); + + + }); + + +}); + module.exports = router; \ No newline at end of file diff --git a/template/recipe.js b/template/recipe.js new file mode 100644 index 0000000..4dd1c27 --- /dev/null +++ b/template/recipe.js @@ -0,0 +1,104 @@ +module.exports = { + HTML: function(name, rate, content) { + + return ` + + + + + + + + Hi Alcohol recipe + + + + + + + + +
+ +
+
${name}
+
${content}
+
+ +
+ + + + ` + } +}; + \ No newline at end of file From 5a3b9d3640809ad610714bdfeb6877f51e32006b Mon Sep 17 00:00:00 2001 From: alreadynyeong Date: Sat, 18 Dec 2021 11:21:16 +0900 Subject: [PATCH 02/14] =?UTF-8?q?#24=20html,=20css=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/css/recipe.css | 53 +++++++++++++++++++++++++---- public/css/search_list.css | 68 -------------------------------------- template/recipe.js | 29 +++++++++++----- template/search_list.js | 28 ---------------- 4 files changed, 67 insertions(+), 111 deletions(-) diff --git a/public/css/recipe.css b/public/css/recipe.css index 842bc78..fa1d079 100644 --- a/public/css/recipe.css +++ b/public/css/recipe.css @@ -1,7 +1,23 @@ -*{margin:0;padding:0;} -html{ - overflow: hidden; +@charset "utf-8"; +/*폰트*/ +@import url('https://fonts.googleapis.com/css2?family=Pattaya&display=swap'); + +p { + font-family: 'Pattaya', sans-serif; + color: white; } + +@font-face { + font-family: 'GmarketSansMedium'; + src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff'); + font-weight: normal; + font-style: normal; +} + +*:not(i) { + font-family: GmarketSansMedium; +} + header{ margin-top: 120px; margin-bottom: 30px; @@ -21,6 +37,31 @@ a { font-size: 35px; } -.container{ - color: white; -} \ No newline at end of file +#recipe .title { + margin-top: 10px; + margin-bottom: 30px; +} + +#recipe .title h2 { + display: inline; +} + +#recipe .input { + display : flex; + justify-content: center; + margin-bottom: 40px; +} + +#recipe .input div { + height: 35px; + line-height: 35px; + min-width: 70px; + margin-top: 15px; + margin-right: 12px; + border: 1px solid #0BF3BC; + border-radius: 15px; + font-size: 15px; + color: #0BF3BC; + display: inline-block; +} + diff --git a/public/css/search_list.css b/public/css/search_list.css index ef2421d..858a13b 100644 --- a/public/css/search_list.css +++ b/public/css/search_list.css @@ -124,71 +124,3 @@ main { display: inline-block; } -/* 모달창 */ -#modal-overlay { - top: 0; left: 0; right: 0; bottom: 0; - position: absolute; - display: none; - align-items: center; - justify-content: center; - background: rgba(255, 255, 255, 0.25); -} -#modal { - display: none; - position: fixed; - top: 50%; left: 50%; - transform: translate(-50%, -50%); - z-index: 10; -} - -#modal .modal-window { - background: #242424; - border-radius: 10px; - width: 400px; - height: 500px; - position: relative; - padding: 15px; -} - -#modal .title { - margin-top: 10px; - margin-bottom: 30px; -} - -#modal .title h2 { - display: inline; -} - -#modal .modal_close { - display: inline; - float: right; - padding-right: 10px; - cursor: pointer; - color: white; -} - -#modal .input { - display : flex; - justify-content: center; - margin-bottom: 40px; -} - -#modal .input div { - height: 35px; - line-height: 35px; - min-width: 70px; - margin-top: 15px; - margin-right: 12px; - border: 1px solid #0BF3BC; - border-radius: 15px; - font-size: 15px; - color: #0BF3BC; - display: inline-block; -} - -li { - color: white; - text-align: left; - padding-bottom: 20px; - font-size: 16px; -} \ No newline at end of file diff --git a/template/recipe.js b/template/recipe.js index 4dd1c27..302139a 100644 --- a/template/recipe.js +++ b/template/recipe.js @@ -83,17 +83,28 @@ module.exports = { -
-

+ + +
+
+

${name}

+
- -
-
-
${name}
-
${content}
+ +
+
+
재료
+
맥콜
+
사이다
+
+ +

${rate}

+

+

${content}

+
+
- +
diff --git a/template/search_list.js b/template/search_list.js index ba7ab4b..00a68be 100644 --- a/template/search_list.js +++ b/template/search_list.js @@ -67,34 +67,6 @@ module.exports = { ${list} - - - ${tail} ` From 88ba61f4572a6a339541bdab662040b7190696df Mon Sep 17 00:00:00 2001 From: alreadynyeong Date: Sat, 18 Dec 2021 12:04:03 +0900 Subject: [PATCH 03/14] =?UTF-8?q?#24=20=EA=B2=80=EC=83=89=EB=A6=AC?= =?UTF-8?q?=EC=8A=A4=ED=8A=B8=EC=99=80=20=EB=A6=AC=EC=8A=A4=ED=8A=B8=20?= =?UTF-8?q?=EC=83=81=EC=84=B8=ED=8E=98=EC=9D=B4=EC=A7=80=20=EC=97=B0?= =?UTF-8?q?=EA=B2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- routes/search_listRouter.js | 10 +++++----- template/search_list.js | 5 +++-- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/routes/search_listRouter.js b/routes/search_listRouter.js index 5dade2b..a2af5ee 100644 --- a/routes/search_listRouter.js +++ b/routes/search_listRouter.js @@ -13,7 +13,7 @@ class Item router.get('/', async function(request, response){ - sql = `select recipe.cocktail, material.material from recipe, material where + sql = `select recipe.id, recipe.cocktail, material.material from recipe, material where material.id =any(select inclusion.materialId from inclusion where inclusion.recipeId= recipe.id )` db.query(sql, function(err0, result0){ @@ -21,7 +21,7 @@ router.get('/', async function(request, response){ var queryData = url.parse(_url, true).query; // console.log(queryData.query) - sql2 = `select recipe.cocktail, material.material from recipe, material where recipe.id=any(select recipeId from inclusion + sql2 = `select recipe.id, recipe.cocktail, material.material from recipe, material where recipe.id=any(select recipeId from inclusion where materialId = any(select id from material where material= '${queryData.keyword}' or material = any(select alcolType from product where name='${queryData.keyword}'))) and material.id =any(select inclusion.materialId from inclusion where inclusion.recipeId= recipe.id )` @@ -37,6 +37,7 @@ router.get('/', async function(request, response){ if(result.length===0){ for (var i = 0;i < result0.length - 1;i++) { var item = new Item(); + item.id = result0[i].id; item.cocktail = result0[i].cocktail; item.materials[0] = result0[i].material; recipe_list[index] = item; @@ -56,6 +57,7 @@ router.get('/', async function(request, response){ } else{ for (var i = 0;i < result.length - 1;i++) { var item = new Item(); + item.id = result[i].id; item.cocktail = result[i].cocktail; item.materials[0] = result[i].material; recipe_list[index] = item; @@ -74,7 +76,7 @@ router.get('/', async function(request, response){ var html = search_list.HTML( list) } - // console.log(recipe_list) + console.log(recipe_list) response.send(html); }); @@ -99,8 +101,6 @@ router.get('/recipe', function(request, response){ var rate = result2[0].rate; var content = result2[0].content; - - var html = recipe.HTML(name, rate, content); response.send(html); diff --git a/template/search_list.js b/template/search_list.js index 00a68be..f3a3c39 100644 --- a/template/search_list.js +++ b/template/search_list.js @@ -67,6 +67,7 @@ module.exports = { ${list} + ${tail} ` @@ -119,8 +120,8 @@ module.exports = { list = list + `
- ${result[i].cocktail} -
>
+ ${result[i].cocktail} +

`+ `
From bf17ecb86d3541fd2298aafea256095e9fd8a79b Mon Sep 17 00:00:00 2001 From: alreadynyeong Date: Sat, 18 Dec 2021 15:02:03 +0900 Subject: [PATCH 04/14] =?UTF-8?q?#24=20=EB=A0=88=EC=8B=9C=ED=94=BC=20?= =?UTF-8?q?=EC=83=81=EC=84=B8=EB=B3=B4=EA=B8=B0=20=ED=8E=98=EC=9D=B4?= =?UTF-8?q?=EC=A7=80=20=EC=88=98=EC=A0=95,=20=EB=A0=88=EC=8B=9C=ED=94=BC?= =?UTF-8?q?=20=ED=85=8C=EC=9D=B4=EB=B8=94=20=EC=98=A4=ED=83=80=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config/recipe.sql | 2 +- public/css/recipe.css | 51 +++++++++++++------------------------ routes/search_listRouter.js | 2 +- template/recipe.js | 30 ++++++++-------------- 4 files changed, 30 insertions(+), 55 deletions(-) diff --git a/config/recipe.sql b/config/recipe.sql index c63f36e..fb4c08a 100644 --- a/config/recipe.sql +++ b/config/recipe.sql @@ -65,7 +65,7 @@ VALUES(26, '모히또', '적당량', '라임과 설탕, 민트잎을 넣어 살 INSERT INTO `recipe` VALUES(27, '러스티 네일', '스카치위스키 1: 드람부이 1', '온더록 스타일로 한 후, 스카치 위스키와 드람부이를 넣어 가볍게 젓는다.'); INSERT INTO `recipe` -VALUES(28, '위스키 소다', '적당량', '텀블러에 위스키를 붓고 널음을 넣은 후 소다수를 적당량 채운다.'); +VALUES(28, '위스키 소다', '적당량', '텀블러에 위스키를 붓고 얼음을 넣은 후 소다수를 적당량 채운다.'); INSERT INTO `recipe` VALUES(29, '위스키 온더락', '적당량', '얼음 위에 위스키를 붓는다.'); INSERT INTO `recipe` diff --git a/public/css/recipe.css b/public/css/recipe.css index fa1d079..63d0815 100644 --- a/public/css/recipe.css +++ b/public/css/recipe.css @@ -7,6 +7,10 @@ p { color: white; } +h2 { + color: white; +} + @font-face { font-family: 'GmarketSansMedium'; src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff'); @@ -18,11 +22,6 @@ p { font-family: GmarketSansMedium; } -header{ - margin-top: 120px; - margin-bottom: 30px; -} - body { padding: 20px; margin: 0; @@ -30,38 +29,24 @@ body { text-align: center; font-size: 15px; } +.hi_alcohol{ + margin-top: -40px; + margin-bottom: 100px; +} -a { +.hi_alcohol a{ text-decoration: none; - color: white; font-size: 35px; } -#recipe .title { - margin-top: 10px; - margin-bottom: 30px; -} - -#recipe .title h2 { - display: inline; -} - -#recipe .input { - display : flex; - justify-content: center; - margin-bottom: 40px; -} - -#recipe .input div { - height: 35px; - line-height: 35px; - min-width: 70px; - margin-top: 15px; - margin-right: 12px; - border: 1px solid #0BF3BC; +.recipe div{ + height: 70px; + line-height: 70px; + max-width: 600px; + margin: auto; + border: 2px solid white; border-radius: 15px; - font-size: 15px; - color: #0BF3BC; + font-size: 30px; + color: white; display: inline-block; -} - +} \ No newline at end of file diff --git a/routes/search_listRouter.js b/routes/search_listRouter.js index a2af5ee..1f3a89d 100644 --- a/routes/search_listRouter.js +++ b/routes/search_listRouter.js @@ -76,7 +76,7 @@ router.get('/', async function(request, response){ var html = search_list.HTML( list) } - console.log(recipe_list) + // console.log(recipe_list) response.send(html); }); diff --git a/template/recipe.js b/template/recipe.js index 302139a..a1a63b7 100644 --- a/template/recipe.js +++ b/template/recipe.js @@ -80,28 +80,18 @@ module.exports = {
- - +
-
-

${name}

- -
- -
-
-
재료
-
맥콜
-
사이다
-
- -

${rate}

-

-

${content}

-
+
 ${name} 
+


+

- 비율 -

+

${rate}

+

+

${content}

+
From d8616ca24b145674910b6d11e2bb9ad6ccaf46fb Mon Sep 17 00:00:00 2001 From: alreadynyeong Date: Sat, 18 Dec 2021 15:12:14 +0900 Subject: [PATCH 05/14] =?UTF-8?q?#10=20search=5Flist=20=ED=8E=98=EC=9D=B4?= =?UTF-8?q?=EC=A7=80=20=ED=97=A4=EB=8D=94=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/css/search_list.css | 10 ++++++++-- template/search_list.js | 6 +++--- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/public/css/search_list.css b/public/css/search_list.css index 858a13b..d8bc742 100644 --- a/public/css/search_list.css +++ b/public/css/search_list.css @@ -34,8 +34,14 @@ header { position: fixed; } -header h2 { - margin-top: -20px; +.hi_alcohol{ + margin-top: -30px; + margin-bottom: 100px; +} + +.hi_alcohol a{ + text-decoration: none; + font-size: 35px; } main { diff --git a/template/search_list.js b/template/search_list.js index f3a3c39..698b46c 100644 --- a/template/search_list.js +++ b/template/search_list.js @@ -49,9 +49,9 @@ module.exports = {
-

- Hi Alcohol -

+
From ba93dfe8329bd8a7019e7d550eda939eb1770287 Mon Sep 17 00:00:00 2001 From: Ahn YoungSeon Date: Sat, 18 Dec 2021 15:33:43 +0900 Subject: [PATCH 06/14] =?UTF-8?q?#29=20database=20config=20data=20?= =?UTF-8?q?=EB=B6=84=EB=A6=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config/db.js | 9 +++++---- config/env.js | 7 +++++++ main.js | 23 +++++++++++------------ 3 files changed, 23 insertions(+), 16 deletions(-) create mode 100644 config/env.js diff --git a/config/db.js b/config/db.js index 2b70603..d8a8003 100644 --- a/config/db.js +++ b/config/db.js @@ -1,10 +1,11 @@ var mysql = require('mysql'); +const env = require('./env'); const db = mysql.createConnection({ - host: 'localhost', - user: 'root', - password: 'qwerty123', - database: 'hialcohol', + host: env.host, + user: env.user, + password: env.password, + database: env.database, dateStrings: 'date' }); diff --git a/config/env.js b/config/env.js new file mode 100644 index 0000000..c966c89 --- /dev/null +++ b/config/env.js @@ -0,0 +1,7 @@ +module.exports = { + host: 'localhost', + user: 'root', + password: 'qwerty123', + database: 'hialcohol', + port: 3000 +}; \ No newline at end of file diff --git a/main.js b/main.js index 0f13549..fda3b24 100644 --- a/main.js +++ b/main.js @@ -1,24 +1,23 @@ const express = require('express'); const app = express(); -const port = 3000; const bodyParser = require('body-parser'); -const indexRouter = require('./routes/indexRouter.js') const session = require('express-session'); const MySQLStore = require('express-mysql-session')(session); +const passport = require('passport'); +const flash = require('connect-flash'); +const cookieParser = require('cookie-parser'); +const indexRouter = require('./routes/indexRouter.js') const oauthRouter = require('./routes/loginRouter.js'); const likeRouter = require('./routes/likeRouter'); const boardRouter = require('./routes/boardRouter.js') const search_listRouter = require('./routes/search_listRouter.js'); const mapRouter = require('./routes/mapRouter'); -const passport = require('passport'); -const flash = require('connect-flash'); - const passportConfig = require('./passport'); -const cookieParser = require('cookie-parser'); +const boardProcessRouter = require('./routes/boardProcessRouter.js'); +const env = require('./config/env.js'); -const boardProcessRouter = require('./routes/boardProcessRouter.js') -const db = require('./config/db.js') +const port = env.port; app.use(cookieParser('ras')); passportConfig(); @@ -31,11 +30,11 @@ app.use(session({ secure: false, saveUninitialized: true, store: new MySQLStore({ - host: "localhost", + host: env.host, port: 3306, - user: "root", - password: "qwerty123", - database: "hialcohol" + user: env.user, + password: env.password, + database: env.database }) })); app.use(passport.initialize()); From 92fa95e3160624f04c34212ac20999868d9a8144 Mon Sep 17 00:00:00 2001 From: Ahn YoungSeon Date: Sat, 18 Dec 2021 15:59:46 +0900 Subject: [PATCH 07/14] =?UTF-8?q?#30=20search=20error=20=EC=88=98=EC=A0=95?= =?UTF-8?q?=20(=EC=BF=BC=EB=A6=AC=20=EC=A0=95=EB=A0=AC=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- routes/search_listRouter.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/routes/search_listRouter.js b/routes/search_listRouter.js index a2af5ee..b27f37a 100644 --- a/routes/search_listRouter.js +++ b/routes/search_listRouter.js @@ -14,7 +14,8 @@ class Item router.get('/', async function(request, response){ sql = `select recipe.id, recipe.cocktail, material.material from recipe, material where - material.id =any(select inclusion.materialId from inclusion where inclusion.recipeId= recipe.id )` + material.id =any(select inclusion.materialId from inclusion where inclusion.recipeId= recipe.id ) + order by recipe.cocktail asc` db.query(sql, function(err0, result0){ var _url = request.url; @@ -24,7 +25,7 @@ router.get('/', async function(request, response){ sql2 = `select recipe.id, recipe.cocktail, material.material from recipe, material where recipe.id=any(select recipeId from inclusion where materialId = any(select id from material where material= '${queryData.keyword}' or material = any(select alcolType from product where name='${queryData.keyword}'))) - and material.id =any(select inclusion.materialId from inclusion where inclusion.recipeId= recipe.id )` + and material.id =any(select inclusion.materialId from inclusion where inclusion.recipeId= recipe.id ) order by recipe.cocktail asc` if(err0) throw err0; @@ -42,7 +43,7 @@ router.get('/', async function(request, response){ item.materials[0] = result0[i].material; recipe_list[index] = item; for (var j = i + 1; j < result0.length; j++){ - if (result0[i].cocktail === result0[j].cocktail) { + if (result0[i].id === result0[j].id) { recipe_list[index].materials[recipe_list[index].materials.length] = result0[j].material; } else { index++; @@ -62,7 +63,7 @@ router.get('/', async function(request, response){ item.materials[0] = result[i].material; recipe_list[index] = item; for (var j = i + 1; j < result.length; j++){ - if (result[i].cocktail === result[j].cocktail) { + if (result[i].id === result[j].id) { recipe_list[index].materials[recipe_list[index].materials.length] = result[j].material; } else { index++; From 00826be25a95245a545fcfe1b45c5f25670bd76c Mon Sep 17 00:00:00 2001 From: Ahn YoungSeon Date: Sat, 18 Dec 2021 16:05:14 +0900 Subject: [PATCH 08/14] =?UTF-8?q?menu=20icon=20=EC=A3=BC=EC=84=9D=20?= =?UTF-8?q?=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- template/home.js | 10 +++++----- template/map.js | 1 - template/recipe.js | 1 - template/search_list.js | 1 - 4 files changed, 5 insertions(+), 8 deletions(-) diff --git a/template/home.js b/template/home.js index cf209d1..0d72e4c 100644 --- a/template/home.js +++ b/template/home.js @@ -62,11 +62,11 @@ module.exports = {
diff --git a/template/recipe.js b/template/recipe.js index a1a63b7..07d679b 100644 --- a/template/recipe.js +++ b/template/recipe.js @@ -45,7 +45,6 @@ module.exports = {
- diff --git a/template/search_list.js b/template/search_list.js index 698b46c..74ad28b 100644 --- a/template/search_list.js +++ b/template/search_list.js @@ -13,7 +13,6 @@ module.exports = {
- From 86c9f327d32d5f8a6262093393a5f6e9796cae49 Mon Sep 17 00:00:00 2001 From: Ahn YoungSeon Date: Sat, 18 Dec 2021 16:15:58 +0900 Subject: [PATCH 09/14] =?UTF-8?q?#31=20menu=20icon=20=EB=A7=81=ED=81=AC=20?= =?UTF-8?q?=EC=97=B0=EA=B2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- template/board_view.js | 2 +- template/home.js | 6 +++--- template/likes_list.js | 4 ++-- template/map.js | 21 +++++++++------------ template/recipe.js | 20 +++----------------- template/search_list.js | 20 +++----------------- 6 files changed, 21 insertions(+), 52 deletions(-) diff --git a/template/board_view.js b/template/board_view.js index f235e26..8bce0b7 100644 --- a/template/board_view.js +++ b/template/board_view.js @@ -53,7 +53,7 @@ module.exports = { diff --git a/template/home.js b/template/home.js index 0d72e4c..05819b8 100644 --- a/template/home.js +++ b/template/home.js @@ -84,7 +84,7 @@ module.exports = { @@ -111,7 +111,7 @@ module.exports = {

이달의 술 추천

소다주


- cocktailImg + cocktailImg ` @@ -126,7 +126,7 @@ module.exports = { - + `; }, TAIL: function() { diff --git a/template/likes_list.js b/template/likes_list.js index 6453d8a..945badc 100644 --- a/template/likes_list.js +++ b/template/likes_list.js @@ -62,8 +62,8 @@ module.exports = { Document - - + +