This file contains 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 next = require('next'); | |
const sm = require('sitemap'); | |
const axios = require('axios'); | |
const port = parseInt(process.env.PORT, 10) || 3000; | |
const dev = process.env.NODE_ENV !== 'production'; | |
const app = next({ dev }); | |
const handle = app.getRequestHandler(); |
This file contains 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
{!-- | |
We pass a number of variables to alter the output of our Ad Unit Section. The template code is currently written for use in Expression Engine but can easily be converted for use with RockRMS Lava Templates. | |
background_color | |
background_image | |
alignment | |
link_url | |
link_text | |
target |
This file contains 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
//Custom Styles for cp.css | |
.blocksft-header h3 { | |
font-size: 1.75em !important; | |
} | |
.blocksft-header:hover { | |
cursor: pointer; | |
} |