- 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 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 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 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 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 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 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": "**", |
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
/* | |
* `getip.c' | |
* | |
* Copyright (C) 2015, 2016 Lukas Himsel <[email protected]> | |
* | |
* This program is free software: you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License as published by | |
* the Free Software Foundation, either version 3 of the License, or | |
* (at your option) any later version. | |
* This program is distributed in the hope that it will be useful, |
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
/* | |
* snippet.c | |
* | |
* Copyright (C) 2015, 2016 Lukas Himsel <[email protected]> | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 |