- Read the docs: jekyllrb.com/docs -> "Content" & "Site Structure"
- Read more about Liquid template engine shopify.github.io/liquid
- Github topics/jekyll
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
wget \ | |
--recursive \ | |
--no-clobber \ | |
--page-requisites \ | |
--convert-links \ | |
--restrict-file-names=windows \ | |
--domains $1 \ | |
--no-parent \ | |
https://$1/ |
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="" style=" | |
padding-bottom: 1rem; | |
margin-bottom: 1rem; | |
border-bottom: 1px solid #c8c8ca; | |
"> | |
<h3 class="title">Install latest version:</h3> | |
<div style=" | |
display: flex; | |
align-content: center; | |
"> |
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
<!DOCTYPE html> | |
<html amphtml> | |
<head> | |
... | |
<script async custom-element="amp-iframe" src="https://cdn.ampproject.org/v0/amp-iframe-0.1.js"></script> | |
</head> | |
<body> | |
... | |
<amp-iframe |
Nach der neuen DSGVO-Regelung müssen Websites, die Cookies verwenden einen explizites Opt-In machen.
Siehe hier: DSGVO-Entscheidung vom Bundesgerichtshof: Wer braucht jetzt einen Cookie-Banner?
Dies sollte als "Starthilfe" und nicht als vollständige Implementierung angesehen werden.
Zu den amp-analytics
-Tags muss der Parameter data-block-on-consent="_till_accepted"
hinzugefügt werden.
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
import 'package:intl/intl.dart'; | |
Map conversions = { | |
'a': (d) => 'E', | |
'A': (d) => 'EEEE', | |
'b': (d) => 'MMM', | |
'B': (d) => 'MMMM', | |
'+': (d) => _strptime(d, '%a %b %e %H:%M:%S %Z %Y'), | |
'%': (d) => '%%', | |
'Z': (d) => 'vvvv', |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Le nombre d'or</title> | |
</head> | |
<body class="gr-column"> |
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
import 'package:intl/intl.dart'; | |
import 'package:test/test.dart'; | |
formatRfc822(DateTime d) { | |
var template = "EEE, dd MMM yyyy HH:mm:ss"; | |
var out = DateFormat(template).format(d); | |
if (d.isUtc) { | |
out += ' GMT'; | |
} else { | |
var offset = d.toLocal().timeZoneOffset.inHours * 100; |
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
class CsvToMapConverter { | |
CsvToListConverter converter; | |
CsvToMapConverter( | |
{String fieldDelimiter = defaultFieldDelimiter, | |
String textDelimiter = defaultTextDelimiter, | |
String textEndDelimiter, | |
String eol = defaultEol, | |
CsvSettingsDetector csvSettingsDetector, | |
bool shouldParseNumbers, | |
bool allowInvalid}) { |
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
{ | |
"hosting": { | |
"public": "_site", | |
"ignore": [ | |
"firebase.json", | |
"**/.*", | |
"**/node_modules/**" | |
], | |
"headers": [{ | |
"source": "**", |