Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added backblue.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added fade.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/children-playing-grass.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 12 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
const express = require('express')
const path = require('path');
const app = express()
app.all('/', (req, res) => {
const main = express()

app.get('/', (req, res) => {
console.log("Just got a request!")
res.send('Yo!')
res.sendFile(path.join(__dirname, '/main/index.html'));
})
app.listen(process.env.PORT || 3000)

app.get('/status', (req, res) => {
console.log("Just got a request!")
res.json({"status": "main"})
})

app.listen(process.env.PORT || 3000)
152 changes: 152 additions & 0 deletions main/Blog-Template.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,152 @@
.u-section-1 .u-sheet-1 {
min-height: 561px;
}

.u-section-1 .u-repeater-1 {
margin-top: 60px;
margin-bottom: 60px;
min-height: 441px;
grid-template-columns: calc(33.3333% - 15px) calc(33.3333% - 15px) calc(33.3333% - 15px);
height: auto;
grid-gap: 22px;
}

.u-section-1 .u-repeater-item-1 {
background-image: none;
}

.u-section-1 .u-container-layout-1 {
padding: 30px 20px;
}

.u-section-1 .u-text-1 {
margin-top: 0;
margin-bottom: 0;
}

.u-section-1 .u-image-1 {
height: 222px;
margin-top: 17px;
margin-bottom: 0;
}

.u-section-1 .u-text-2 {
margin-top: 20px;
margin-bottom: 0;
}

.u-section-1 .u-btn-1 {
background-image: none;
border-style: none none solid;
margin: 17px auto 0 0;
padding: 0;
}

.u-section-1 .u-container-layout-2 {
padding: 30px 20px;
}

.u-section-1 .u-text-3 {
margin-top: 0;
margin-bottom: 0;
}

.u-section-1 .u-image-2 {
height: 222px;
margin-top: 17px;
margin-bottom: 0;
}

.u-section-1 .u-text-4 {
margin-top: 20px;
margin-bottom: 0;
}

.u-section-1 .u-btn-2 {
background-image: none;
border-style: none none solid;
margin: 17px auto 0 0;
padding: 0;
}

.u-section-1 .u-container-layout-3 {
padding: 30px 20px;
}

.u-section-1 .u-text-5 {
margin-top: 0;
margin-bottom: 0;
}

.u-section-1 .u-image-3 {
height: 222px;
margin-top: 17px;
margin-bottom: 0;
}

.u-section-1 .u-text-6 {
margin-top: 20px;
margin-bottom: 0;
}

.u-section-1 .u-btn-3 {
background-image: none;
border-style: none none solid;
margin: 17px auto 0 0;
padding: 0;
}

@media (max-width: 1199px) {
.u-section-1 .u-sheet-1 {
min-height: 484px;
}

.u-section-1 .u-repeater-1 {
min-height: 364px;
grid-template-columns: repeat(3, calc(33.333333333333336% - 15px));
}
}

@media (max-width: 991px) {
.u-section-1 .u-sheet-1 {
min-height: 956px;
}

.u-section-1 .u-repeater-1 {
min-height: 836px;
grid-template-columns: repeat(2, calc(50% - 11.25px));
}
}

@media (max-width: 767px) {
.u-section-1 .u-repeater-1 {
grid-template-columns: 100%;
}

.u-section-1 .u-container-layout-1 {
padding-left: 10px;
padding-right: 10px;
}

.u-section-1 .u-image-1 {
height: 278px;
}

.u-section-1 .u-container-layout-2 {
padding-left: 10px;
padding-right: 10px;
}

.u-section-1 .u-image-2 {
height: 278px;
}

.u-section-1 .u-container-layout-3 {
padding-left: 10px;
padding-right: 10px;
}

.u-section-1 .u-image-3 {
height: 278px;
}
}
Loading