import React from 'react';
import './App.css';
function App() {
return (
<div className="App">
Hello World!
</div>
);
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
.more-posts-container, .blog-page-container .breadcrumbs{ | |
display: none; | |
} | |
.main-container:has(.blog-page) .headroom-wrapper, | |
.main-container:has(.blog-page) footer { | |
display: none; | |
} |
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
.main-container{ | |
background-color:#fafafa | |
} | |
.simple-latest-title{ | |
font-size:2rem | |
} |
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
console.log("Hello World!") |
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
@charset "UTF-8"; /*! | |
* Bootswatch v5.3.1 (https://bootswatch.com) | |
* Theme: journal | |
* Copyright 2012-2023 Thomas Park | |
* Licensed under MIT | |
* Based on Bootstrap | |
*/ /*! | |
* Bootstrap v5.3.1 (https://getbootstrap.com/) | |
* Copyright 2011-2023 The Bootstrap Authors | |
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) |
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
//buttercms-mailchimp-webhooks-integration-pipedream | |
const axios = require("axios") | |
const client = require("@mailchimp/mailchimp_marketing"); | |
client.setConfig({ | |
apiKey: '<YOUR-MAILCHIMP-API-KEY>', | |
server: '<YOUR-MAILCHIMP-SERVER-PREFIX>', | |
}); |
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
data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAB2oAAAOMCAYAAACM7zMWAAAgAElEQVR4Aey9CbQlVXn3zdDMQ88DdEMDzSSTzEMzNM3Y0E03NHODzCDzJA4IBkEcURONRsFETVTUGIdoor6Oicb4JZrhfU0+fKPr9TXGRbISEk38NEz9fOtf9/yrn7upOvfc6dx7u3+1Vt1dVXvvZz/7t/9VdWo/p87d7L8PvCpYYYAG0AAaQANoAA2gATSABtAAGkADaAANoAE0gAbQABpAA2gADaABNIAG0AAa6J8GNgN2/2DDGtZoAA2gATSABtAAGkADaAANoAE0gAbQABpAA2gADaABNIAG0AAaQANoAA1IAwRqeaOYN6rRABpAA2gADaABNIAG0AAaQANoAA2gATSABtAAGkADaAANoAE0gAbQABroswYI1PYZON+Q4BsSaAANoAE0gAbQABpAA2gADaABNIAG0AAaQANoAA2gATSABtAAGkADaAANEKglUMu3I9AAGkADaAANoAE0gAbQABpAA2gADaABNIAG0AAaQANoAA2gATSABtAAGuizBgjU9hk4347g2xFoAA2gATSABtAAGkADaAANoAE0gAbQABpAA2gADaABNIAG0AAaQANoAA0QqCVQy7cj0AAaQANoAA2gATSABtAAGkADaAANoAE0gAbQABpAA2gADaABNIAG0AAa6LMGCNT2GTjfjuDbEWgADaABNIAG0AAaQANoAA2gATSABtAAGkADaAANoAE0gAbQABpAA2gADRCoJVDLtyPQABpAA2gADaABNIAG0AAaQANoAA2gATSABtAAGkADaAANoAE0gAbQABroswYI1PYZON+O4NsRaAANoAE0gAbQABpAA2gADaABNIAG0AAaQANoAA2gATSABtAAGkADaAANEKglUMu3I9AAGkADaAANoAE0gAbQABpAA2gADaABNIAG0AAaQANoAA2gATSABtAAGuizBg… |
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 morgan = require("morgan") | |
const app = express(); | |
// Middlewares | |
app.use(morgan("common")) | |
// Port |
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 app = express(); | |
const port = 3000; | |
app.get("/", (req, res) => { | |
res.json({ | |
message: "Hello Stranger! How are you?", | |
}); |
import React from 'react';
import './App.css';
function App() {
return (
<div className="App">
Hello World!
</div>
);
NewerOlder