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
<section class="grid-test"> | |
<div class="row"> | |
<div class="col-1-of-2">Col 1 of 2</div> | |
<div class="col-1-of-2">Col 1 of 2</div> | |
</div> | |
<div class="row"> | |
<div class="col-1-of-3">Col 1 of 3</div> | |
<div class="col-1-of-3">Col 1 of 3</div> | |
<div class="col-1-of-3">Col 1 of 3</div> | |
</div> |
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
<div class="book"> | |
<!-- Form start --> | |
<div class="book__form"> | |
<form action="#" class="form"> | |
<!-- Centered heading secondary start --> | |
<div class="u-margin-bottom-medium"> | |
<h2 class="heading-secondary">Start booking now</h2> | |
</div> | |
<!-- Centered heading secondary end --> |
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
const express = require("express"); | |
const bodyParser = require("body-parser"); | |
const ejs = require("ejs"); | |
const mongoose = require("mongoose"); | |
const app = express(); | |
app.set("view engine", "ejs"); | |
app.use(bodyParser.urlencoded({ extended: true })); |
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
tkhara@pop-os:~/envs/javascript_envs/task-manager$ npm install | |
> [email protected] install /home/tkhara/envs/javascript_envs/task-manager/node_modules/sharp | |
> (node install/libvips && node install/dll-copy && prebuild-install) || (node-gyp rebuild && node install/dll-copy) | |
info sharp Using cached /home/tkhara/.npm/_libvips/libvips-8.7.0-linux-x64.tar.gz | |
prebuild-install WARN install No prebuilt binaries found (target=12.20.0 runtime=node arch=x64 libc= platform=linux) | |
make: Entering directory '/home/tkhara/envs/javascript_envs/task-manager/node_modules/sharp/build' | |
TOUCH Release/obj.target/libvips-cpp.stamp | |
CXX(target) Release/obj.target/sharp/src/common.o |