- Add empty
.nojekyll
to root. - Add scripts command
"build": "eleventy"
inpackage.json
. - Add workflow
.github/workflows/eleventy_build.yml
.
name: Eleventy Build
on:
push:
<!doctype html> | |
<html lang="en" class="bg-transparent antialiased" x-data="app" x-init="searchData()"> | |
<head> | |
<meta charset="utf-8" /> | |
<meta http-equiv="x-ua-compatible" content="ie=edge" /> | |
<title x-text="site.title"></title> | |
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" /> | |
<link href="https://fonts.gstatic.com" rel="preconnect" /> | |
<link href="https://fonts.googleapis.com/css2?family=Inter:[email protected]&display=swap" rel="stylesheet" /> |
Rutherford B. Hayes was born humbly to his own son RBH Jr. in Delaware, while it was still Ohio, sometime after the French Revolution.
Rejecting a career as a professional speller, he was admitted to the bar in 1845 though he did not drink lustfully from it.
Serving heroically in the Civil War, Hayes admitted later that it was in the Army where he first tasted human flesh.
In 1876 Hayes beat Bill Tilden in a 3-set quarterfinal at Flushing Meadows which caused the electrical college to declare him President of the United States.
Here are a few highlight of his administration:
// let's prep for the markdown stuff, add this to the top of your config | |
// we are using a plugin here, so markdown can be a truly worthy option | |
// don't forget to `npm markdown-it-attrs --save` into your project | |
const markdownIt = require("markdown-it"); | |
const markdownItAttrs = require("markdown-it-attrs"); | |
module.exports = function(eleventyConfig) { | |
// somewhere in your config block, add this stuff | |
// you can remove the `.disable('code')` part if you want |
<!doctype html> | |
<html lang="en" class="motion-safe:(scroll-smooth)" hidden> | |
<head> | |
<meta charset="utf-8" /> | |
<meta http-equiv="x-ua-compatible" content="ie=edge" /> | |
<title>Tailwind + Twind</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1" /> | |
<link href="https://fonts.gstatic.com" rel="preconnect" /> | |
<link href="https://fonts.googleapis.com/css2?family=Inter:[email protected]&display=swap" rel="stylesheet" /> | |
</head> |
<a | |
href="file.html" | |
onclick=" | |
window.open(this.href, | |
'_blank', | |
'width=640,height=480,top=100,left=100,titlebar=no,toolbar=no,location=no,menubar=no,status=no,scrollbars=yes,resizable=yes'); | |
return false; | |
" | |
> | |
Safe Popup |
As an accountable sixth grade student I should assume the responsibility to see that my work is done and completed to the best of my ability. This will enable me to develop mature work habits, avoid unnecessary work, and reach my full potential as a sixth grade student.
<!doctype html> | |
<html lang="en" class="bg-gray-200 motion-safe:scroll-smooth" hidden> | |
<head> | |
<meta charset="utf-8" /> | |
<meta http-equiv="x-ua-compatible" content="ie=edge" /> | |
<title></title> | |
<meta name="viewport" content="width=device-width, initial-scale=1" /> | |
<link href="https://fonts.gstatic.com" rel="preconnect" /> | |
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100;400;600;700;900&display=swap" rel="stylesheet" /> | |
</head> |
import { tw, setup, theme, silent } from 'https://cdn.skypack.dev/twind' | |
import { css, apply } from 'https://cdn.skypack.dev/twind/css' | |
import * as colors from 'https://cdn.skypack.dev/twind/colors' | |
import { observe } from 'https://cdn.skypack.dev/twind/observe' | |
setup({ | |
mode: silent, | |
theme: { | |
extend: { | |
colors: { |