mirror of
https://forge.chapril.org/tykayn/orgmode-to-gemini-blog
synced 2025-06-20 09:04:42 +02:00
up style
This commit is contained in:
parent
086287fad3
commit
1d224cb8e4
1995 changed files with 66244 additions and 8957 deletions
|
@ -55,22 +55,39 @@ body {
|
|||
}
|
||||
|
||||
/* Improve media defaults */
|
||||
img,
|
||||
picture,
|
||||
video,
|
||||
canvas,
|
||||
svg {
|
||||
.content img,
|
||||
.content picture,
|
||||
.content video,
|
||||
.content canvas,
|
||||
.content svg {
|
||||
display: block;
|
||||
margin-top: 1rem;
|
||||
margin-bottom: 1rem;
|
||||
max-width: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
pre, .sourceCode {
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
/* Inherit fonts for form controls */
|
||||
a {
|
||||
display: inline-block;
|
||||
border-radius: 1rem;
|
||||
color: rgb(0, 123, 255);
|
||||
text-decoration: none;
|
||||
}
|
||||
main a:hover {
|
||||
background: #303030;
|
||||
color: #dedede;
|
||||
}
|
||||
.nav a, .page__index a {
|
||||
padding: 0.55rem 2rem;
|
||||
display: block;
|
||||
margin-right: 1rem;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
input,
|
||||
button,
|
||||
textarea,
|
||||
|
@ -78,18 +95,8 @@ select {
|
|||
font: inherit;
|
||||
}
|
||||
|
||||
/* Avoid text overflows */
|
||||
p,
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
overflow-wrap: break-word;
|
||||
}
|
||||
|
||||
p {
|
||||
overflow-wrap: break-word;
|
||||
text-wrap: pretty;
|
||||
margin-top: 1.5rem;
|
||||
margin-bottom: 1rem;
|
||||
|
@ -114,6 +121,7 @@ h3,
|
|||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
overflow-wrap: break-word;
|
||||
text-wrap: balance;
|
||||
line-height: 1.3em;
|
||||
}
|
||||
|
@ -169,6 +177,17 @@ li {
|
|||
margin: 1rem;
|
||||
}
|
||||
|
||||
#page {
|
||||
background: #CCC;
|
||||
}
|
||||
|
||||
.body-wrap {
|
||||
background: #FFF;
|
||||
padding: 5% 6%;
|
||||
margin-bottom: 5%;
|
||||
margin-top: 1rem;
|
||||
}
|
||||
|
||||
.content {
|
||||
min-height: 50rem;
|
||||
}
|
||||
|
@ -178,20 +197,6 @@ li {
|
|||
padding: 2rem;
|
||||
}
|
||||
|
||||
a {
|
||||
display: inline-block;
|
||||
padding: 0.55rem 2rem;
|
||||
margin-right: 1rem;
|
||||
margin-bottom: 1rem;
|
||||
border-radius: 1rem;
|
||||
color: rgb(0, 123, 255);
|
||||
text-decoration: none;
|
||||
}
|
||||
main a:hover {
|
||||
background: #303030;
|
||||
color: #dedede;
|
||||
}
|
||||
|
||||
@media (max-width: 75ch) {
|
||||
body {
|
||||
padding: 0;
|
||||
|
|
|
@ -1,234 +1,86 @@
|
|||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="generator" content="pandoc" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
|
||||
<title>tykayn_blog</title>
|
||||
<style>
|
||||
html {
|
||||
color: #1a1a1a;
|
||||
background-color: #fdfdfd;
|
||||
}
|
||||
body {
|
||||
margin: 0 auto;
|
||||
max-width: 36em;
|
||||
padding-left: 50px;
|
||||
padding-right: 50px;
|
||||
padding-top: 50px;
|
||||
padding-bottom: 50px;
|
||||
hyphens: auto;
|
||||
overflow-wrap: break-word;
|
||||
text-rendering: optimizeLegibility;
|
||||
font-kerning: normal;
|
||||
}
|
||||
@media (max-width: 600px) {
|
||||
body {
|
||||
font-size: 0.9em;
|
||||
padding: 12px;
|
||||
}
|
||||
h1 {
|
||||
font-size: 1.8em;
|
||||
}
|
||||
}
|
||||
@media print {
|
||||
html {
|
||||
background-color: white;
|
||||
}
|
||||
body {
|
||||
background-color: transparent;
|
||||
color: black;
|
||||
font-size: 12pt;
|
||||
}
|
||||
p, h2, h3 {
|
||||
orphans: 3;
|
||||
widows: 3;
|
||||
}
|
||||
h2, h3, h4 {
|
||||
page-break-after: avoid;
|
||||
}
|
||||
}
|
||||
p {
|
||||
margin: 1em 0;
|
||||
}
|
||||
a {
|
||||
color: #1a1a1a;
|
||||
}
|
||||
a:visited {
|
||||
color: #1a1a1a;
|
||||
}
|
||||
img {
|
||||
max-width: 100%;
|
||||
}
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
margin-top: 1.4em;
|
||||
}
|
||||
h5, h6 {
|
||||
font-size: 1em;
|
||||
font-style: italic;
|
||||
}
|
||||
h6 {
|
||||
font-weight: normal;
|
||||
}
|
||||
ol, ul {
|
||||
padding-left: 1.7em;
|
||||
margin-top: 1em;
|
||||
}
|
||||
li > ol, li > ul {
|
||||
margin-top: 0;
|
||||
}
|
||||
blockquote {
|
||||
margin: 1em 0 1em 1.7em;
|
||||
padding-left: 1em;
|
||||
border-left: 2px solid #e6e6e6;
|
||||
color: #606060;
|
||||
}
|
||||
code {
|
||||
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
|
||||
font-size: 85%;
|
||||
margin: 0;
|
||||
hyphens: manual;
|
||||
}
|
||||
pre {
|
||||
margin: 1em 0;
|
||||
overflow: auto;
|
||||
}
|
||||
pre code {
|
||||
padding: 0;
|
||||
overflow: visible;
|
||||
overflow-wrap: normal;
|
||||
}
|
||||
.sourceCode {
|
||||
background-color: transparent;
|
||||
overflow: visible;
|
||||
}
|
||||
hr {
|
||||
background-color: #1a1a1a;
|
||||
border: none;
|
||||
height: 1px;
|
||||
margin: 1em 0;
|
||||
}
|
||||
table {
|
||||
margin: 1em 0;
|
||||
border-collapse: collapse;
|
||||
width: 100%;
|
||||
overflow-x: auto;
|
||||
display: block;
|
||||
font-variant-numeric: lining-nums tabular-nums;
|
||||
}
|
||||
table caption {
|
||||
margin-bottom: 0.75em;
|
||||
}
|
||||
tbody {
|
||||
margin-top: 0.5em;
|
||||
border-top: 1px solid #1a1a1a;
|
||||
border-bottom: 1px solid #1a1a1a;
|
||||
}
|
||||
th {
|
||||
border-top: 1px solid #1a1a1a;
|
||||
padding: 0.25em 0.5em 0.25em 0.5em;
|
||||
}
|
||||
td {
|
||||
padding: 0.125em 0.5em 0.25em 0.5em;
|
||||
}
|
||||
header {
|
||||
margin-bottom: 4em;
|
||||
text-align: center;
|
||||
}
|
||||
#TOC li {
|
||||
list-style: none;
|
||||
}
|
||||
#TOC ul {
|
||||
padding-left: 1.3em;
|
||||
}
|
||||
#TOC > ul {
|
||||
padding-left: 0;
|
||||
}
|
||||
#TOC a:not(:hover) {
|
||||
text-decoration: none;
|
||||
}
|
||||
code{white-space: pre-wrap;}
|
||||
span.smallcaps{font-variant: small-caps;}
|
||||
div.columns{display: flex; gap: min(4vw, 1.5em);}
|
||||
div.column{flex: auto; overflow-x: auto;}
|
||||
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
|
||||
/* The extra [class] is a hack that increases specificity enough to
|
||||
override a similar rule in reveal.js */
|
||||
ul.task-list[class]{list-style: none;}
|
||||
ul.task-list li input[type="checkbox"] {
|
||||
font-size: inherit;
|
||||
width: 0.8em;
|
||||
margin: 0 0.8em 0.2em -1.6em;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
|
||||
/* CSS for syntax highlighting */
|
||||
pre > code.sourceCode { white-space: pre; position: relative; }
|
||||
pre > code.sourceCode > span { line-height: 1.25; }
|
||||
pre > code.sourceCode > span:empty { height: 1.2em; }
|
||||
.sourceCode { overflow: visible; }
|
||||
code.sourceCode > span { color: inherit; text-decoration: inherit; }
|
||||
div.sourceCode { margin: 1em 0; }
|
||||
pre.sourceCode { margin: 0; }
|
||||
@media screen {
|
||||
div.sourceCode { overflow: auto; }
|
||||
}
|
||||
@media print {
|
||||
pre > code.sourceCode { white-space: pre-wrap; }
|
||||
pre > code.sourceCode > span { text-indent: -5em; padding-left: 5em; }
|
||||
}
|
||||
pre.numberSource code
|
||||
{ counter-reset: source-line 0; }
|
||||
pre.numberSource code > span
|
||||
{ position: relative; left: -4em; counter-increment: source-line; }
|
||||
pre.numberSource code > span > a:first-child::before
|
||||
{ content: counter(source-line);
|
||||
position: relative; left: -1em; text-align: right; vertical-align: baseline;
|
||||
border: none; display: inline-block;
|
||||
-webkit-touch-callout: none; -webkit-user-select: none;
|
||||
-khtml-user-select: none; -moz-user-select: none;
|
||||
-ms-user-select: none; user-select: none;
|
||||
padding: 0 4px; width: 4em;
|
||||
color: #aaaaaa;
|
||||
}
|
||||
pre.numberSource { margin-left: 3em; border-left: 1px solid #aaaaaa; padding-left: 4px; }
|
||||
div.sourceCode
|
||||
{ }
|
||||
@media screen {
|
||||
pre > code.sourceCode > span > a:first-child::before { text-decoration: underline; }
|
||||
}
|
||||
code span.al { color: #ff0000; font-weight: bold; } /* Alert */
|
||||
code span.an { color: #60a0b0; font-weight: bold; font-style: italic; } /* Annotation */
|
||||
code span.at { color: #7d9029; } /* Attribute */
|
||||
code span.bn { color: #40a070; } /* BaseN */
|
||||
code span.bu { color: #008000; } /* BuiltIn */
|
||||
code span.cf { color: #007020; font-weight: bold; } /* ControlFlow */
|
||||
code span.ch { color: #4070a0; } /* Char */
|
||||
code span.cn { color: #880000; } /* Constant */
|
||||
code span.co { color: #60a0b0; font-style: italic; } /* Comment */
|
||||
code span.cv { color: #60a0b0; font-weight: bold; font-style: italic; } /* CommentVar */
|
||||
code span.do { color: #ba2121; font-style: italic; } /* Documentation */
|
||||
code span.dt { color: #902000; } /* DataType */
|
||||
code span.dv { color: #40a070; } /* DecVal */
|
||||
code span.er { color: #ff0000; font-weight: bold; } /* Error */
|
||||
code span.ex { } /* Extension */
|
||||
code span.fl { color: #40a070; } /* Float */
|
||||
code span.fu { color: #06287e; } /* Function */
|
||||
code span.im { color: #008000; font-weight: bold; } /* Import */
|
||||
code span.in { color: #60a0b0; font-weight: bold; font-style: italic; } /* Information */
|
||||
code span.kw { color: #007020; font-weight: bold; } /* Keyword */
|
||||
code span.op { color: #666666; } /* Operator */
|
||||
code span.ot { color: #007020; } /* Other */
|
||||
code span.pp { color: #bc7a00; } /* Preprocessor */
|
||||
code span.sc { color: #4070a0; } /* SpecialChar */
|
||||
code span.ss { color: #bb6688; } /* SpecialString */
|
||||
code span.st { color: #4070a0; } /* String */
|
||||
code span.va { color: #19177c; } /* Variable */
|
||||
code span.vs { color: #4070a0; } /* VerbatimString */
|
||||
code span.wa { color: #60a0b0; font-weight: bold; font-style: italic; } /* Warning */
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta property="og:image" content="https://tykayn.fr/wp-content/uploads/2016/12/rond.png">
|
||||
<meta property="og:locale" content="fr_FR">
|
||||
<meta property="og:description" content="Le vortex à chats - Illustrations, trucs en tout genre par Tykayn">
|
||||
<meta property="og:url" content="https://tykayn.fr">
|
||||
<meta property="og:site_name" content="">
|
||||
<link rel="alternate" type="application/rss+xml" title="Cipher Bliss » Flux" href="https://tykayn.fr/feed/">
|
||||
<link href="/style.css" rel="stylesheet">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title></title>
|
||||
<meta name="author" content="Tykayn">
|
||||
<link rel="alternate" type="application/rss+xml" title="Tykayn Blog » Flux"
|
||||
href="https://tykayn.fr/feed/">
|
||||
<meta property="og:title" content="Baptiste Lemoine">
|
||||
<meta property="og:locale" content="fr_FR">
|
||||
<!-- Description de la page -->
|
||||
<meta name="description" content="Baptiste Lemoine">
|
||||
<meta name="reply-to" content="contact@cipherbliss.com">
|
||||
<link rel="icon" type="image/png" href="https://tykayn.fr/wp-content/uploads/2016/12/rond.png">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="page" class="page__la_page">
|
||||
<header id="masthead" class="site-header">
|
||||
<div class="header-image" style="background: url(https://tykayn.fr/wp-content/themes/toivo-lite/images/header.jpg)">
|
||||
<a href="/">
|
||||
<img src="https://tykayn.fr/wp-content/uploads/2016/12/rond.png" class="site-icon img">
|
||||
</a>
|
||||
<h1 class="blog-title">Tykayn Blog</h1>
|
||||
<p class="blog-subtitle">Le vortex à chats - Illustrations, trucs en tout genre par Tykayn</p>
|
||||
<div class="template-header">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<nav class="navbar is-fixed-top is-dark" role="navigation" aria-label="main navigation">
|
||||
<div class="navbar-brand">
|
||||
<a class="navbar-item" href="https://tykayn.fr">
|
||||
Accueil
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div id="navbarBasicExample" class="navbar-menu">
|
||||
<div class="navbar-start">
|
||||
<a class="navbar-item" href="https://tykayn.fr">
|
||||
<img src="https://tykayn.fr/wp-content/uploads/2016/12/rond.png"
|
||||
class="img-fluid">
|
||||
</a>
|
||||
|
||||
<nav>
|
||||
<a href="/">Accueil</a>
|
||||
<a href="https://portfolio.cipherbliss.com">Portfolio</a>
|
||||
<a href="https://qzine.fr">Qzine</a>
|
||||
<a href="https://www.cipherbliss.com">Cipherbliss</a>
|
||||
<a href="/feed">Flux RSS</a>
|
||||
<a href="https://cloud.tykayn.fr/index.php/s/dessins_partage_blog">Sources des illustrations</a>
|
||||
<a href="/contact">Contact</a>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
<div class="navbar-end">
|
||||
<div class="navbar-item">
|
||||
<form role="search" method="get" class="search-form" action="/">
|
||||
<label>
|
||||
<input class="search-field" placeholder="Recherche" value="" name="s"
|
||||
type="search">
|
||||
</label>
|
||||
<input class="is-hidden search-submit" value="Rechercher" type="submit">
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
<main class="body-wrap boxed-container">
|
||||
<article class="content">
|
||||
|
||||
<header id="title-block-header">
|
||||
<h1 class="title">tykayn_blog</h1>
|
||||
</header>
|
||||
|
@ -300,5 +152,36 @@ class="sourceCode bash"><code class="sourceCode bash"><span id="cb1-1"><a href="
|
|||
principaux</h1>
|
||||
<p>shift et click pour changer la taille de la brosse en déplaçant votre
|
||||
stylet latéralement. crtl et click pour fair une pipette de couleur</p>
|
||||
</body>
|
||||
|
||||
<p class="after-article">
|
||||
|
||||
</p>
|
||||
</article>
|
||||
</main>
|
||||
<footer class="site-footer has-top-divider">
|
||||
<div class="container">
|
||||
<div class="site-footer-inner">
|
||||
<div class="site-foot">
|
||||
|
||||
</div>
|
||||
<nav class="footer-nav">
|
||||
|
||||
<nav>
|
||||
<a href="/">Accueil</a>
|
||||
<a href="https://portfolio.cipherbliss.com">Portfolio</a>
|
||||
<a href="https://qzine.fr">Qzine</a>
|
||||
<a href="https://www.cipherbliss.com">Cipherbliss</a>
|
||||
<a href="/feed">Flux RSS</a>
|
||||
<a href="https://cloud.tykayn.fr/index.php/s/dessins_partage_blog">Sources des illustrations</a>
|
||||
<a href="/contact">Contact</a>
|
||||
</nav>
|
||||
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
<!-- généré avec orgmode-to-gemini-blog par Tykayn -->
|
||||
</html>
|
||||
|
||||
|
|
|
@ -1,170 +1,86 @@
|
|||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="generator" content="pandoc" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
|
||||
<title>tykayn_blog</title>
|
||||
<style>
|
||||
html {
|
||||
color: #1a1a1a;
|
||||
background-color: #fdfdfd;
|
||||
}
|
||||
body {
|
||||
margin: 0 auto;
|
||||
max-width: 36em;
|
||||
padding-left: 50px;
|
||||
padding-right: 50px;
|
||||
padding-top: 50px;
|
||||
padding-bottom: 50px;
|
||||
hyphens: auto;
|
||||
overflow-wrap: break-word;
|
||||
text-rendering: optimizeLegibility;
|
||||
font-kerning: normal;
|
||||
}
|
||||
@media (max-width: 600px) {
|
||||
body {
|
||||
font-size: 0.9em;
|
||||
padding: 12px;
|
||||
}
|
||||
h1 {
|
||||
font-size: 1.8em;
|
||||
}
|
||||
}
|
||||
@media print {
|
||||
html {
|
||||
background-color: white;
|
||||
}
|
||||
body {
|
||||
background-color: transparent;
|
||||
color: black;
|
||||
font-size: 12pt;
|
||||
}
|
||||
p, h2, h3 {
|
||||
orphans: 3;
|
||||
widows: 3;
|
||||
}
|
||||
h2, h3, h4 {
|
||||
page-break-after: avoid;
|
||||
}
|
||||
}
|
||||
p {
|
||||
margin: 1em 0;
|
||||
}
|
||||
a {
|
||||
color: #1a1a1a;
|
||||
}
|
||||
a:visited {
|
||||
color: #1a1a1a;
|
||||
}
|
||||
img {
|
||||
max-width: 100%;
|
||||
}
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
margin-top: 1.4em;
|
||||
}
|
||||
h5, h6 {
|
||||
font-size: 1em;
|
||||
font-style: italic;
|
||||
}
|
||||
h6 {
|
||||
font-weight: normal;
|
||||
}
|
||||
ol, ul {
|
||||
padding-left: 1.7em;
|
||||
margin-top: 1em;
|
||||
}
|
||||
li > ol, li > ul {
|
||||
margin-top: 0;
|
||||
}
|
||||
blockquote {
|
||||
margin: 1em 0 1em 1.7em;
|
||||
padding-left: 1em;
|
||||
border-left: 2px solid #e6e6e6;
|
||||
color: #606060;
|
||||
}
|
||||
code {
|
||||
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
|
||||
font-size: 85%;
|
||||
margin: 0;
|
||||
hyphens: manual;
|
||||
}
|
||||
pre {
|
||||
margin: 1em 0;
|
||||
overflow: auto;
|
||||
}
|
||||
pre code {
|
||||
padding: 0;
|
||||
overflow: visible;
|
||||
overflow-wrap: normal;
|
||||
}
|
||||
.sourceCode {
|
||||
background-color: transparent;
|
||||
overflow: visible;
|
||||
}
|
||||
hr {
|
||||
background-color: #1a1a1a;
|
||||
border: none;
|
||||
height: 1px;
|
||||
margin: 1em 0;
|
||||
}
|
||||
table {
|
||||
margin: 1em 0;
|
||||
border-collapse: collapse;
|
||||
width: 100%;
|
||||
overflow-x: auto;
|
||||
display: block;
|
||||
font-variant-numeric: lining-nums tabular-nums;
|
||||
}
|
||||
table caption {
|
||||
margin-bottom: 0.75em;
|
||||
}
|
||||
tbody {
|
||||
margin-top: 0.5em;
|
||||
border-top: 1px solid #1a1a1a;
|
||||
border-bottom: 1px solid #1a1a1a;
|
||||
}
|
||||
th {
|
||||
border-top: 1px solid #1a1a1a;
|
||||
padding: 0.25em 0.5em 0.25em 0.5em;
|
||||
}
|
||||
td {
|
||||
padding: 0.125em 0.5em 0.25em 0.5em;
|
||||
}
|
||||
header {
|
||||
margin-bottom: 4em;
|
||||
text-align: center;
|
||||
}
|
||||
#TOC li {
|
||||
list-style: none;
|
||||
}
|
||||
#TOC ul {
|
||||
padding-left: 1.3em;
|
||||
}
|
||||
#TOC > ul {
|
||||
padding-left: 0;
|
||||
}
|
||||
#TOC a:not(:hover) {
|
||||
text-decoration: none;
|
||||
}
|
||||
code{white-space: pre-wrap;}
|
||||
span.smallcaps{font-variant: small-caps;}
|
||||
div.columns{display: flex; gap: min(4vw, 1.5em);}
|
||||
div.column{flex: auto; overflow-x: auto;}
|
||||
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
|
||||
/* The extra [class] is a hack that increases specificity enough to
|
||||
override a similar rule in reveal.js */
|
||||
ul.task-list[class]{list-style: none;}
|
||||
ul.task-list li input[type="checkbox"] {
|
||||
font-size: inherit;
|
||||
width: 0.8em;
|
||||
margin: 0 0.8em 0.2em -1.6em;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta property="og:image" content="https://tykayn.fr/wp-content/uploads/2016/12/rond.png">
|
||||
<meta property="og:locale" content="fr_FR">
|
||||
<meta property="og:description" content="Le vortex à chats - Illustrations, trucs en tout genre par Tykayn">
|
||||
<meta property="og:url" content="https://tykayn.fr">
|
||||
<meta property="og:site_name" content="">
|
||||
<link rel="alternate" type="application/rss+xml" title="Cipher Bliss » Flux" href="https://tykayn.fr/feed/">
|
||||
<link href="/style.css" rel="stylesheet">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title></title>
|
||||
<meta name="author" content="Tykayn">
|
||||
<link rel="alternate" type="application/rss+xml" title="Tykayn Blog » Flux"
|
||||
href="https://tykayn.fr/feed/">
|
||||
<meta property="og:title" content="Baptiste Lemoine">
|
||||
<meta property="og:locale" content="fr_FR">
|
||||
<!-- Description de la page -->
|
||||
<meta name="description" content="Baptiste Lemoine">
|
||||
<meta name="reply-to" content="contact@cipherbliss.com">
|
||||
<link rel="icon" type="image/png" href="https://tykayn.fr/wp-content/uploads/2016/12/rond.png">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="page" class="page__la_page">
|
||||
<header id="masthead" class="site-header">
|
||||
<div class="header-image" style="background: url(https://tykayn.fr/wp-content/themes/toivo-lite/images/header.jpg)">
|
||||
<a href="/">
|
||||
<img src="https://tykayn.fr/wp-content/uploads/2016/12/rond.png" class="site-icon img">
|
||||
</a>
|
||||
<h1 class="blog-title">Tykayn Blog</h1>
|
||||
<p class="blog-subtitle">Le vortex à chats - Illustrations, trucs en tout genre par Tykayn</p>
|
||||
<div class="template-header">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<nav class="navbar is-fixed-top is-dark" role="navigation" aria-label="main navigation">
|
||||
<div class="navbar-brand">
|
||||
<a class="navbar-item" href="https://tykayn.fr">
|
||||
Accueil
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div id="navbarBasicExample" class="navbar-menu">
|
||||
<div class="navbar-start">
|
||||
<a class="navbar-item" href="https://tykayn.fr">
|
||||
<img src="https://tykayn.fr/wp-content/uploads/2016/12/rond.png"
|
||||
class="img-fluid">
|
||||
</a>
|
||||
|
||||
<nav>
|
||||
<a href="/">Accueil</a>
|
||||
<a href="https://portfolio.cipherbliss.com">Portfolio</a>
|
||||
<a href="https://qzine.fr">Qzine</a>
|
||||
<a href="https://www.cipherbliss.com">Cipherbliss</a>
|
||||
<a href="/feed">Flux RSS</a>
|
||||
<a href="https://cloud.tykayn.fr/index.php/s/dessins_partage_blog">Sources des illustrations</a>
|
||||
<a href="/contact">Contact</a>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
<div class="navbar-end">
|
||||
<div class="navbar-item">
|
||||
<form role="search" method="get" class="search-form" action="/">
|
||||
<label>
|
||||
<input class="search-field" placeholder="Recherche" value="" name="s"
|
||||
type="search">
|
||||
</label>
|
||||
<input class="is-hidden search-submit" value="Rechercher" type="submit">
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
<main class="body-wrap boxed-container">
|
||||
<article class="content">
|
||||
|
||||
<header id="title-block-header">
|
||||
<h1 class="title">tykayn_blog</h1>
|
||||
</header>
|
||||
|
@ -183,5 +99,36 @@ petite vadrouille</a>.</p>
|
|||
src="https://tykayn.fr/wp-content/uploads/2024/02/2024-02-18T21.36.27.jpg" /></p>
|
||||
<p><img
|
||||
src="https://tykayn.fr/wp-content/uploads/2024/02/2024-02-18T21.37.23.jpg" /></p>
|
||||
</body>
|
||||
|
||||
<p class="after-article">
|
||||
|
||||
</p>
|
||||
</article>
|
||||
</main>
|
||||
<footer class="site-footer has-top-divider">
|
||||
<div class="container">
|
||||
<div class="site-footer-inner">
|
||||
<div class="site-foot">
|
||||
|
||||
</div>
|
||||
<nav class="footer-nav">
|
||||
|
||||
<nav>
|
||||
<a href="/">Accueil</a>
|
||||
<a href="https://portfolio.cipherbliss.com">Portfolio</a>
|
||||
<a href="https://qzine.fr">Qzine</a>
|
||||
<a href="https://www.cipherbliss.com">Cipherbliss</a>
|
||||
<a href="/feed">Flux RSS</a>
|
||||
<a href="https://cloud.tykayn.fr/index.php/s/dessins_partage_blog">Sources des illustrations</a>
|
||||
<a href="/contact">Contact</a>
|
||||
</nav>
|
||||
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
<!-- généré avec orgmode-to-gemini-blog par Tykayn -->
|
||||
</html>
|
||||
|
||||
|
|
|
@ -0,0 +1,128 @@
|
|||
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta property="og:image" content="https://tykayn.fr/wp-content/uploads/2016/12/rond.png">
|
||||
<meta property="og:locale" content="fr_FR">
|
||||
<meta property="og:description" content="Le vortex à chats - Illustrations, trucs en tout genre par Tykayn">
|
||||
<meta property="og:url" content="https://tykayn.fr">
|
||||
<meta property="og:site_name" content="">
|
||||
<link rel="alternate" type="application/rss+xml" title="Cipher Bliss » Flux" href="https://tykayn.fr/feed/">
|
||||
<link href="/style.css" rel="stylesheet">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title></title>
|
||||
<meta name="author" content="Tykayn">
|
||||
<link rel="alternate" type="application/rss+xml" title="Tykayn Blog » Flux"
|
||||
href="https://tykayn.fr/feed/">
|
||||
<meta property="og:title" content="Baptiste Lemoine">
|
||||
<meta property="og:locale" content="fr_FR">
|
||||
<!-- Description de la page -->
|
||||
<meta name="description" content="Baptiste Lemoine">
|
||||
<meta name="reply-to" content="contact@cipherbliss.com">
|
||||
<link rel="icon" type="image/png" href="https://tykayn.fr/wp-content/uploads/2016/12/rond.png">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="page" class="page__la_page">
|
||||
<header id="masthead" class="site-header">
|
||||
<div class="header-image" style="background: url(https://tykayn.fr/wp-content/themes/toivo-lite/images/header.jpg)">
|
||||
<a href="/">
|
||||
<img src="https://tykayn.fr/wp-content/uploads/2016/12/rond.png" class="site-icon img">
|
||||
</a>
|
||||
<h1 class="blog-title">Tykayn Blog</h1>
|
||||
<p class="blog-subtitle">Le vortex à chats - Illustrations, trucs en tout genre par Tykayn</p>
|
||||
<div class="template-header">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<nav class="navbar is-fixed-top is-dark" role="navigation" aria-label="main navigation">
|
||||
<div class="navbar-brand">
|
||||
<a class="navbar-item" href="https://tykayn.fr">
|
||||
Accueil
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div id="navbarBasicExample" class="navbar-menu">
|
||||
<div class="navbar-start">
|
||||
<a class="navbar-item" href="https://tykayn.fr">
|
||||
<img src="https://tykayn.fr/wp-content/uploads/2016/12/rond.png"
|
||||
class="img-fluid">
|
||||
</a>
|
||||
|
||||
<nav>
|
||||
<a href="/">Accueil</a>
|
||||
<a href="https://portfolio.cipherbliss.com">Portfolio</a>
|
||||
<a href="https://qzine.fr">Qzine</a>
|
||||
<a href="https://www.cipherbliss.com">Cipherbliss</a>
|
||||
<a href="/feed">Flux RSS</a>
|
||||
<a href="https://cloud.tykayn.fr/index.php/s/dessins_partage_blog">Sources des illustrations</a>
|
||||
<a href="/contact">Contact</a>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
<div class="navbar-end">
|
||||
<div class="navbar-item">
|
||||
<form role="search" method="get" class="search-form" action="/">
|
||||
<label>
|
||||
<input class="search-field" placeholder="Recherche" value="" name="s"
|
||||
type="search">
|
||||
</label>
|
||||
<input class="is-hidden search-submit" value="Rechercher" type="submit">
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
<main class="body-wrap boxed-container">
|
||||
<article class="content">
|
||||
|
||||
<header id="title-block-header">
|
||||
<h1 class="title">tykayn_blog</h1>
|
||||
</header>
|
||||
<p>2024-02-24</p>
|
||||
<h1 data-created="[2024-11-12 00:01:36]" id="sketches-18-1">sketches
|
||||
18+</h1>
|
||||
<p><img
|
||||
src="https://tykayn.fr/wp-content/uploads/2024/02/2022-02-08-des-boobies.jpg" /></p>
|
||||
<p><img
|
||||
src="https://tykayn.fr/wp-content/uploads/2024/02/2022-07-22-sketch1-pouic-table-et-back-pak.jpg" /></p>
|
||||
<p><img
|
||||
src="https://tykayn.fr/wp-content/uploads/2024/02/2022-07-22_sketch2_face_cuisses_brr-small.jpg" /></p>
|
||||
|
||||
<p class="after-article">
|
||||
|
||||
</p>
|
||||
</article>
|
||||
</main>
|
||||
<footer class="site-footer has-top-divider">
|
||||
<div class="container">
|
||||
<div class="site-footer-inner">
|
||||
<div class="site-foot">
|
||||
|
||||
</div>
|
||||
<nav class="footer-nav">
|
||||
|
||||
<nav>
|
||||
<a href="/">Accueil</a>
|
||||
<a href="https://portfolio.cipherbliss.com">Portfolio</a>
|
||||
<a href="https://qzine.fr">Qzine</a>
|
||||
<a href="https://www.cipherbliss.com">Cipherbliss</a>
|
||||
<a href="/feed">Flux RSS</a>
|
||||
<a href="https://cloud.tykayn.fr/index.php/s/dessins_partage_blog">Sources des illustrations</a>
|
||||
<a href="/contact">Contact</a>
|
||||
</nav>
|
||||
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
<!-- généré avec orgmode-to-gemini-blog par Tykayn -->
|
||||
</html>
|
||||
|
|
@ -0,0 +1,134 @@
|
|||
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta property="og:image" content="https://tykayn.fr/wp-content/uploads/2016/12/rond.png">
|
||||
<meta property="og:locale" content="fr_FR">
|
||||
<meta property="og:description" content="Le vortex à chats - Illustrations, trucs en tout genre par Tykayn">
|
||||
<meta property="og:url" content="https://tykayn.fr">
|
||||
<meta property="og:site_name" content="">
|
||||
<link rel="alternate" type="application/rss+xml" title="Cipher Bliss » Flux" href="https://tykayn.fr/feed/">
|
||||
<link href="/style.css" rel="stylesheet">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title></title>
|
||||
<meta name="author" content="Tykayn">
|
||||
<link rel="alternate" type="application/rss+xml" title="Tykayn Blog » Flux"
|
||||
href="https://tykayn.fr/feed/">
|
||||
<meta property="og:title" content="Baptiste Lemoine">
|
||||
<meta property="og:locale" content="fr_FR">
|
||||
<!-- Description de la page -->
|
||||
<meta name="description" content="Baptiste Lemoine">
|
||||
<meta name="reply-to" content="contact@cipherbliss.com">
|
||||
<link rel="icon" type="image/png" href="https://tykayn.fr/wp-content/uploads/2016/12/rond.png">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="page" class="page__la_page">
|
||||
<header id="masthead" class="site-header">
|
||||
<div class="header-image" style="background: url(https://tykayn.fr/wp-content/themes/toivo-lite/images/header.jpg)">
|
||||
<a href="/">
|
||||
<img src="https://tykayn.fr/wp-content/uploads/2016/12/rond.png" class="site-icon img">
|
||||
</a>
|
||||
<h1 class="blog-title">Tykayn Blog</h1>
|
||||
<p class="blog-subtitle">Le vortex à chats - Illustrations, trucs en tout genre par Tykayn</p>
|
||||
<div class="template-header">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<nav class="navbar is-fixed-top is-dark" role="navigation" aria-label="main navigation">
|
||||
<div class="navbar-brand">
|
||||
<a class="navbar-item" href="https://tykayn.fr">
|
||||
Accueil
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div id="navbarBasicExample" class="navbar-menu">
|
||||
<div class="navbar-start">
|
||||
<a class="navbar-item" href="https://tykayn.fr">
|
||||
<img src="https://tykayn.fr/wp-content/uploads/2016/12/rond.png"
|
||||
class="img-fluid">
|
||||
</a>
|
||||
|
||||
<nav>
|
||||
<a href="/">Accueil</a>
|
||||
<a href="https://portfolio.cipherbliss.com">Portfolio</a>
|
||||
<a href="https://qzine.fr">Qzine</a>
|
||||
<a href="https://www.cipherbliss.com">Cipherbliss</a>
|
||||
<a href="/feed">Flux RSS</a>
|
||||
<a href="https://cloud.tykayn.fr/index.php/s/dessins_partage_blog">Sources des illustrations</a>
|
||||
<a href="/contact">Contact</a>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
<div class="navbar-end">
|
||||
<div class="navbar-item">
|
||||
<form role="search" method="get" class="search-form" action="/">
|
||||
<label>
|
||||
<input class="search-field" placeholder="Recherche" value="" name="s"
|
||||
type="search">
|
||||
</label>
|
||||
<input class="is-hidden search-submit" value="Rechercher" type="submit">
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
<main class="body-wrap boxed-container">
|
||||
<article class="content">
|
||||
|
||||
<header id="title-block-header">
|
||||
<h1 class="title">tykayn_blog</h1>
|
||||
</header>
|
||||
<p>2024-02-24</p>
|
||||
<h1 data-created="[2024-11-12 00:03:08]"
|
||||
id="illus-mono-couleurs-1">illus mono couleurs</h1>
|
||||
<p>Suite de dessins de fin d’année 2023, une Rose Walker de la série
|
||||
Sandman, une étude de référence avec Ludmila avec qui j’ai fait des arts
|
||||
plastiques, et une référence cartoon de mon avatar dans le but de tenter
|
||||
de faire de la 3D sur Blender, c’est pas une mince affaire que d’y
|
||||
arriver donc pour le moment je ne montre pas le résultat 😀</p>
|
||||
<p><img
|
||||
src="https://tykayn.fr/wp-content/uploads/2024/02/buste_rose_walker_sandman_corneille-1024x724.jpg" /></p>
|
||||
<p><span class="spurious-link"
|
||||
target=" https://tykayn.fr/wp-content/uploads/2024/02/ludmila-1024x724.jpg"><em>
|
||||
https://tykayn.fr/wp-content/uploads/2024/02/ludmila-1024x724.jpg</em></span>
|
||||
<img
|
||||
src="https://tykayn.fr/wp-content/uploads/2024/02/2022-02-13T16.41.04-perso-tk-ref-livestream-1024x768.jpg" /></p>
|
||||
|
||||
<p class="after-article">
|
||||
|
||||
</p>
|
||||
</article>
|
||||
</main>
|
||||
<footer class="site-footer has-top-divider">
|
||||
<div class="container">
|
||||
<div class="site-footer-inner">
|
||||
<div class="site-foot">
|
||||
|
||||
</div>
|
||||
<nav class="footer-nav">
|
||||
|
||||
<nav>
|
||||
<a href="/">Accueil</a>
|
||||
<a href="https://portfolio.cipherbliss.com">Portfolio</a>
|
||||
<a href="https://qzine.fr">Qzine</a>
|
||||
<a href="https://www.cipherbliss.com">Cipherbliss</a>
|
||||
<a href="/feed">Flux RSS</a>
|
||||
<a href="https://cloud.tykayn.fr/index.php/s/dessins_partage_blog">Sources des illustrations</a>
|
||||
<a href="/contact">Contact</a>
|
||||
</nav>
|
||||
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
<!-- généré avec orgmode-to-gemini-blog par Tykayn -->
|
||||
</html>
|
||||
|
|
@ -0,0 +1,133 @@
|
|||
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta property="og:image" content="https://tykayn.fr/wp-content/uploads/2016/12/rond.png">
|
||||
<meta property="og:locale" content="fr_FR">
|
||||
<meta property="og:description" content="Le vortex à chats - Illustrations, trucs en tout genre par Tykayn">
|
||||
<meta property="og:url" content="https://tykayn.fr">
|
||||
<meta property="og:site_name" content="">
|
||||
<link rel="alternate" type="application/rss+xml" title="Cipher Bliss » Flux" href="https://tykayn.fr/feed/">
|
||||
<link href="/style.css" rel="stylesheet">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title></title>
|
||||
<meta name="author" content="Tykayn">
|
||||
<link rel="alternate" type="application/rss+xml" title="Tykayn Blog » Flux"
|
||||
href="https://tykayn.fr/feed/">
|
||||
<meta property="og:title" content="Baptiste Lemoine">
|
||||
<meta property="og:locale" content="fr_FR">
|
||||
<!-- Description de la page -->
|
||||
<meta name="description" content="Baptiste Lemoine">
|
||||
<meta name="reply-to" content="contact@cipherbliss.com">
|
||||
<link rel="icon" type="image/png" href="https://tykayn.fr/wp-content/uploads/2016/12/rond.png">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="page" class="page__la_page">
|
||||
<header id="masthead" class="site-header">
|
||||
<div class="header-image" style="background: url(https://tykayn.fr/wp-content/themes/toivo-lite/images/header.jpg)">
|
||||
<a href="/">
|
||||
<img src="https://tykayn.fr/wp-content/uploads/2016/12/rond.png" class="site-icon img">
|
||||
</a>
|
||||
<h1 class="blog-title">Tykayn Blog</h1>
|
||||
<p class="blog-subtitle">Le vortex à chats - Illustrations, trucs en tout genre par Tykayn</p>
|
||||
<div class="template-header">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<nav class="navbar is-fixed-top is-dark" role="navigation" aria-label="main navigation">
|
||||
<div class="navbar-brand">
|
||||
<a class="navbar-item" href="https://tykayn.fr">
|
||||
Accueil
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div id="navbarBasicExample" class="navbar-menu">
|
||||
<div class="navbar-start">
|
||||
<a class="navbar-item" href="https://tykayn.fr">
|
||||
<img src="https://tykayn.fr/wp-content/uploads/2016/12/rond.png"
|
||||
class="img-fluid">
|
||||
</a>
|
||||
|
||||
<nav>
|
||||
<a href="/">Accueil</a>
|
||||
<a href="https://portfolio.cipherbliss.com">Portfolio</a>
|
||||
<a href="https://qzine.fr">Qzine</a>
|
||||
<a href="https://www.cipherbliss.com">Cipherbliss</a>
|
||||
<a href="/feed">Flux RSS</a>
|
||||
<a href="https://cloud.tykayn.fr/index.php/s/dessins_partage_blog">Sources des illustrations</a>
|
||||
<a href="/contact">Contact</a>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
<div class="navbar-end">
|
||||
<div class="navbar-item">
|
||||
<form role="search" method="get" class="search-form" action="/">
|
||||
<label>
|
||||
<input class="search-field" placeholder="Recherche" value="" name="s"
|
||||
type="search">
|
||||
</label>
|
||||
<input class="is-hidden search-submit" value="Rechercher" type="submit">
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
<main class="body-wrap boxed-container">
|
||||
<article class="content">
|
||||
|
||||
<header id="title-block-header">
|
||||
<h1 class="title">tykayn_blog</h1>
|
||||
</header>
|
||||
<p>2024-02-24</p>
|
||||
<h1 data-created="[2024-11-12 00:06:20]" id="kinktober-2023-1">kinktober
|
||||
2023</h1>
|
||||
<p>En 2023 je n’ai pas fait l’inktober mais le kinktober, manquant de
|
||||
temps disponible je n’en ai fait que 3 et ai eu le plaisir d’utiliser
|
||||
l’outil Liquify de Krita.</p>
|
||||
<p>Enjaillez!</p>
|
||||
<p><img
|
||||
src="https://tykayn.fr/wp-content/uploads/2024/02/2023-kinktober-first-girl-nue-splash.jpg" /></p>
|
||||
<p><img
|
||||
src="https://tykayn.fr/wp-content/uploads/2024/02/2023-kinktober_girl_2.jpg" /></p>
|
||||
<p><span class="spurious-link"
|
||||
target=" https://tykayn.fr/wp-content/uploads/2024/02/2023-kintober_miss_patounage.jpg"><em>
|
||||
https://tykayn.fr/wp-content/uploads/2024/02/2023-kintober_miss_patounage.jpg</em></span></p>
|
||||
|
||||
<p class="after-article">
|
||||
|
||||
</p>
|
||||
</article>
|
||||
</main>
|
||||
<footer class="site-footer has-top-divider">
|
||||
<div class="container">
|
||||
<div class="site-footer-inner">
|
||||
<div class="site-foot">
|
||||
|
||||
</div>
|
||||
<nav class="footer-nav">
|
||||
|
||||
<nav>
|
||||
<a href="/">Accueil</a>
|
||||
<a href="https://portfolio.cipherbliss.com">Portfolio</a>
|
||||
<a href="https://qzine.fr">Qzine</a>
|
||||
<a href="https://www.cipherbliss.com">Cipherbliss</a>
|
||||
<a href="/feed">Flux RSS</a>
|
||||
<a href="https://cloud.tykayn.fr/index.php/s/dessins_partage_blog">Sources des illustrations</a>
|
||||
<a href="/contact">Contact</a>
|
||||
</nav>
|
||||
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
<!-- généré avec orgmode-to-gemini-blog par Tykayn -->
|
||||
</html>
|
||||
|
|
@ -0,0 +1,133 @@
|
|||
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta property="og:image" content="https://tykayn.fr/wp-content/uploads/2016/12/rond.png">
|
||||
<meta property="og:locale" content="fr_FR">
|
||||
<meta property="og:description" content="Le vortex à chats - Illustrations, trucs en tout genre par Tykayn">
|
||||
<meta property="og:url" content="https://tykayn.fr">
|
||||
<meta property="og:site_name" content="">
|
||||
<link rel="alternate" type="application/rss+xml" title="Cipher Bliss » Flux" href="https://tykayn.fr/feed/">
|
||||
<link href="/style.css" rel="stylesheet">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title></title>
|
||||
<meta name="author" content="Tykayn">
|
||||
<link rel="alternate" type="application/rss+xml" title="Tykayn Blog » Flux"
|
||||
href="https://tykayn.fr/feed/">
|
||||
<meta property="og:title" content="Baptiste Lemoine">
|
||||
<meta property="og:locale" content="fr_FR">
|
||||
<!-- Description de la page -->
|
||||
<meta name="description" content="Baptiste Lemoine">
|
||||
<meta name="reply-to" content="contact@cipherbliss.com">
|
||||
<link rel="icon" type="image/png" href="https://tykayn.fr/wp-content/uploads/2016/12/rond.png">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="page" class="page__la_page">
|
||||
<header id="masthead" class="site-header">
|
||||
<div class="header-image" style="background: url(https://tykayn.fr/wp-content/themes/toivo-lite/images/header.jpg)">
|
||||
<a href="/">
|
||||
<img src="https://tykayn.fr/wp-content/uploads/2016/12/rond.png" class="site-icon img">
|
||||
</a>
|
||||
<h1 class="blog-title">Tykayn Blog</h1>
|
||||
<p class="blog-subtitle">Le vortex à chats - Illustrations, trucs en tout genre par Tykayn</p>
|
||||
<div class="template-header">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<nav class="navbar is-fixed-top is-dark" role="navigation" aria-label="main navigation">
|
||||
<div class="navbar-brand">
|
||||
<a class="navbar-item" href="https://tykayn.fr">
|
||||
Accueil
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div id="navbarBasicExample" class="navbar-menu">
|
||||
<div class="navbar-start">
|
||||
<a class="navbar-item" href="https://tykayn.fr">
|
||||
<img src="https://tykayn.fr/wp-content/uploads/2016/12/rond.png"
|
||||
class="img-fluid">
|
||||
</a>
|
||||
|
||||
<nav>
|
||||
<a href="/">Accueil</a>
|
||||
<a href="https://portfolio.cipherbliss.com">Portfolio</a>
|
||||
<a href="https://qzine.fr">Qzine</a>
|
||||
<a href="https://www.cipherbliss.com">Cipherbliss</a>
|
||||
<a href="/feed">Flux RSS</a>
|
||||
<a href="https://cloud.tykayn.fr/index.php/s/dessins_partage_blog">Sources des illustrations</a>
|
||||
<a href="/contact">Contact</a>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
<div class="navbar-end">
|
||||
<div class="navbar-item">
|
||||
<form role="search" method="get" class="search-form" action="/">
|
||||
<label>
|
||||
<input class="search-field" placeholder="Recherche" value="" name="s"
|
||||
type="search">
|
||||
</label>
|
||||
<input class="is-hidden search-submit" value="Rechercher" type="submit">
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
<main class="body-wrap boxed-container">
|
||||
<article class="content">
|
||||
|
||||
<header id="title-block-header">
|
||||
<h1 class="title">tykayn_blog</h1>
|
||||
</header>
|
||||
<p>2023-08-07</p>
|
||||
<h1 data-created="[2024-11-12 00:07:14]" id="calin-yuri-ah-1">calin yuri
|
||||
AH</h1>
|
||||
<p>Petit yuri printanier avec les personnages de l’histoire Ayominai
|
||||
Hitomi, <a
|
||||
href="https://tykayn.fr/2009/bd-one-shot-ayominai-hitomi/">une BD que
|
||||
j’ai fait en 2004</a>.</p>
|
||||
<p><img
|
||||
src="https://tykayn.fr/wp-content/uploads/2023/08/2023-04-14-AH-calin-tykayn-yuri.jpg" /></p>
|
||||
<p>Publié dans <a href="https://tykayn.fr/category/non-classe/">Non
|
||||
classé</a> Etiqueté <a
|
||||
href="https://tykayn.fr/tag/ayominai-hitomi/">ayominai hitomi</a>, <a
|
||||
href="https://tykayn.fr/tag/dessin/">dessin</a>, <a
|
||||
href="https://tykayn.fr/tag/yuri/">yuri</a></p>
|
||||
|
||||
<p class="after-article">
|
||||
|
||||
</p>
|
||||
</article>
|
||||
</main>
|
||||
<footer class="site-footer has-top-divider">
|
||||
<div class="container">
|
||||
<div class="site-footer-inner">
|
||||
<div class="site-foot">
|
||||
|
||||
</div>
|
||||
<nav class="footer-nav">
|
||||
|
||||
<nav>
|
||||
<a href="/">Accueil</a>
|
||||
<a href="https://portfolio.cipherbliss.com">Portfolio</a>
|
||||
<a href="https://qzine.fr">Qzine</a>
|
||||
<a href="https://www.cipherbliss.com">Cipherbliss</a>
|
||||
<a href="/feed">Flux RSS</a>
|
||||
<a href="https://cloud.tykayn.fr/index.php/s/dessins_partage_blog">Sources des illustrations</a>
|
||||
<a href="/contact">Contact</a>
|
||||
</nav>
|
||||
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
<!-- généré avec orgmode-to-gemini-blog par Tykayn -->
|
||||
</html>
|
||||
|
|
@ -0,0 +1,175 @@
|
|||
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta property="og:image" content="https://tykayn.fr/wp-content/uploads/2016/12/rond.png">
|
||||
<meta property="og:locale" content="fr_FR">
|
||||
<meta property="og:description" content="Le vortex à chats - Illustrations, trucs en tout genre par Tykayn">
|
||||
<meta property="og:url" content="https://tykayn.fr">
|
||||
<meta property="og:site_name" content="">
|
||||
<link rel="alternate" type="application/rss+xml" title="Cipher Bliss » Flux" href="https://tykayn.fr/feed/">
|
||||
<link href="/style.css" rel="stylesheet">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title></title>
|
||||
<meta name="author" content="Tykayn">
|
||||
<link rel="alternate" type="application/rss+xml" title="Tykayn Blog » Flux"
|
||||
href="https://tykayn.fr/feed/">
|
||||
<meta property="og:title" content="Baptiste Lemoine">
|
||||
<meta property="og:locale" content="fr_FR">
|
||||
<!-- Description de la page -->
|
||||
<meta name="description" content="Baptiste Lemoine">
|
||||
<meta name="reply-to" content="contact@cipherbliss.com">
|
||||
<link rel="icon" type="image/png" href="https://tykayn.fr/wp-content/uploads/2016/12/rond.png">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="page" class="page__la_page">
|
||||
<header id="masthead" class="site-header">
|
||||
<div class="header-image" style="background: url(https://tykayn.fr/wp-content/themes/toivo-lite/images/header.jpg)">
|
||||
<a href="/">
|
||||
<img src="https://tykayn.fr/wp-content/uploads/2016/12/rond.png" class="site-icon img">
|
||||
</a>
|
||||
<h1 class="blog-title">Tykayn Blog</h1>
|
||||
<p class="blog-subtitle">Le vortex à chats - Illustrations, trucs en tout genre par Tykayn</p>
|
||||
<div class="template-header">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<nav class="navbar is-fixed-top is-dark" role="navigation" aria-label="main navigation">
|
||||
<div class="navbar-brand">
|
||||
<a class="navbar-item" href="https://tykayn.fr">
|
||||
Accueil
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div id="navbarBasicExample" class="navbar-menu">
|
||||
<div class="navbar-start">
|
||||
<a class="navbar-item" href="https://tykayn.fr">
|
||||
<img src="https://tykayn.fr/wp-content/uploads/2016/12/rond.png"
|
||||
class="img-fluid">
|
||||
</a>
|
||||
|
||||
<nav>
|
||||
<a href="/">Accueil</a>
|
||||
<a href="https://portfolio.cipherbliss.com">Portfolio</a>
|
||||
<a href="https://qzine.fr">Qzine</a>
|
||||
<a href="https://www.cipherbliss.com">Cipherbliss</a>
|
||||
<a href="/feed">Flux RSS</a>
|
||||
<a href="https://cloud.tykayn.fr/index.php/s/dessins_partage_blog">Sources des illustrations</a>
|
||||
<a href="/contact">Contact</a>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
<div class="navbar-end">
|
||||
<div class="navbar-item">
|
||||
<form role="search" method="get" class="search-form" action="/">
|
||||
<label>
|
||||
<input class="search-field" placeholder="Recherche" value="" name="s"
|
||||
type="search">
|
||||
</label>
|
||||
<input class="is-hidden search-submit" value="Rechercher" type="submit">
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
<main class="body-wrap boxed-container">
|
||||
<article class="content">
|
||||
|
||||
<header id="title-block-header">
|
||||
<h1 class="title">tykayn_blog</h1>
|
||||
</header>
|
||||
<h1 data-created="[2024-11-12 00:08:09]"
|
||||
id="conseils-de-pratique-du-dessin-1">conseils de pratique du
|
||||
dessin</h1>
|
||||
<p>2023-03-06</p>
|
||||
<p><img
|
||||
src="https://tykayn.fr/wp-content/uploads/2020/11/20200923_155228.jpg" /></p>
|
||||
<p>conseils en <a
|
||||
href="https://mastodon.cipherbliss.com/tags/art">#art</a>:</p>
|
||||
<ul>
|
||||
<li>lancez vous dans des projets beaucoup moins gros, vraiment, des
|
||||
trucs minuscules, surtout au début de votre vie d’artiste.</li>
|
||||
<li>dessinez en prenant des modèles, des références, photos, sujets et
|
||||
objets. pourquoi pas du modèle vivant, rejoindre un cours d’art.</li>
|
||||
<li>ayez des objectifs à long terme et à court terme dans ce que vous
|
||||
souhaitez faire pour vous améliorer en tant qu’<a
|
||||
href="https://mastodon.cipherbliss.com/tags/artiste">#artiste</a></li>
|
||||
<li>apprenez à faire de la perspective, vraiment.</li>
|
||||
<li>ne dessinez pas que des bustes de personnages.</li>
|
||||
<li>ne soyez pas déçus si vous avez des retours constructifs qui ne vous
|
||||
mettent pas sur un piédestal. On a jamais fini de s’améliorer</li>
|
||||
<li>dessinez dans un carnet, vous n’avez pas besoin de publier tout ce
|
||||
que vous faites, laissez vous de la place pour essayer des choses hors
|
||||
des spots et de la scène publique</li>
|
||||
<li>allez donc prendre votre carnet et dessiner dehors, avec ou sans
|
||||
d’autres gens. Et regardez vraiment comment se pose la lumière sur les
|
||||
choses.</li>
|
||||
<li>faites des ombres nettes, puis adoucissez les après, regardez
|
||||
comment ça se passe sur les objets et sur des photos que vous avez
|
||||
prises afin de supprimer le biais de retouche des références du
|
||||
web.</li>
|
||||
<li>inspirez vous d’artbooks, mettez en à disposition sur votre bureau
|
||||
de sorte à ce qu’ils soient facile d’accès, ou dans le lieu où vous
|
||||
faites votre art.</li>
|
||||
<li>laissez des espaces vides sur votre bureau / atelier / espace de
|
||||
création artistique.</li>
|
||||
<li>foutez la paix à votre téléphone, vous pouvez le mettre dans une
|
||||
autre pièce et en moda avion pour gagner un maximum de concentration.
|
||||
vous n’avez vraiment pas besoin de répondre à cette personne qui dit des
|
||||
bêtises dans votre flux interminable d’actualités. ni maintenant ni
|
||||
jamais.</li>
|
||||
<li>faites d’autres activités plutôt que de rester uniquement à votre
|
||||
lieu de production. Planifiez des moments hors ligne. Faites une balade,
|
||||
des activités physiques, de l’exploration du monde.</li>
|
||||
<li>renseignez vous sur les syndicats qui existent. Ne restez pas seul
|
||||
et n’attendez pas de découvrir comment ça se passe quand on enrtre dans
|
||||
le bassin des requins, le monde professionel est somble et plein de
|
||||
terreurs. <a
|
||||
href="https://www.artistes-auteurs.fr/"><span>https://www.artistes-auteurs.fr</span></a>
|
||||
Rencontrez d’autres artistes et entraidez-vous.</li>
|
||||
<li>mettez la tête dans le chat.</li>
|
||||
</ul>
|
||||
<p>Publié dans <a href="https://tykayn.fr/category/non-classe/">Non
|
||||
classé</a> Etiqueté <a href="https://tykayn.fr/tag/art/">art</a>, <a
|
||||
href="https://tykayn.fr/tag/conseil/">conseil</a>, <a
|
||||
href="https://tykayn.fr/tag/dessin/">dessin</a>, <a
|
||||
href="https://tykayn.fr/tag/entraide/">entraide</a></p>
|
||||
|
||||
<p class="after-article">
|
||||
|
||||
</p>
|
||||
</article>
|
||||
</main>
|
||||
<footer class="site-footer has-top-divider">
|
||||
<div class="container">
|
||||
<div class="site-footer-inner">
|
||||
<div class="site-foot">
|
||||
|
||||
</div>
|
||||
<nav class="footer-nav">
|
||||
|
||||
<nav>
|
||||
<a href="/">Accueil</a>
|
||||
<a href="https://portfolio.cipherbliss.com">Portfolio</a>
|
||||
<a href="https://qzine.fr">Qzine</a>
|
||||
<a href="https://www.cipherbliss.com">Cipherbliss</a>
|
||||
<a href="/feed">Flux RSS</a>
|
||||
<a href="https://cloud.tykayn.fr/index.php/s/dessins_partage_blog">Sources des illustrations</a>
|
||||
<a href="/contact">Contact</a>
|
||||
</nav>
|
||||
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
<!-- généré avec orgmode-to-gemini-blog par Tykayn -->
|
||||
</html>
|
||||
|
|
@ -0,0 +1,140 @@
|
|||
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta property="og:image" content="https://tykayn.fr/wp-content/uploads/2016/12/rond.png">
|
||||
<meta property="og:locale" content="fr_FR">
|
||||
<meta property="og:description" content="Le vortex à chats - Illustrations, trucs en tout genre par Tykayn">
|
||||
<meta property="og:url" content="https://tykayn.fr">
|
||||
<meta property="og:site_name" content="">
|
||||
<link rel="alternate" type="application/rss+xml" title="Cipher Bliss » Flux" href="https://tykayn.fr/feed/">
|
||||
<link href="/style.css" rel="stylesheet">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title></title>
|
||||
<meta name="author" content="Tykayn">
|
||||
<link rel="alternate" type="application/rss+xml" title="Tykayn Blog » Flux"
|
||||
href="https://tykayn.fr/feed/">
|
||||
<meta property="og:title" content="Baptiste Lemoine">
|
||||
<meta property="og:locale" content="fr_FR">
|
||||
<!-- Description de la page -->
|
||||
<meta name="description" content="Baptiste Lemoine">
|
||||
<meta name="reply-to" content="contact@cipherbliss.com">
|
||||
<link rel="icon" type="image/png" href="https://tykayn.fr/wp-content/uploads/2016/12/rond.png">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="page" class="page__la_page">
|
||||
<header id="masthead" class="site-header">
|
||||
<div class="header-image" style="background: url(https://tykayn.fr/wp-content/themes/toivo-lite/images/header.jpg)">
|
||||
<a href="/">
|
||||
<img src="https://tykayn.fr/wp-content/uploads/2016/12/rond.png" class="site-icon img">
|
||||
</a>
|
||||
<h1 class="blog-title">Tykayn Blog</h1>
|
||||
<p class="blog-subtitle">Le vortex à chats - Illustrations, trucs en tout genre par Tykayn</p>
|
||||
<div class="template-header">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<nav class="navbar is-fixed-top is-dark" role="navigation" aria-label="main navigation">
|
||||
<div class="navbar-brand">
|
||||
<a class="navbar-item" href="https://tykayn.fr">
|
||||
Accueil
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div id="navbarBasicExample" class="navbar-menu">
|
||||
<div class="navbar-start">
|
||||
<a class="navbar-item" href="https://tykayn.fr">
|
||||
<img src="https://tykayn.fr/wp-content/uploads/2016/12/rond.png"
|
||||
class="img-fluid">
|
||||
</a>
|
||||
|
||||
<nav>
|
||||
<a href="/">Accueil</a>
|
||||
<a href="https://portfolio.cipherbliss.com">Portfolio</a>
|
||||
<a href="https://qzine.fr">Qzine</a>
|
||||
<a href="https://www.cipherbliss.com">Cipherbliss</a>
|
||||
<a href="/feed">Flux RSS</a>
|
||||
<a href="https://cloud.tykayn.fr/index.php/s/dessins_partage_blog">Sources des illustrations</a>
|
||||
<a href="/contact">Contact</a>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
<div class="navbar-end">
|
||||
<div class="navbar-item">
|
||||
<form role="search" method="get" class="search-form" action="/">
|
||||
<label>
|
||||
<input class="search-field" placeholder="Recherche" value="" name="s"
|
||||
type="search">
|
||||
</label>
|
||||
<input class="is-hidden search-submit" value="Rechercher" type="submit">
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
<main class="body-wrap boxed-container">
|
||||
<article class="content">
|
||||
|
||||
<header id="title-block-header">
|
||||
<h1 class="title">tykayn_blog</h1>
|
||||
</header>
|
||||
<p>2022-04-12</p>
|
||||
<h1 data-created="[2024-11-12 00:09:19]" id="essais-en-cabine-1">Essais
|
||||
en cabine</h1>
|
||||
<p>Jeux de mains pour essayages en cabine.</p>
|
||||
<p>Cette illustration est disponible dans le <a
|
||||
href="https://cloud.tykayn.fr/index.php/s/NjrPwGNHCGio49R">dossier de
|
||||
partage nextcloud du tk blog</a>. Vous pouvez y retrouver le fichier
|
||||
source pour mes illus. celle-ci a été faite avec <a
|
||||
href="https://krita.org/fr/">Krita</a>, un excellent logiciel libre de
|
||||
dessin numérique.</p>
|
||||
<p><img
|
||||
src="https://tykayn.fr/wp-content/uploads/2022/04/cabine_girl_001-1024x1024.jpg" /></p>
|
||||
<p><img
|
||||
src="https://tykayn.fr/wp-content/uploads/2022/04/cabine_girl_brouillon-1024x768.jpg" /></p>
|
||||
<p><img
|
||||
src="https://tykayn.fr/wp-content/uploads/2022/04/cabine_girl_002-1024x768.jpg" /></p>
|
||||
<p>Publié dans <a
|
||||
href="https://tykayn.fr/category/floodish/">Floodish</a> Etiqueté <a
|
||||
href="https://tykayn.fr/tag/boobies/">boobies</a>, <a
|
||||
href="https://tykayn.fr/tag/essayage/">essayage</a>, <a
|
||||
href="https://tykayn.fr/tag/patounage/">patounage</a></p>
|
||||
|
||||
<p class="after-article">
|
||||
|
||||
</p>
|
||||
</article>
|
||||
</main>
|
||||
<footer class="site-footer has-top-divider">
|
||||
<div class="container">
|
||||
<div class="site-footer-inner">
|
||||
<div class="site-foot">
|
||||
|
||||
</div>
|
||||
<nav class="footer-nav">
|
||||
|
||||
<nav>
|
||||
<a href="/">Accueil</a>
|
||||
<a href="https://portfolio.cipherbliss.com">Portfolio</a>
|
||||
<a href="https://qzine.fr">Qzine</a>
|
||||
<a href="https://www.cipherbliss.com">Cipherbliss</a>
|
||||
<a href="/feed">Flux RSS</a>
|
||||
<a href="https://cloud.tykayn.fr/index.php/s/dessins_partage_blog">Sources des illustrations</a>
|
||||
<a href="/contact">Contact</a>
|
||||
</nav>
|
||||
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
<!-- généré avec orgmode-to-gemini-blog par Tykayn -->
|
||||
</html>
|
||||
|
|
@ -0,0 +1,136 @@
|
|||
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta property="og:image" content="https://tykayn.fr/wp-content/uploads/2016/12/rond.png">
|
||||
<meta property="og:locale" content="fr_FR">
|
||||
<meta property="og:description" content="Le vortex à chats - Illustrations, trucs en tout genre par Tykayn">
|
||||
<meta property="og:url" content="https://tykayn.fr">
|
||||
<meta property="og:site_name" content="">
|
||||
<link rel="alternate" type="application/rss+xml" title="Cipher Bliss » Flux" href="https://tykayn.fr/feed/">
|
||||
<link href="/style.css" rel="stylesheet">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title></title>
|
||||
<meta name="author" content="Tykayn">
|
||||
<link rel="alternate" type="application/rss+xml" title="Tykayn Blog » Flux"
|
||||
href="https://tykayn.fr/feed/">
|
||||
<meta property="og:title" content="Baptiste Lemoine">
|
||||
<meta property="og:locale" content="fr_FR">
|
||||
<!-- Description de la page -->
|
||||
<meta name="description" content="Baptiste Lemoine">
|
||||
<meta name="reply-to" content="contact@cipherbliss.com">
|
||||
<link rel="icon" type="image/png" href="https://tykayn.fr/wp-content/uploads/2016/12/rond.png">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="page" class="page__la_page">
|
||||
<header id="masthead" class="site-header">
|
||||
<div class="header-image" style="background: url(https://tykayn.fr/wp-content/themes/toivo-lite/images/header.jpg)">
|
||||
<a href="/">
|
||||
<img src="https://tykayn.fr/wp-content/uploads/2016/12/rond.png" class="site-icon img">
|
||||
</a>
|
||||
<h1 class="blog-title">Tykayn Blog</h1>
|
||||
<p class="blog-subtitle">Le vortex à chats - Illustrations, trucs en tout genre par Tykayn</p>
|
||||
<div class="template-header">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<nav class="navbar is-fixed-top is-dark" role="navigation" aria-label="main navigation">
|
||||
<div class="navbar-brand">
|
||||
<a class="navbar-item" href="https://tykayn.fr">
|
||||
Accueil
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div id="navbarBasicExample" class="navbar-menu">
|
||||
<div class="navbar-start">
|
||||
<a class="navbar-item" href="https://tykayn.fr">
|
||||
<img src="https://tykayn.fr/wp-content/uploads/2016/12/rond.png"
|
||||
class="img-fluid">
|
||||
</a>
|
||||
|
||||
<nav>
|
||||
<a href="/">Accueil</a>
|
||||
<a href="https://portfolio.cipherbliss.com">Portfolio</a>
|
||||
<a href="https://qzine.fr">Qzine</a>
|
||||
<a href="https://www.cipherbliss.com">Cipherbliss</a>
|
||||
<a href="/feed">Flux RSS</a>
|
||||
<a href="https://cloud.tykayn.fr/index.php/s/dessins_partage_blog">Sources des illustrations</a>
|
||||
<a href="/contact">Contact</a>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
<div class="navbar-end">
|
||||
<div class="navbar-item">
|
||||
<form role="search" method="get" class="search-form" action="/">
|
||||
<label>
|
||||
<input class="search-field" placeholder="Recherche" value="" name="s"
|
||||
type="search">
|
||||
</label>
|
||||
<input class="is-hidden search-submit" value="Rechercher" type="submit">
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
<main class="body-wrap boxed-container">
|
||||
<article class="content">
|
||||
|
||||
<header id="title-block-header">
|
||||
<h1 class="title">tykayn_blog</h1>
|
||||
</header>
|
||||
<p>2022-04-12</p>
|
||||
<h1 data-created="[2024-11-12 00:10:19]"
|
||||
id="la-fougue-dans-les-rideaux-1">la fougue dans les rideaux</h1>
|
||||
<p>Et hop, de la fougue dans les rideaux ajoutée au <a
|
||||
href="https://cloud.tykayn.fr/index.php/s/NjrPwGNHCGio49R">dossier de
|
||||
partage nextcloud du tk blog</a>. Vous pouvez y retrouver le fichier
|
||||
source pour mes illus. celle-ci a été faite avec <a
|
||||
href="https://krita.org/fr/">Krita</a>, un excellent logiciel libre de
|
||||
dessin numérique.</p>
|
||||
<p><img
|
||||
src="https://web.archive.org/web/20240825225407im_/https://tykayn.fr/wp-content/uploads/2022/04/fougue_rideaux-scaled.jpg" /></p>
|
||||
<p>Voir sur Mastodon <a
|
||||
href="https://mastodon.cipherbliss.com/@tykayn/108115540654384055"><span>https://mastodon.cipherbliss.com/@tykayn/108115540654384055</span></a></p>
|
||||
<p>Publié dans <a href="https://tykayn.fr/category/non-classe/">Non
|
||||
classé</a> Etiqueté <a href="https://tykayn.fr/tag/couple/">couple</a>,
|
||||
<a href="https://tykayn.fr/tag/illustration/">illustration</a>, <a
|
||||
href="https://tykayn.fr/tag/nsfw/">nsfw</a></p>
|
||||
|
||||
<p class="after-article">
|
||||
|
||||
</p>
|
||||
</article>
|
||||
</main>
|
||||
<footer class="site-footer has-top-divider">
|
||||
<div class="container">
|
||||
<div class="site-footer-inner">
|
||||
<div class="site-foot">
|
||||
|
||||
</div>
|
||||
<nav class="footer-nav">
|
||||
|
||||
<nav>
|
||||
<a href="/">Accueil</a>
|
||||
<a href="https://portfolio.cipherbliss.com">Portfolio</a>
|
||||
<a href="https://qzine.fr">Qzine</a>
|
||||
<a href="https://www.cipherbliss.com">Cipherbliss</a>
|
||||
<a href="/feed">Flux RSS</a>
|
||||
<a href="https://cloud.tykayn.fr/index.php/s/dessins_partage_blog">Sources des illustrations</a>
|
||||
<a href="/contact">Contact</a>
|
||||
</nav>
|
||||
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
<!-- généré avec orgmode-to-gemini-blog par Tykayn -->
|
||||
</html>
|
||||
|
|
@ -0,0 +1,146 @@
|
|||
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta property="og:image" content="https://tykayn.fr/wp-content/uploads/2016/12/rond.png">
|
||||
<meta property="og:locale" content="fr_FR">
|
||||
<meta property="og:description" content="Le vortex à chats - Illustrations, trucs en tout genre par Tykayn">
|
||||
<meta property="og:url" content="https://tykayn.fr">
|
||||
<meta property="og:site_name" content="">
|
||||
<link rel="alternate" type="application/rss+xml" title="Cipher Bliss » Flux" href="https://tykayn.fr/feed/">
|
||||
<link href="/style.css" rel="stylesheet">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title></title>
|
||||
<meta name="author" content="Tykayn">
|
||||
<link rel="alternate" type="application/rss+xml" title="Tykayn Blog » Flux"
|
||||
href="https://tykayn.fr/feed/">
|
||||
<meta property="og:title" content="Baptiste Lemoine">
|
||||
<meta property="og:locale" content="fr_FR">
|
||||
<!-- Description de la page -->
|
||||
<meta name="description" content="Baptiste Lemoine">
|
||||
<meta name="reply-to" content="contact@cipherbliss.com">
|
||||
<link rel="icon" type="image/png" href="https://tykayn.fr/wp-content/uploads/2016/12/rond.png">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="page" class="page__la_page">
|
||||
<header id="masthead" class="site-header">
|
||||
<div class="header-image" style="background: url(https://tykayn.fr/wp-content/themes/toivo-lite/images/header.jpg)">
|
||||
<a href="/">
|
||||
<img src="https://tykayn.fr/wp-content/uploads/2016/12/rond.png" class="site-icon img">
|
||||
</a>
|
||||
<h1 class="blog-title">Tykayn Blog</h1>
|
||||
<p class="blog-subtitle">Le vortex à chats - Illustrations, trucs en tout genre par Tykayn</p>
|
||||
<div class="template-header">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<nav class="navbar is-fixed-top is-dark" role="navigation" aria-label="main navigation">
|
||||
<div class="navbar-brand">
|
||||
<a class="navbar-item" href="https://tykayn.fr">
|
||||
Accueil
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div id="navbarBasicExample" class="navbar-menu">
|
||||
<div class="navbar-start">
|
||||
<a class="navbar-item" href="https://tykayn.fr">
|
||||
<img src="https://tykayn.fr/wp-content/uploads/2016/12/rond.png"
|
||||
class="img-fluid">
|
||||
</a>
|
||||
|
||||
<nav>
|
||||
<a href="/">Accueil</a>
|
||||
<a href="https://portfolio.cipherbliss.com">Portfolio</a>
|
||||
<a href="https://qzine.fr">Qzine</a>
|
||||
<a href="https://www.cipherbliss.com">Cipherbliss</a>
|
||||
<a href="/feed">Flux RSS</a>
|
||||
<a href="https://cloud.tykayn.fr/index.php/s/dessins_partage_blog">Sources des illustrations</a>
|
||||
<a href="/contact">Contact</a>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
<div class="navbar-end">
|
||||
<div class="navbar-item">
|
||||
<form role="search" method="get" class="search-form" action="/">
|
||||
<label>
|
||||
<input class="search-field" placeholder="Recherche" value="" name="s"
|
||||
type="search">
|
||||
</label>
|
||||
<input class="is-hidden search-submit" value="Rechercher" type="submit">
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
<main class="body-wrap boxed-container">
|
||||
<article class="content">
|
||||
|
||||
<header id="title-block-header">
|
||||
<h1 class="title">tykayn_blog</h1>
|
||||
</header>
|
||||
<p>2022-01-24</p>
|
||||
<h1 data-created="[2024-11-12 00:11:19]"
|
||||
id="dossier-de-partage-des-sources-dillustrations-1">dossier de partage
|
||||
des sources d'illustrations</h1>
|
||||
<p>Si vous souhaitez avoir accès aux illustrations postées sur ce site
|
||||
et que j’ai réalisé, j’ai créé un dossier de partage nextcloud que je
|
||||
remplirai de temps à autre. Ces fichiers sont sous licence CC-BY</p>
|
||||
<p><a
|
||||
href="https://cloud.tykayn.fr/index.php/s/dessins_partage_blog"><span>https://cloud.tykayn.fr/index.php/s/dessins\_partage\_blog</span></a></p>
|
||||
<p>Vous pouvez aussi récupérer les contenus des fanzines plein de
|
||||
CULture de Qzine par ici: <a
|
||||
href="https://qzine.fr/telechargez-les-fanzines-qzine/"><span>https://qzine.fr/telechargez-les-fanzines-qzine/</span></a></p>
|
||||
<p>Le but de cette license étant de permettre beaucoup de choses, je
|
||||
vous encourage également à publier vos oeuvres avec une licence Creative
|
||||
Commons qui va bien, <a href="https://creativecommons.org/choose/">vous
|
||||
avez le choix</a>.</p>
|
||||
<blockquote>
|
||||
<p><a href="http://creativecommons.org/licenses/by/4.0/"><img
|
||||
src="https://web.archive.org/web/20240825225407im_/https://i.creativecommons.org/l/by/4.0/80x15.png" /></a>
|
||||
Ce(tte) œuvre est mise à disposition selon les termes de la <a
|
||||
href="http://creativecommons.org/licenses/by/4.0/">Licence Creative
|
||||
Commons Attribution 4.0 International</a>.</p>
|
||||
</blockquote>
|
||||
<p>Bonne réutilisation o/</p>
|
||||
<p>Publié dans <a href="https://tykayn.fr/category/non-classe/">Non
|
||||
classé</a> Etiqueté <a
|
||||
href="https://tykayn.fr/tag/reutilisation/">réutilisation</a></p>
|
||||
|
||||
<p class="after-article">
|
||||
|
||||
</p>
|
||||
</article>
|
||||
</main>
|
||||
<footer class="site-footer has-top-divider">
|
||||
<div class="container">
|
||||
<div class="site-footer-inner">
|
||||
<div class="site-foot">
|
||||
|
||||
</div>
|
||||
<nav class="footer-nav">
|
||||
|
||||
<nav>
|
||||
<a href="/">Accueil</a>
|
||||
<a href="https://portfolio.cipherbliss.com">Portfolio</a>
|
||||
<a href="https://qzine.fr">Qzine</a>
|
||||
<a href="https://www.cipherbliss.com">Cipherbliss</a>
|
||||
<a href="/feed">Flux RSS</a>
|
||||
<a href="https://cloud.tykayn.fr/index.php/s/dessins_partage_blog">Sources des illustrations</a>
|
||||
<a href="/contact">Contact</a>
|
||||
</nav>
|
||||
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
<!-- généré avec orgmode-to-gemini-blog par Tykayn -->
|
||||
</html>
|
||||
|
|
@ -0,0 +1,244 @@
|
|||
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta property="og:image" content="https://tykayn.fr/wp-content/uploads/2016/12/rond.png">
|
||||
<meta property="og:locale" content="fr_FR">
|
||||
<meta property="og:description" content="Le vortex à chats - Illustrations, trucs en tout genre par Tykayn">
|
||||
<meta property="og:url" content="https://tykayn.fr">
|
||||
<meta property="og:site_name" content="">
|
||||
<link rel="alternate" type="application/rss+xml" title="Cipher Bliss » Flux" href="https://tykayn.fr/feed/">
|
||||
<link href="/style.css" rel="stylesheet">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title></title>
|
||||
<meta name="author" content="Tykayn">
|
||||
<link rel="alternate" type="application/rss+xml" title="Tykayn Blog » Flux"
|
||||
href="https://tykayn.fr/feed/">
|
||||
<meta property="og:title" content="Baptiste Lemoine">
|
||||
<meta property="og:locale" content="fr_FR">
|
||||
<!-- Description de la page -->
|
||||
<meta name="description" content="Baptiste Lemoine">
|
||||
<meta name="reply-to" content="contact@cipherbliss.com">
|
||||
<link rel="icon" type="image/png" href="https://tykayn.fr/wp-content/uploads/2016/12/rond.png">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="page" class="page__la_page">
|
||||
<header id="masthead" class="site-header">
|
||||
<div class="header-image" style="background: url(https://tykayn.fr/wp-content/themes/toivo-lite/images/header.jpg)">
|
||||
<a href="/">
|
||||
<img src="https://tykayn.fr/wp-content/uploads/2016/12/rond.png" class="site-icon img">
|
||||
</a>
|
||||
<h1 class="blog-title">Tykayn Blog</h1>
|
||||
<p class="blog-subtitle">Le vortex à chats - Illustrations, trucs en tout genre par Tykayn</p>
|
||||
<div class="template-header">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<nav class="navbar is-fixed-top is-dark" role="navigation" aria-label="main navigation">
|
||||
<div class="navbar-brand">
|
||||
<a class="navbar-item" href="https://tykayn.fr">
|
||||
Accueil
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div id="navbarBasicExample" class="navbar-menu">
|
||||
<div class="navbar-start">
|
||||
<a class="navbar-item" href="https://tykayn.fr">
|
||||
<img src="https://tykayn.fr/wp-content/uploads/2016/12/rond.png"
|
||||
class="img-fluid">
|
||||
</a>
|
||||
|
||||
<nav>
|
||||
<a href="/">Accueil</a>
|
||||
<a href="https://portfolio.cipherbliss.com">Portfolio</a>
|
||||
<a href="https://qzine.fr">Qzine</a>
|
||||
<a href="https://www.cipherbliss.com">Cipherbliss</a>
|
||||
<a href="/feed">Flux RSS</a>
|
||||
<a href="https://cloud.tykayn.fr/index.php/s/dessins_partage_blog">Sources des illustrations</a>
|
||||
<a href="/contact">Contact</a>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
<div class="navbar-end">
|
||||
<div class="navbar-item">
|
||||
<form role="search" method="get" class="search-form" action="/">
|
||||
<label>
|
||||
<input class="search-field" placeholder="Recherche" value="" name="s"
|
||||
type="search">
|
||||
</label>
|
||||
<input class="is-hidden search-submit" value="Rechercher" type="submit">
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
<main class="body-wrap boxed-container">
|
||||
<article class="content">
|
||||
|
||||
<header id="title-block-header">
|
||||
<h1 class="title">tykayn_blog</h1>
|
||||
</header>
|
||||
<p>202-07-05</p>
|
||||
<h1 data-created="[2024-11-12 00:12:45]"
|
||||
id="comment-évaluer-la-ligne-politique-dun-média-1">comment évaluer la
|
||||
ligne politique d'un média?</h1>
|
||||
<p><a
|
||||
href="https://web.archive.org/web/20240719145122/https://tykayn.fr/2021/comment-evaluer-la-ligne-politique-dun-media/">5
|
||||
juillet 2021</a></p>
|
||||
<p><a
|
||||
href="https://tykayn.fr/wp-content/uploads/2020/11/image1.png">https://tykayn.fr/wp-content/uploads/2020/11/image1.png</a></p>
|
||||
<p>deux bons moyens de savoir de quel bord #politique se situe un média
|
||||
ou une personne qui reporte des #médias : – examinez ses tendances en
|
||||
mesurant de quelle type de personne elle rapporte les thèses et dans
|
||||
quelle proportion de temps, comme le fait #acrimed . Ce média donne-t-il
|
||||
plutôt la parole à des présumé coupable ou présumé victimes dans une
|
||||
affaire de scandale,, plutôt du côté des exploitants ou des exploités,
|
||||
de la puissance ou de la naissance modeste généralement. – examinez un
|
||||
truc que personne ne pense examiner: les rapports d’erratum et
|
||||
explications de décisions de modération.</p>
|
||||
<p>Savoir d’où vient l’argent et quelle est la hiérarchie de commande,
|
||||
ou de quelles familles provient le pognon est aussi un indicateur, mais
|
||||
ça ne vous emmènera pas loin. Regarder les couleurs dominantes d’un
|
||||
journal peut être trompeur (voir aussi greenwashing)</p>
|
||||
<p>Il est très important de noter si un média ou une personne est
|
||||
incapable de se remettre en cause, ou de reconnaître ses erreurs et les
|
||||
corriger, ou de tirer du sens de ses erreurs passées.</p>
|
||||
<p>Si vous n’avez aucune idée de comment estimer la fiabilité d’une
|
||||
affirmation, ou à évaluer la parole d’un expert, vous êtes très
|
||||
fortement enclins à propager des choses erronées, accentuant du
|
||||
harcèlement, voire creuser votre propre tombe ou embarquer vos proches
|
||||
dans des choses vraiment pas très sympa. Par exemple, des dérives
|
||||
sectaires, des commerces pyramidaux, des arnaques en tout genre, mais
|
||||
aussi du trafic d’humains, ou de la destruction de l’autonomie des
|
||||
personnes, de l’accès au soins et des abus de faiblesses, avec ou sans
|
||||
dogmes religieux ou néolibéraux.</p>
|
||||
<p>Donc méfiance avec son propre pouvoir de reproduction des idées et
|
||||
avec la maîtrise de votre attention, particulièrement si vous passez du
|
||||
temps à réagir à des choses qui vous énervent, en ligne ou en live.</p>
|
||||
<p>Ménagez vous, essayez de vraiment comprendre les différentes
|
||||
composantes d’un sujet, prenez soin de ne pas réagir systématiquement,
|
||||
de prendre du recul avec un sujet, de comprendre qui vous influence sur
|
||||
ce sujet et quelles sont les limites de votre autonomie critique.</p>
|
||||
<p>Et fuyez les personnes qui trouvent nuisible le simple exercice de la
|
||||
remise en question, de la réflexion, de l’examen mesuré du réel, ou qui
|
||||
veulent vous faire croire que n’importe quelle proposition est aussi
|
||||
valable que n’importe quelle autre. Questionnez votre notion de
|
||||
l’intuition et du « goût du vrai » comme dirait l’autre.</p>
|
||||
<p>Vous DEVEZ pouvoir développer votre propre réflexion pour tous les
|
||||
domaines et pouvoir le faire hors de la place publique, sans qui que ce
|
||||
soit pour vous interdire de vous renseigner. Et vous devez comprendre
|
||||
que croire un truc ne suffit pas à le rendre vrai dans le monde réel. Si
|
||||
vous avez été pendant longtemps dans une position vous forçant à croire
|
||||
des choses qui sont en réalité fausses, en partie ou totalement, ou à
|
||||
mille lieues du monde réel, vous DEVEZ aussi pouvoir changer d’avis, le
|
||||
reconnaître, formuler des divergences d’opinions. Tout le monde peut se
|
||||
tromper, et tout le fait le fait régulièrement sans le savoir, et c’est
|
||||
bien normal.</p>
|
||||
<p>N’oubliez pas d’attaquer les arguments pour ce qu’ils sont, et pas ce
|
||||
dont ils ont l’air, ou la personne qui les porte. Vous n’êtes pas non
|
||||
plus obligé d’attaquer un sujet, encore moins sur une plateforme ne vous
|
||||
laissant que 10 secondes de parole. Certaines choses ne peuvent tout
|
||||
simplement pas être communiquées dans leur résumé. E = mc2 ou « on peut
|
||||
rire de tout mais pas avec tout le monde » ça semble facile à dire
|
||||
rapidement, mais sans la version longue on n’y verra pas du tout le même
|
||||
sens. Gagnez votre temps à l’employer dans vos combats de façon utile.
|
||||
Commence par examiner ce qui est utile pour vous, pour vos causes, et
|
||||
quelles leçons tirer dans quelle proportion. L’intuition est importante,
|
||||
mais elle n’est pas suffisante à examiner la qualité d’une information.
|
||||
Le bon sens ne suffit pas.</p>
|
||||
<p>Prenez un sujet que vous aimez défendre en utilisant un argument que
|
||||
vous utilisez souvent. Essayez de tester sa robustesse en cherchant les
|
||||
failles de ce qui le soutient, plutôt qu’en touchant le moins possible à
|
||||
ce qui pourrait vous faire changer d’avis. N’ayez pas peur de le faire,
|
||||
si vous trouvez que ce n’est pas solide, vous devriez probablement
|
||||
arrêter de l’utiliser. Vous pourriez aussi apprendre en quoi la base est
|
||||
bonne et vous sentir davantage en confiance à l’utiliser, et à pouvoir
|
||||
développer ses fondations si besoin. Indice important « machin qui est
|
||||
un type vachement charismatique l’a dit donc ça doit être vrai » n’est
|
||||
pas suffisant pour dire qu’un énoncé est robustement établi.</p>
|
||||
<p>Mais si en apprenant que vous argumentez des choses fausses et que
|
||||
même si vous mentez vous souhaiter toujours affirmer ces choses fausses,
|
||||
demandez vous sérieusement si vous servez une bonne cause en mentant à
|
||||
tout le monde, tout le temps. Vraiment. Infantiliser tout le monde n’est
|
||||
pas, à mon avis, une bonne chose, même si vous êtes persuadés que les
|
||||
choses pressent ou qu’elles sont plus importantes que tout. Je ne vois
|
||||
vraiment pas comment ça pourrait bien se passer sur le temps long.</p>
|
||||
<p>Nous n’avons pas un temps infini, choisissons nos combats. Prenons le
|
||||
temps de vivre autre chose, de construire aussi en dehors de ces
|
||||
apparences de soldat au service d’une cause, prenons le temps de vivre
|
||||
des chouettes choses si on le peut.</p>
|
||||
<p>Pour d’autres, il est hors de question de faire autre chose de son
|
||||
temps que « se vider la tête ». Ce qui revient à abandonner tout
|
||||
contrôle dans sa vie, à toute compréhension, à tout aspect acteur de sa
|
||||
propre vie, et à renoncer à toute autonomie au sens large. Ce qui est à
|
||||
mon sens un énorme gâchis si c’est un comportement constant. Y’a une
|
||||
notion pour ça parait-il, « la fatigue d’être soi » et donc de devoir
|
||||
s’opposer plus ou moins souvent à toute contrainte de domination. ça
|
||||
demande un effort de temps à autre si on a eu du bol à la naissance, ou
|
||||
à chaque instant pour les gens ayant eu le moins de chance.</p>
|
||||
<p>Je vous invite d’ailleurs à remettre en question cette façon
|
||||
d’estimer la ligne politique d’un média.</p>
|
||||
<p>Et bonnes vacances pour les gens qui en ont.</p>
|
||||
<p>Publié dans <a
|
||||
href="https://web.archive.org/web/20240719145122/https://tykayn.fr/category/non-classe/">Non
|
||||
classé</a> Etiqueté <a
|
||||
href="https://web.archive.org/web/20240719145122/https://tykayn.fr/tag/critique/">critique</a>,
|
||||
<a
|
||||
href="https://web.archive.org/web/20240719145122/https://tykayn.fr/tag/dr-house/">dr
|
||||
house</a>, <a
|
||||
href="https://web.archive.org/web/20240719145122/https://tykayn.fr/tag/esprit-critique/">esprit
|
||||
critique</a>, <a
|
||||
href="https://web.archive.org/web/20240719145122/https://tykayn.fr/tag/media/">média</a>,
|
||||
<a
|
||||
href="https://web.archive.org/web/20240719145122/https://tykayn.fr/tag/mensonge/">mensonge</a>,
|
||||
<a
|
||||
href="https://web.archive.org/web/20240719145122/https://tykayn.fr/tag/pas-vrai-nouvelle/">pas
|
||||
vrai nouvelle</a>, <a
|
||||
href="https://web.archive.org/web/20240719145122/https://tykayn.fr/tag/politique/">politique</a>,
|
||||
<a
|
||||
href="https://web.archive.org/web/20240719145122/https://tykayn.fr/tag/propagande/">propagande</a>,
|
||||
<a
|
||||
href="https://web.archive.org/web/20240719145122/https://tykayn.fr/tag/pseudo-science/">pseudo
|
||||
science</a>, <a
|
||||
href="https://web.archive.org/web/20240719145122/https://tykayn.fr/tag/sectes/">sectes</a>,
|
||||
<a
|
||||
href="https://web.archive.org/web/20240719145122/https://tykayn.fr/tag/verite/">vérité</a></p>
|
||||
|
||||
<p class="after-article">
|
||||
|
||||
</p>
|
||||
</article>
|
||||
</main>
|
||||
<footer class="site-footer has-top-divider">
|
||||
<div class="container">
|
||||
<div class="site-footer-inner">
|
||||
<div class="site-foot">
|
||||
|
||||
</div>
|
||||
<nav class="footer-nav">
|
||||
|
||||
<nav>
|
||||
<a href="/">Accueil</a>
|
||||
<a href="https://portfolio.cipherbliss.com">Portfolio</a>
|
||||
<a href="https://qzine.fr">Qzine</a>
|
||||
<a href="https://www.cipherbliss.com">Cipherbliss</a>
|
||||
<a href="/feed">Flux RSS</a>
|
||||
<a href="https://cloud.tykayn.fr/index.php/s/dessins_partage_blog">Sources des illustrations</a>
|
||||
<a href="/contact">Contact</a>
|
||||
</nav>
|
||||
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
<!-- généré avec orgmode-to-gemini-blog par Tykayn -->
|
||||
</html>
|
||||
|
|
@ -1,174 +1,121 @@
|
|||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="generator" content="pandoc" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
|
||||
<title>tykayn_blog</title>
|
||||
<style>
|
||||
html {
|
||||
color: #1a1a1a;
|
||||
background-color: #fdfdfd;
|
||||
}
|
||||
body {
|
||||
margin: 0 auto;
|
||||
max-width: 36em;
|
||||
padding-left: 50px;
|
||||
padding-right: 50px;
|
||||
padding-top: 50px;
|
||||
padding-bottom: 50px;
|
||||
hyphens: auto;
|
||||
overflow-wrap: break-word;
|
||||
text-rendering: optimizeLegibility;
|
||||
font-kerning: normal;
|
||||
}
|
||||
@media (max-width: 600px) {
|
||||
body {
|
||||
font-size: 0.9em;
|
||||
padding: 12px;
|
||||
}
|
||||
h1 {
|
||||
font-size: 1.8em;
|
||||
}
|
||||
}
|
||||
@media print {
|
||||
html {
|
||||
background-color: white;
|
||||
}
|
||||
body {
|
||||
background-color: transparent;
|
||||
color: black;
|
||||
font-size: 12pt;
|
||||
}
|
||||
p, h2, h3 {
|
||||
orphans: 3;
|
||||
widows: 3;
|
||||
}
|
||||
h2, h3, h4 {
|
||||
page-break-after: avoid;
|
||||
}
|
||||
}
|
||||
p {
|
||||
margin: 1em 0;
|
||||
}
|
||||
a {
|
||||
color: #1a1a1a;
|
||||
}
|
||||
a:visited {
|
||||
color: #1a1a1a;
|
||||
}
|
||||
img {
|
||||
max-width: 100%;
|
||||
}
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
margin-top: 1.4em;
|
||||
}
|
||||
h5, h6 {
|
||||
font-size: 1em;
|
||||
font-style: italic;
|
||||
}
|
||||
h6 {
|
||||
font-weight: normal;
|
||||
}
|
||||
ol, ul {
|
||||
padding-left: 1.7em;
|
||||
margin-top: 1em;
|
||||
}
|
||||
li > ol, li > ul {
|
||||
margin-top: 0;
|
||||
}
|
||||
blockquote {
|
||||
margin: 1em 0 1em 1.7em;
|
||||
padding-left: 1em;
|
||||
border-left: 2px solid #e6e6e6;
|
||||
color: #606060;
|
||||
}
|
||||
code {
|
||||
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
|
||||
font-size: 85%;
|
||||
margin: 0;
|
||||
hyphens: manual;
|
||||
}
|
||||
pre {
|
||||
margin: 1em 0;
|
||||
overflow: auto;
|
||||
}
|
||||
pre code {
|
||||
padding: 0;
|
||||
overflow: visible;
|
||||
overflow-wrap: normal;
|
||||
}
|
||||
.sourceCode {
|
||||
background-color: transparent;
|
||||
overflow: visible;
|
||||
}
|
||||
hr {
|
||||
background-color: #1a1a1a;
|
||||
border: none;
|
||||
height: 1px;
|
||||
margin: 1em 0;
|
||||
}
|
||||
table {
|
||||
margin: 1em 0;
|
||||
border-collapse: collapse;
|
||||
width: 100%;
|
||||
overflow-x: auto;
|
||||
display: block;
|
||||
font-variant-numeric: lining-nums tabular-nums;
|
||||
}
|
||||
table caption {
|
||||
margin-bottom: 0.75em;
|
||||
}
|
||||
tbody {
|
||||
margin-top: 0.5em;
|
||||
border-top: 1px solid #1a1a1a;
|
||||
border-bottom: 1px solid #1a1a1a;
|
||||
}
|
||||
th {
|
||||
border-top: 1px solid #1a1a1a;
|
||||
padding: 0.25em 0.5em 0.25em 0.5em;
|
||||
}
|
||||
td {
|
||||
padding: 0.125em 0.5em 0.25em 0.5em;
|
||||
}
|
||||
header {
|
||||
margin-bottom: 4em;
|
||||
text-align: center;
|
||||
}
|
||||
#TOC li {
|
||||
list-style: none;
|
||||
}
|
||||
#TOC ul {
|
||||
padding-left: 1.3em;
|
||||
}
|
||||
#TOC > ul {
|
||||
padding-left: 0;
|
||||
}
|
||||
#TOC a:not(:hover) {
|
||||
text-decoration: none;
|
||||
}
|
||||
code{white-space: pre-wrap;}
|
||||
span.smallcaps{font-variant: small-caps;}
|
||||
div.columns{display: flex; gap: min(4vw, 1.5em);}
|
||||
div.column{flex: auto; overflow-x: auto;}
|
||||
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
|
||||
/* The extra [class] is a hack that increases specificity enough to
|
||||
override a similar rule in reveal.js */
|
||||
ul.task-list[class]{list-style: none;}
|
||||
ul.task-list li input[type="checkbox"] {
|
||||
font-size: inherit;
|
||||
width: 0.8em;
|
||||
margin: 0 0.8em 0.2em -1.6em;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta property="og:image" content="https://tykayn.fr/wp-content/uploads/2016/12/rond.png">
|
||||
<meta property="og:locale" content="fr_FR">
|
||||
<meta property="og:description" content="Le vortex à chats - Illustrations, trucs en tout genre par Tykayn">
|
||||
<meta property="og:url" content="https://tykayn.fr">
|
||||
<meta property="og:site_name" content="">
|
||||
<link rel="alternate" type="application/rss+xml" title="Cipher Bliss » Flux" href="https://tykayn.fr/feed/">
|
||||
<link href="/style.css" rel="stylesheet">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title></title>
|
||||
<meta name="author" content="Tykayn">
|
||||
<link rel="alternate" type="application/rss+xml" title="Tykayn Blog » Flux"
|
||||
href="https://tykayn.fr/feed/">
|
||||
<meta property="og:title" content="Baptiste Lemoine">
|
||||
<meta property="og:locale" content="fr_FR">
|
||||
<!-- Description de la page -->
|
||||
<meta name="description" content="Baptiste Lemoine">
|
||||
<meta name="reply-to" content="contact@cipherbliss.com">
|
||||
<link rel="icon" type="image/png" href="https://tykayn.fr/wp-content/uploads/2016/12/rond.png">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="page" class="page__la_page">
|
||||
<header id="masthead" class="site-header">
|
||||
<div class="header-image" style="background: url(https://tykayn.fr/wp-content/themes/toivo-lite/images/header.jpg)">
|
||||
<a href="/">
|
||||
<img src="https://tykayn.fr/wp-content/uploads/2016/12/rond.png" class="site-icon img">
|
||||
</a>
|
||||
<h1 class="blog-title">Tykayn Blog</h1>
|
||||
<p class="blog-subtitle">Le vortex à chats - Illustrations, trucs en tout genre par Tykayn</p>
|
||||
<div class="template-header">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<nav class="navbar is-fixed-top is-dark" role="navigation" aria-label="main navigation">
|
||||
<div class="navbar-brand">
|
||||
<a class="navbar-item" href="https://tykayn.fr">
|
||||
Accueil
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div id="navbarBasicExample" class="navbar-menu">
|
||||
<div class="navbar-start">
|
||||
<a class="navbar-item" href="https://tykayn.fr">
|
||||
<img src="https://tykayn.fr/wp-content/uploads/2016/12/rond.png"
|
||||
class="img-fluid">
|
||||
</a>
|
||||
|
||||
<nav>
|
||||
<a href="/">Accueil</a>
|
||||
<a href="https://portfolio.cipherbliss.com">Portfolio</a>
|
||||
<a href="https://qzine.fr">Qzine</a>
|
||||
<a href="https://www.cipherbliss.com">Cipherbliss</a>
|
||||
<a href="/feed">Flux RSS</a>
|
||||
<a href="https://cloud.tykayn.fr/index.php/s/dessins_partage_blog">Sources des illustrations</a>
|
||||
<a href="/contact">Contact</a>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
<div class="navbar-end">
|
||||
<div class="navbar-item">
|
||||
<form role="search" method="get" class="search-form" action="/">
|
||||
<label>
|
||||
<input class="search-field" placeholder="Recherche" value="" name="s"
|
||||
type="search">
|
||||
</label>
|
||||
<input class="is-hidden search-submit" value="Rechercher" type="submit">
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
<main class="body-wrap boxed-container">
|
||||
<article class="content">
|
||||
|
||||
<header id="title-block-header">
|
||||
<h1 class="title">tykayn_blog</h1>
|
||||
</header>
|
||||
<h1 id="à-propos">à propos</h1>
|
||||
<p>à propos de ce site</p>
|
||||
</body>
|
||||
|
||||
<p class="after-article">
|
||||
|
||||
</p>
|
||||
</article>
|
||||
</main>
|
||||
<footer class="site-footer has-top-divider">
|
||||
<div class="container">
|
||||
<div class="site-footer-inner">
|
||||
<div class="site-foot">
|
||||
|
||||
</div>
|
||||
<nav class="footer-nav">
|
||||
|
||||
<nav>
|
||||
<a href="/">Accueil</a>
|
||||
<a href="https://portfolio.cipherbliss.com">Portfolio</a>
|
||||
<a href="https://qzine.fr">Qzine</a>
|
||||
<a href="https://www.cipherbliss.com">Cipherbliss</a>
|
||||
<a href="/feed">Flux RSS</a>
|
||||
<a href="https://cloud.tykayn.fr/index.php/s/dessins_partage_blog">Sources des illustrations</a>
|
||||
<a href="/contact">Contact</a>
|
||||
</nav>
|
||||
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
<!-- généré avec orgmode-to-gemini-blog par Tykayn -->
|
||||
</html>
|
||||
|
||||
|
|
|
@ -1,174 +1,121 @@
|
|||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="generator" content="pandoc" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
|
||||
<title>tykayn_blog</title>
|
||||
<style>
|
||||
html {
|
||||
color: #1a1a1a;
|
||||
background-color: #fdfdfd;
|
||||
}
|
||||
body {
|
||||
margin: 0 auto;
|
||||
max-width: 36em;
|
||||
padding-left: 50px;
|
||||
padding-right: 50px;
|
||||
padding-top: 50px;
|
||||
padding-bottom: 50px;
|
||||
hyphens: auto;
|
||||
overflow-wrap: break-word;
|
||||
text-rendering: optimizeLegibility;
|
||||
font-kerning: normal;
|
||||
}
|
||||
@media (max-width: 600px) {
|
||||
body {
|
||||
font-size: 0.9em;
|
||||
padding: 12px;
|
||||
}
|
||||
h1 {
|
||||
font-size: 1.8em;
|
||||
}
|
||||
}
|
||||
@media print {
|
||||
html {
|
||||
background-color: white;
|
||||
}
|
||||
body {
|
||||
background-color: transparent;
|
||||
color: black;
|
||||
font-size: 12pt;
|
||||
}
|
||||
p, h2, h3 {
|
||||
orphans: 3;
|
||||
widows: 3;
|
||||
}
|
||||
h2, h3, h4 {
|
||||
page-break-after: avoid;
|
||||
}
|
||||
}
|
||||
p {
|
||||
margin: 1em 0;
|
||||
}
|
||||
a {
|
||||
color: #1a1a1a;
|
||||
}
|
||||
a:visited {
|
||||
color: #1a1a1a;
|
||||
}
|
||||
img {
|
||||
max-width: 100%;
|
||||
}
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
margin-top: 1.4em;
|
||||
}
|
||||
h5, h6 {
|
||||
font-size: 1em;
|
||||
font-style: italic;
|
||||
}
|
||||
h6 {
|
||||
font-weight: normal;
|
||||
}
|
||||
ol, ul {
|
||||
padding-left: 1.7em;
|
||||
margin-top: 1em;
|
||||
}
|
||||
li > ol, li > ul {
|
||||
margin-top: 0;
|
||||
}
|
||||
blockquote {
|
||||
margin: 1em 0 1em 1.7em;
|
||||
padding-left: 1em;
|
||||
border-left: 2px solid #e6e6e6;
|
||||
color: #606060;
|
||||
}
|
||||
code {
|
||||
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
|
||||
font-size: 85%;
|
||||
margin: 0;
|
||||
hyphens: manual;
|
||||
}
|
||||
pre {
|
||||
margin: 1em 0;
|
||||
overflow: auto;
|
||||
}
|
||||
pre code {
|
||||
padding: 0;
|
||||
overflow: visible;
|
||||
overflow-wrap: normal;
|
||||
}
|
||||
.sourceCode {
|
||||
background-color: transparent;
|
||||
overflow: visible;
|
||||
}
|
||||
hr {
|
||||
background-color: #1a1a1a;
|
||||
border: none;
|
||||
height: 1px;
|
||||
margin: 1em 0;
|
||||
}
|
||||
table {
|
||||
margin: 1em 0;
|
||||
border-collapse: collapse;
|
||||
width: 100%;
|
||||
overflow-x: auto;
|
||||
display: block;
|
||||
font-variant-numeric: lining-nums tabular-nums;
|
||||
}
|
||||
table caption {
|
||||
margin-bottom: 0.75em;
|
||||
}
|
||||
tbody {
|
||||
margin-top: 0.5em;
|
||||
border-top: 1px solid #1a1a1a;
|
||||
border-bottom: 1px solid #1a1a1a;
|
||||
}
|
||||
th {
|
||||
border-top: 1px solid #1a1a1a;
|
||||
padding: 0.25em 0.5em 0.25em 0.5em;
|
||||
}
|
||||
td {
|
||||
padding: 0.125em 0.5em 0.25em 0.5em;
|
||||
}
|
||||
header {
|
||||
margin-bottom: 4em;
|
||||
text-align: center;
|
||||
}
|
||||
#TOC li {
|
||||
list-style: none;
|
||||
}
|
||||
#TOC ul {
|
||||
padding-left: 1.3em;
|
||||
}
|
||||
#TOC > ul {
|
||||
padding-left: 0;
|
||||
}
|
||||
#TOC a:not(:hover) {
|
||||
text-decoration: none;
|
||||
}
|
||||
code{white-space: pre-wrap;}
|
||||
span.smallcaps{font-variant: small-caps;}
|
||||
div.columns{display: flex; gap: min(4vw, 1.5em);}
|
||||
div.column{flex: auto; overflow-x: auto;}
|
||||
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
|
||||
/* The extra [class] is a hack that increases specificity enough to
|
||||
override a similar rule in reveal.js */
|
||||
ul.task-list[class]{list-style: none;}
|
||||
ul.task-list li input[type="checkbox"] {
|
||||
font-size: inherit;
|
||||
width: 0.8em;
|
||||
margin: 0 0.8em 0.2em -1.6em;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta property="og:image" content="https://tykayn.fr/wp-content/uploads/2016/12/rond.png">
|
||||
<meta property="og:locale" content="fr_FR">
|
||||
<meta property="og:description" content="Le vortex à chats - Illustrations, trucs en tout genre par Tykayn">
|
||||
<meta property="og:url" content="https://tykayn.fr">
|
||||
<meta property="og:site_name" content="">
|
||||
<link rel="alternate" type="application/rss+xml" title="Cipher Bliss » Flux" href="https://tykayn.fr/feed/">
|
||||
<link href="/style.css" rel="stylesheet">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title></title>
|
||||
<meta name="author" content="Tykayn">
|
||||
<link rel="alternate" type="application/rss+xml" title="Tykayn Blog » Flux"
|
||||
href="https://tykayn.fr/feed/">
|
||||
<meta property="og:title" content="Baptiste Lemoine">
|
||||
<meta property="og:locale" content="fr_FR">
|
||||
<!-- Description de la page -->
|
||||
<meta name="description" content="Baptiste Lemoine">
|
||||
<meta name="reply-to" content="contact@cipherbliss.com">
|
||||
<link rel="icon" type="image/png" href="https://tykayn.fr/wp-content/uploads/2016/12/rond.png">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="page" class="page__la_page">
|
||||
<header id="masthead" class="site-header">
|
||||
<div class="header-image" style="background: url(https://tykayn.fr/wp-content/themes/toivo-lite/images/header.jpg)">
|
||||
<a href="/">
|
||||
<img src="https://tykayn.fr/wp-content/uploads/2016/12/rond.png" class="site-icon img">
|
||||
</a>
|
||||
<h1 class="blog-title">Tykayn Blog</h1>
|
||||
<p class="blog-subtitle">Le vortex à chats - Illustrations, trucs en tout genre par Tykayn</p>
|
||||
<div class="template-header">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<nav class="navbar is-fixed-top is-dark" role="navigation" aria-label="main navigation">
|
||||
<div class="navbar-brand">
|
||||
<a class="navbar-item" href="https://tykayn.fr">
|
||||
Accueil
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div id="navbarBasicExample" class="navbar-menu">
|
||||
<div class="navbar-start">
|
||||
<a class="navbar-item" href="https://tykayn.fr">
|
||||
<img src="https://tykayn.fr/wp-content/uploads/2016/12/rond.png"
|
||||
class="img-fluid">
|
||||
</a>
|
||||
|
||||
<nav>
|
||||
<a href="/">Accueil</a>
|
||||
<a href="https://portfolio.cipherbliss.com">Portfolio</a>
|
||||
<a href="https://qzine.fr">Qzine</a>
|
||||
<a href="https://www.cipherbliss.com">Cipherbliss</a>
|
||||
<a href="/feed">Flux RSS</a>
|
||||
<a href="https://cloud.tykayn.fr/index.php/s/dessins_partage_blog">Sources des illustrations</a>
|
||||
<a href="/contact">Contact</a>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
<div class="navbar-end">
|
||||
<div class="navbar-item">
|
||||
<form role="search" method="get" class="search-form" action="/">
|
||||
<label>
|
||||
<input class="search-field" placeholder="Recherche" value="" name="s"
|
||||
type="search">
|
||||
</label>
|
||||
<input class="is-hidden search-submit" value="Rechercher" type="submit">
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
<main class="body-wrap boxed-container">
|
||||
<article class="content">
|
||||
|
||||
<header id="title-block-header">
|
||||
<h1 class="title">tykayn_blog</h1>
|
||||
</header>
|
||||
<h1 id="accueil">Accueil</h1>
|
||||
<p>hello les gens.</p>
|
||||
</body>
|
||||
|
||||
<p class="after-article">
|
||||
|
||||
</p>
|
||||
</article>
|
||||
</main>
|
||||
<footer class="site-footer has-top-divider">
|
||||
<div class="container">
|
||||
<div class="site-footer-inner">
|
||||
<div class="site-foot">
|
||||
|
||||
</div>
|
||||
<nav class="footer-nav">
|
||||
|
||||
<nav>
|
||||
<a href="/">Accueil</a>
|
||||
<a href="https://portfolio.cipherbliss.com">Portfolio</a>
|
||||
<a href="https://qzine.fr">Qzine</a>
|
||||
<a href="https://www.cipherbliss.com">Cipherbliss</a>
|
||||
<a href="/feed">Flux RSS</a>
|
||||
<a href="https://cloud.tykayn.fr/index.php/s/dessins_partage_blog">Sources des illustrations</a>
|
||||
<a href="/contact">Contact</a>
|
||||
</nav>
|
||||
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
<!-- généré avec orgmode-to-gemini-blog par Tykayn -->
|
||||
</html>
|
||||
|
||||
|
|
|
@ -1,170 +1,86 @@
|
|||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="generator" content="pandoc" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
|
||||
<title>tykayn_blog</title>
|
||||
<style>
|
||||
html {
|
||||
color: #1a1a1a;
|
||||
background-color: #fdfdfd;
|
||||
}
|
||||
body {
|
||||
margin: 0 auto;
|
||||
max-width: 36em;
|
||||
padding-left: 50px;
|
||||
padding-right: 50px;
|
||||
padding-top: 50px;
|
||||
padding-bottom: 50px;
|
||||
hyphens: auto;
|
||||
overflow-wrap: break-word;
|
||||
text-rendering: optimizeLegibility;
|
||||
font-kerning: normal;
|
||||
}
|
||||
@media (max-width: 600px) {
|
||||
body {
|
||||
font-size: 0.9em;
|
||||
padding: 12px;
|
||||
}
|
||||
h1 {
|
||||
font-size: 1.8em;
|
||||
}
|
||||
}
|
||||
@media print {
|
||||
html {
|
||||
background-color: white;
|
||||
}
|
||||
body {
|
||||
background-color: transparent;
|
||||
color: black;
|
||||
font-size: 12pt;
|
||||
}
|
||||
p, h2, h3 {
|
||||
orphans: 3;
|
||||
widows: 3;
|
||||
}
|
||||
h2, h3, h4 {
|
||||
page-break-after: avoid;
|
||||
}
|
||||
}
|
||||
p {
|
||||
margin: 1em 0;
|
||||
}
|
||||
a {
|
||||
color: #1a1a1a;
|
||||
}
|
||||
a:visited {
|
||||
color: #1a1a1a;
|
||||
}
|
||||
img {
|
||||
max-width: 100%;
|
||||
}
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
margin-top: 1.4em;
|
||||
}
|
||||
h5, h6 {
|
||||
font-size: 1em;
|
||||
font-style: italic;
|
||||
}
|
||||
h6 {
|
||||
font-weight: normal;
|
||||
}
|
||||
ol, ul {
|
||||
padding-left: 1.7em;
|
||||
margin-top: 1em;
|
||||
}
|
||||
li > ol, li > ul {
|
||||
margin-top: 0;
|
||||
}
|
||||
blockquote {
|
||||
margin: 1em 0 1em 1.7em;
|
||||
padding-left: 1em;
|
||||
border-left: 2px solid #e6e6e6;
|
||||
color: #606060;
|
||||
}
|
||||
code {
|
||||
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
|
||||
font-size: 85%;
|
||||
margin: 0;
|
||||
hyphens: manual;
|
||||
}
|
||||
pre {
|
||||
margin: 1em 0;
|
||||
overflow: auto;
|
||||
}
|
||||
pre code {
|
||||
padding: 0;
|
||||
overflow: visible;
|
||||
overflow-wrap: normal;
|
||||
}
|
||||
.sourceCode {
|
||||
background-color: transparent;
|
||||
overflow: visible;
|
||||
}
|
||||
hr {
|
||||
background-color: #1a1a1a;
|
||||
border: none;
|
||||
height: 1px;
|
||||
margin: 1em 0;
|
||||
}
|
||||
table {
|
||||
margin: 1em 0;
|
||||
border-collapse: collapse;
|
||||
width: 100%;
|
||||
overflow-x: auto;
|
||||
display: block;
|
||||
font-variant-numeric: lining-nums tabular-nums;
|
||||
}
|
||||
table caption {
|
||||
margin-bottom: 0.75em;
|
||||
}
|
||||
tbody {
|
||||
margin-top: 0.5em;
|
||||
border-top: 1px solid #1a1a1a;
|
||||
border-bottom: 1px solid #1a1a1a;
|
||||
}
|
||||
th {
|
||||
border-top: 1px solid #1a1a1a;
|
||||
padding: 0.25em 0.5em 0.25em 0.5em;
|
||||
}
|
||||
td {
|
||||
padding: 0.125em 0.5em 0.25em 0.5em;
|
||||
}
|
||||
header {
|
||||
margin-bottom: 4em;
|
||||
text-align: center;
|
||||
}
|
||||
#TOC li {
|
||||
list-style: none;
|
||||
}
|
||||
#TOC ul {
|
||||
padding-left: 1.3em;
|
||||
}
|
||||
#TOC > ul {
|
||||
padding-left: 0;
|
||||
}
|
||||
#TOC a:not(:hover) {
|
||||
text-decoration: none;
|
||||
}
|
||||
code{white-space: pre-wrap;}
|
||||
span.smallcaps{font-variant: small-caps;}
|
||||
div.columns{display: flex; gap: min(4vw, 1.5em);}
|
||||
div.column{flex: auto; overflow-x: auto;}
|
||||
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
|
||||
/* The extra [class] is a hack that increases specificity enough to
|
||||
override a similar rule in reveal.js */
|
||||
ul.task-list[class]{list-style: none;}
|
||||
ul.task-list li input[type="checkbox"] {
|
||||
font-size: inherit;
|
||||
width: 0.8em;
|
||||
margin: 0 0.8em 0.2em -1.6em;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta property="og:image" content="https://tykayn.fr/wp-content/uploads/2016/12/rond.png">
|
||||
<meta property="og:locale" content="fr_FR">
|
||||
<meta property="og:description" content="Le vortex à chats - Illustrations, trucs en tout genre par Tykayn">
|
||||
<meta property="og:url" content="https://tykayn.fr">
|
||||
<meta property="og:site_name" content="">
|
||||
<link rel="alternate" type="application/rss+xml" title="Cipher Bliss » Flux" href="https://tykayn.fr/feed/">
|
||||
<link href="/style.css" rel="stylesheet">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title></title>
|
||||
<meta name="author" content="Tykayn">
|
||||
<link rel="alternate" type="application/rss+xml" title="Tykayn Blog » Flux"
|
||||
href="https://tykayn.fr/feed/">
|
||||
<meta property="og:title" content="Baptiste Lemoine">
|
||||
<meta property="og:locale" content="fr_FR">
|
||||
<!-- Description de la page -->
|
||||
<meta name="description" content="Baptiste Lemoine">
|
||||
<meta name="reply-to" content="contact@cipherbliss.com">
|
||||
<link rel="icon" type="image/png" href="https://tykayn.fr/wp-content/uploads/2016/12/rond.png">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="page" class="page__la_page">
|
||||
<header id="masthead" class="site-header">
|
||||
<div class="header-image" style="background: url(https://tykayn.fr/wp-content/themes/toivo-lite/images/header.jpg)">
|
||||
<a href="/">
|
||||
<img src="https://tykayn.fr/wp-content/uploads/2016/12/rond.png" class="site-icon img">
|
||||
</a>
|
||||
<h1 class="blog-title">Tykayn Blog</h1>
|
||||
<p class="blog-subtitle">Le vortex à chats - Illustrations, trucs en tout genre par Tykayn</p>
|
||||
<div class="template-header">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<nav class="navbar is-fixed-top is-dark" role="navigation" aria-label="main navigation">
|
||||
<div class="navbar-brand">
|
||||
<a class="navbar-item" href="https://tykayn.fr">
|
||||
Accueil
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div id="navbarBasicExample" class="navbar-menu">
|
||||
<div class="navbar-start">
|
||||
<a class="navbar-item" href="https://tykayn.fr">
|
||||
<img src="https://tykayn.fr/wp-content/uploads/2016/12/rond.png"
|
||||
class="img-fluid">
|
||||
</a>
|
||||
|
||||
<nav>
|
||||
<a href="/">Accueil</a>
|
||||
<a href="https://portfolio.cipherbliss.com">Portfolio</a>
|
||||
<a href="https://qzine.fr">Qzine</a>
|
||||
<a href="https://www.cipherbliss.com">Cipherbliss</a>
|
||||
<a href="/feed">Flux RSS</a>
|
||||
<a href="https://cloud.tykayn.fr/index.php/s/dessins_partage_blog">Sources des illustrations</a>
|
||||
<a href="/contact">Contact</a>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
<div class="navbar-end">
|
||||
<div class="navbar-item">
|
||||
<form role="search" method="get" class="search-form" action="/">
|
||||
<label>
|
||||
<input class="search-field" placeholder="Recherche" value="" name="s"
|
||||
type="search">
|
||||
</label>
|
||||
<input class="is-hidden search-submit" value="Rechercher" type="submit">
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
<main class="body-wrap boxed-container">
|
||||
<article class="content">
|
||||
|
||||
<header id="title-block-header">
|
||||
<h1 class="title">tykayn_blog</h1>
|
||||
</header>
|
||||
|
@ -172,5 +88,36 @@
|
|||
<ul>
|
||||
<li></li>
|
||||
</ul>
|
||||
</body>
|
||||
|
||||
<p class="after-article">
|
||||
|
||||
</p>
|
||||
</article>
|
||||
</main>
|
||||
<footer class="site-footer has-top-divider">
|
||||
<div class="container">
|
||||
<div class="site-footer-inner">
|
||||
<div class="site-foot">
|
||||
|
||||
</div>
|
||||
<nav class="footer-nav">
|
||||
|
||||
<nav>
|
||||
<a href="/">Accueil</a>
|
||||
<a href="https://portfolio.cipherbliss.com">Portfolio</a>
|
||||
<a href="https://qzine.fr">Qzine</a>
|
||||
<a href="https://www.cipherbliss.com">Cipherbliss</a>
|
||||
<a href="/feed">Flux RSS</a>
|
||||
<a href="https://cloud.tykayn.fr/index.php/s/dessins_partage_blog">Sources des illustrations</a>
|
||||
<a href="/contact">Contact</a>
|
||||
</nav>
|
||||
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
<!-- généré avec orgmode-to-gemini-blog par Tykayn -->
|
||||
</html>
|
||||
|
||||
|
|
|
@ -1,173 +1,120 @@
|
|||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="generator" content="pandoc" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
|
||||
<title>tykayn_blog</title>
|
||||
<style>
|
||||
html {
|
||||
color: #1a1a1a;
|
||||
background-color: #fdfdfd;
|
||||
}
|
||||
body {
|
||||
margin: 0 auto;
|
||||
max-width: 36em;
|
||||
padding-left: 50px;
|
||||
padding-right: 50px;
|
||||
padding-top: 50px;
|
||||
padding-bottom: 50px;
|
||||
hyphens: auto;
|
||||
overflow-wrap: break-word;
|
||||
text-rendering: optimizeLegibility;
|
||||
font-kerning: normal;
|
||||
}
|
||||
@media (max-width: 600px) {
|
||||
body {
|
||||
font-size: 0.9em;
|
||||
padding: 12px;
|
||||
}
|
||||
h1 {
|
||||
font-size: 1.8em;
|
||||
}
|
||||
}
|
||||
@media print {
|
||||
html {
|
||||
background-color: white;
|
||||
}
|
||||
body {
|
||||
background-color: transparent;
|
||||
color: black;
|
||||
font-size: 12pt;
|
||||
}
|
||||
p, h2, h3 {
|
||||
orphans: 3;
|
||||
widows: 3;
|
||||
}
|
||||
h2, h3, h4 {
|
||||
page-break-after: avoid;
|
||||
}
|
||||
}
|
||||
p {
|
||||
margin: 1em 0;
|
||||
}
|
||||
a {
|
||||
color: #1a1a1a;
|
||||
}
|
||||
a:visited {
|
||||
color: #1a1a1a;
|
||||
}
|
||||
img {
|
||||
max-width: 100%;
|
||||
}
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
margin-top: 1.4em;
|
||||
}
|
||||
h5, h6 {
|
||||
font-size: 1em;
|
||||
font-style: italic;
|
||||
}
|
||||
h6 {
|
||||
font-weight: normal;
|
||||
}
|
||||
ol, ul {
|
||||
padding-left: 1.7em;
|
||||
margin-top: 1em;
|
||||
}
|
||||
li > ol, li > ul {
|
||||
margin-top: 0;
|
||||
}
|
||||
blockquote {
|
||||
margin: 1em 0 1em 1.7em;
|
||||
padding-left: 1em;
|
||||
border-left: 2px solid #e6e6e6;
|
||||
color: #606060;
|
||||
}
|
||||
code {
|
||||
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
|
||||
font-size: 85%;
|
||||
margin: 0;
|
||||
hyphens: manual;
|
||||
}
|
||||
pre {
|
||||
margin: 1em 0;
|
||||
overflow: auto;
|
||||
}
|
||||
pre code {
|
||||
padding: 0;
|
||||
overflow: visible;
|
||||
overflow-wrap: normal;
|
||||
}
|
||||
.sourceCode {
|
||||
background-color: transparent;
|
||||
overflow: visible;
|
||||
}
|
||||
hr {
|
||||
background-color: #1a1a1a;
|
||||
border: none;
|
||||
height: 1px;
|
||||
margin: 1em 0;
|
||||
}
|
||||
table {
|
||||
margin: 1em 0;
|
||||
border-collapse: collapse;
|
||||
width: 100%;
|
||||
overflow-x: auto;
|
||||
display: block;
|
||||
font-variant-numeric: lining-nums tabular-nums;
|
||||
}
|
||||
table caption {
|
||||
margin-bottom: 0.75em;
|
||||
}
|
||||
tbody {
|
||||
margin-top: 0.5em;
|
||||
border-top: 1px solid #1a1a1a;
|
||||
border-bottom: 1px solid #1a1a1a;
|
||||
}
|
||||
th {
|
||||
border-top: 1px solid #1a1a1a;
|
||||
padding: 0.25em 0.5em 0.25em 0.5em;
|
||||
}
|
||||
td {
|
||||
padding: 0.125em 0.5em 0.25em 0.5em;
|
||||
}
|
||||
header {
|
||||
margin-bottom: 4em;
|
||||
text-align: center;
|
||||
}
|
||||
#TOC li {
|
||||
list-style: none;
|
||||
}
|
||||
#TOC ul {
|
||||
padding-left: 1.3em;
|
||||
}
|
||||
#TOC > ul {
|
||||
padding-left: 0;
|
||||
}
|
||||
#TOC a:not(:hover) {
|
||||
text-decoration: none;
|
||||
}
|
||||
code{white-space: pre-wrap;}
|
||||
span.smallcaps{font-variant: small-caps;}
|
||||
div.columns{display: flex; gap: min(4vw, 1.5em);}
|
||||
div.column{flex: auto; overflow-x: auto;}
|
||||
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
|
||||
/* The extra [class] is a hack that increases specificity enough to
|
||||
override a similar rule in reveal.js */
|
||||
ul.task-list[class]{list-style: none;}
|
||||
ul.task-list li input[type="checkbox"] {
|
||||
font-size: inherit;
|
||||
width: 0.8em;
|
||||
margin: 0 0.8em 0.2em -1.6em;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta property="og:image" content="https://tykayn.fr/wp-content/uploads/2016/12/rond.png">
|
||||
<meta property="og:locale" content="fr_FR">
|
||||
<meta property="og:description" content="Le vortex à chats - Illustrations, trucs en tout genre par Tykayn">
|
||||
<meta property="og:url" content="https://tykayn.fr">
|
||||
<meta property="og:site_name" content="">
|
||||
<link rel="alternate" type="application/rss+xml" title="Cipher Bliss » Flux" href="https://tykayn.fr/feed/">
|
||||
<link href="/style.css" rel="stylesheet">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title></title>
|
||||
<meta name="author" content="Tykayn">
|
||||
<link rel="alternate" type="application/rss+xml" title="Tykayn Blog » Flux"
|
||||
href="https://tykayn.fr/feed/">
|
||||
<meta property="og:title" content="Baptiste Lemoine">
|
||||
<meta property="og:locale" content="fr_FR">
|
||||
<!-- Description de la page -->
|
||||
<meta name="description" content="Baptiste Lemoine">
|
||||
<meta name="reply-to" content="contact@cipherbliss.com">
|
||||
<link rel="icon" type="image/png" href="https://tykayn.fr/wp-content/uploads/2016/12/rond.png">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="page" class="page__la_page">
|
||||
<header id="masthead" class="site-header">
|
||||
<div class="header-image" style="background: url(https://tykayn.fr/wp-content/themes/toivo-lite/images/header.jpg)">
|
||||
<a href="/">
|
||||
<img src="https://tykayn.fr/wp-content/uploads/2016/12/rond.png" class="site-icon img">
|
||||
</a>
|
||||
<h1 class="blog-title">Tykayn Blog</h1>
|
||||
<p class="blog-subtitle">Le vortex à chats - Illustrations, trucs en tout genre par Tykayn</p>
|
||||
<div class="template-header">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<nav class="navbar is-fixed-top is-dark" role="navigation" aria-label="main navigation">
|
||||
<div class="navbar-brand">
|
||||
<a class="navbar-item" href="https://tykayn.fr">
|
||||
Accueil
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div id="navbarBasicExample" class="navbar-menu">
|
||||
<div class="navbar-start">
|
||||
<a class="navbar-item" href="https://tykayn.fr">
|
||||
<img src="https://tykayn.fr/wp-content/uploads/2016/12/rond.png"
|
||||
class="img-fluid">
|
||||
</a>
|
||||
|
||||
<nav>
|
||||
<a href="/">Accueil</a>
|
||||
<a href="https://portfolio.cipherbliss.com">Portfolio</a>
|
||||
<a href="https://qzine.fr">Qzine</a>
|
||||
<a href="https://www.cipherbliss.com">Cipherbliss</a>
|
||||
<a href="/feed">Flux RSS</a>
|
||||
<a href="https://cloud.tykayn.fr/index.php/s/dessins_partage_blog">Sources des illustrations</a>
|
||||
<a href="/contact">Contact</a>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
<div class="navbar-end">
|
||||
<div class="navbar-item">
|
||||
<form role="search" method="get" class="search-form" action="/">
|
||||
<label>
|
||||
<input class="search-field" placeholder="Recherche" value="" name="s"
|
||||
type="search">
|
||||
</label>
|
||||
<input class="is-hidden search-submit" value="Rechercher" type="submit">
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
<main class="body-wrap boxed-container">
|
||||
<article class="content">
|
||||
|
||||
<header id="title-block-header">
|
||||
<h1 class="title">tykayn_blog</h1>
|
||||
</header>
|
||||
<h1 id="contact">Contact</h1>
|
||||
</body>
|
||||
|
||||
<p class="after-article">
|
||||
|
||||
</p>
|
||||
</article>
|
||||
</main>
|
||||
<footer class="site-footer has-top-divider">
|
||||
<div class="container">
|
||||
<div class="site-footer-inner">
|
||||
<div class="site-foot">
|
||||
|
||||
</div>
|
||||
<nav class="footer-nav">
|
||||
|
||||
<nav>
|
||||
<a href="/">Accueil</a>
|
||||
<a href="https://portfolio.cipherbliss.com">Portfolio</a>
|
||||
<a href="https://qzine.fr">Qzine</a>
|
||||
<a href="https://www.cipherbliss.com">Cipherbliss</a>
|
||||
<a href="/feed">Flux RSS</a>
|
||||
<a href="https://cloud.tykayn.fr/index.php/s/dessins_partage_blog">Sources des illustrations</a>
|
||||
<a href="/contact">Contact</a>
|
||||
</nav>
|
||||
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
<!-- généré avec orgmode-to-gemini-blog par Tykayn -->
|
||||
</html>
|
||||
|
||||
|
|
|
@ -1,174 +1,121 @@
|
|||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="generator" content="pandoc" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
|
||||
<title>tykayn_blog</title>
|
||||
<style>
|
||||
html {
|
||||
color: #1a1a1a;
|
||||
background-color: #fdfdfd;
|
||||
}
|
||||
body {
|
||||
margin: 0 auto;
|
||||
max-width: 36em;
|
||||
padding-left: 50px;
|
||||
padding-right: 50px;
|
||||
padding-top: 50px;
|
||||
padding-bottom: 50px;
|
||||
hyphens: auto;
|
||||
overflow-wrap: break-word;
|
||||
text-rendering: optimizeLegibility;
|
||||
font-kerning: normal;
|
||||
}
|
||||
@media (max-width: 600px) {
|
||||
body {
|
||||
font-size: 0.9em;
|
||||
padding: 12px;
|
||||
}
|
||||
h1 {
|
||||
font-size: 1.8em;
|
||||
}
|
||||
}
|
||||
@media print {
|
||||
html {
|
||||
background-color: white;
|
||||
}
|
||||
body {
|
||||
background-color: transparent;
|
||||
color: black;
|
||||
font-size: 12pt;
|
||||
}
|
||||
p, h2, h3 {
|
||||
orphans: 3;
|
||||
widows: 3;
|
||||
}
|
||||
h2, h3, h4 {
|
||||
page-break-after: avoid;
|
||||
}
|
||||
}
|
||||
p {
|
||||
margin: 1em 0;
|
||||
}
|
||||
a {
|
||||
color: #1a1a1a;
|
||||
}
|
||||
a:visited {
|
||||
color: #1a1a1a;
|
||||
}
|
||||
img {
|
||||
max-width: 100%;
|
||||
}
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
margin-top: 1.4em;
|
||||
}
|
||||
h5, h6 {
|
||||
font-size: 1em;
|
||||
font-style: italic;
|
||||
}
|
||||
h6 {
|
||||
font-weight: normal;
|
||||
}
|
||||
ol, ul {
|
||||
padding-left: 1.7em;
|
||||
margin-top: 1em;
|
||||
}
|
||||
li > ol, li > ul {
|
||||
margin-top: 0;
|
||||
}
|
||||
blockquote {
|
||||
margin: 1em 0 1em 1.7em;
|
||||
padding-left: 1em;
|
||||
border-left: 2px solid #e6e6e6;
|
||||
color: #606060;
|
||||
}
|
||||
code {
|
||||
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
|
||||
font-size: 85%;
|
||||
margin: 0;
|
||||
hyphens: manual;
|
||||
}
|
||||
pre {
|
||||
margin: 1em 0;
|
||||
overflow: auto;
|
||||
}
|
||||
pre code {
|
||||
padding: 0;
|
||||
overflow: visible;
|
||||
overflow-wrap: normal;
|
||||
}
|
||||
.sourceCode {
|
||||
background-color: transparent;
|
||||
overflow: visible;
|
||||
}
|
||||
hr {
|
||||
background-color: #1a1a1a;
|
||||
border: none;
|
||||
height: 1px;
|
||||
margin: 1em 0;
|
||||
}
|
||||
table {
|
||||
margin: 1em 0;
|
||||
border-collapse: collapse;
|
||||
width: 100%;
|
||||
overflow-x: auto;
|
||||
display: block;
|
||||
font-variant-numeric: lining-nums tabular-nums;
|
||||
}
|
||||
table caption {
|
||||
margin-bottom: 0.75em;
|
||||
}
|
||||
tbody {
|
||||
margin-top: 0.5em;
|
||||
border-top: 1px solid #1a1a1a;
|
||||
border-bottom: 1px solid #1a1a1a;
|
||||
}
|
||||
th {
|
||||
border-top: 1px solid #1a1a1a;
|
||||
padding: 0.25em 0.5em 0.25em 0.5em;
|
||||
}
|
||||
td {
|
||||
padding: 0.125em 0.5em 0.25em 0.5em;
|
||||
}
|
||||
header {
|
||||
margin-bottom: 4em;
|
||||
text-align: center;
|
||||
}
|
||||
#TOC li {
|
||||
list-style: none;
|
||||
}
|
||||
#TOC ul {
|
||||
padding-left: 1.3em;
|
||||
}
|
||||
#TOC > ul {
|
||||
padding-left: 0;
|
||||
}
|
||||
#TOC a:not(:hover) {
|
||||
text-decoration: none;
|
||||
}
|
||||
code{white-space: pre-wrap;}
|
||||
span.smallcaps{font-variant: small-caps;}
|
||||
div.columns{display: flex; gap: min(4vw, 1.5em);}
|
||||
div.column{flex: auto; overflow-x: auto;}
|
||||
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
|
||||
/* The extra [class] is a hack that increases specificity enough to
|
||||
override a similar rule in reveal.js */
|
||||
ul.task-list[class]{list-style: none;}
|
||||
ul.task-list li input[type="checkbox"] {
|
||||
font-size: inherit;
|
||||
width: 0.8em;
|
||||
margin: 0 0.8em 0.2em -1.6em;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta property="og:image" content="https://tykayn.fr/wp-content/uploads/2016/12/rond.png">
|
||||
<meta property="og:locale" content="fr_FR">
|
||||
<meta property="og:description" content="Le vortex à chats - Illustrations, trucs en tout genre par Tykayn">
|
||||
<meta property="og:url" content="https://tykayn.fr">
|
||||
<meta property="og:site_name" content="">
|
||||
<link rel="alternate" type="application/rss+xml" title="Cipher Bliss » Flux" href="https://tykayn.fr/feed/">
|
||||
<link href="/style.css" rel="stylesheet">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title></title>
|
||||
<meta name="author" content="Tykayn">
|
||||
<link rel="alternate" type="application/rss+xml" title="Tykayn Blog » Flux"
|
||||
href="https://tykayn.fr/feed/">
|
||||
<meta property="og:title" content="Baptiste Lemoine">
|
||||
<meta property="og:locale" content="fr_FR">
|
||||
<!-- Description de la page -->
|
||||
<meta name="description" content="Baptiste Lemoine">
|
||||
<meta name="reply-to" content="contact@cipherbliss.com">
|
||||
<link rel="icon" type="image/png" href="https://tykayn.fr/wp-content/uploads/2016/12/rond.png">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="page" class="page__la_page">
|
||||
<header id="masthead" class="site-header">
|
||||
<div class="header-image" style="background: url(https://tykayn.fr/wp-content/themes/toivo-lite/images/header.jpg)">
|
||||
<a href="/">
|
||||
<img src="https://tykayn.fr/wp-content/uploads/2016/12/rond.png" class="site-icon img">
|
||||
</a>
|
||||
<h1 class="blog-title">Tykayn Blog</h1>
|
||||
<p class="blog-subtitle">Le vortex à chats - Illustrations, trucs en tout genre par Tykayn</p>
|
||||
<div class="template-header">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<nav class="navbar is-fixed-top is-dark" role="navigation" aria-label="main navigation">
|
||||
<div class="navbar-brand">
|
||||
<a class="navbar-item" href="https://tykayn.fr">
|
||||
Accueil
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div id="navbarBasicExample" class="navbar-menu">
|
||||
<div class="navbar-start">
|
||||
<a class="navbar-item" href="https://tykayn.fr">
|
||||
<img src="https://tykayn.fr/wp-content/uploads/2016/12/rond.png"
|
||||
class="img-fluid">
|
||||
</a>
|
||||
|
||||
<nav>
|
||||
<a href="/">Accueil</a>
|
||||
<a href="https://portfolio.cipherbliss.com">Portfolio</a>
|
||||
<a href="https://qzine.fr">Qzine</a>
|
||||
<a href="https://www.cipherbliss.com">Cipherbliss</a>
|
||||
<a href="/feed">Flux RSS</a>
|
||||
<a href="https://cloud.tykayn.fr/index.php/s/dessins_partage_blog">Sources des illustrations</a>
|
||||
<a href="/contact">Contact</a>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
<div class="navbar-end">
|
||||
<div class="navbar-item">
|
||||
<form role="search" method="get" class="search-form" action="/">
|
||||
<label>
|
||||
<input class="search-field" placeholder="Recherche" value="" name="s"
|
||||
type="search">
|
||||
</label>
|
||||
<input class="is-hidden search-submit" value="Rechercher" type="submit">
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
<main class="body-wrap boxed-container">
|
||||
<article class="content">
|
||||
|
||||
<header id="title-block-header">
|
||||
<h1 class="title">tykayn_blog</h1>
|
||||
</header>
|
||||
<h1 id="index-du-vortex-à-chats">index du vortex à chats</h1>
|
||||
<p>coucou!</p>
|
||||
</body>
|
||||
|
||||
<p class="after-article">
|
||||
|
||||
</p>
|
||||
</article>
|
||||
</main>
|
||||
<footer class="site-footer has-top-divider">
|
||||
<div class="container">
|
||||
<div class="site-footer-inner">
|
||||
<div class="site-foot">
|
||||
|
||||
</div>
|
||||
<nav class="footer-nav">
|
||||
|
||||
<nav>
|
||||
<a href="/">Accueil</a>
|
||||
<a href="https://portfolio.cipherbliss.com">Portfolio</a>
|
||||
<a href="https://qzine.fr">Qzine</a>
|
||||
<a href="https://www.cipherbliss.com">Cipherbliss</a>
|
||||
<a href="/feed">Flux RSS</a>
|
||||
<a href="https://cloud.tykayn.fr/index.php/s/dessins_partage_blog">Sources des illustrations</a>
|
||||
<a href="/contact">Contact</a>
|
||||
</nav>
|
||||
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
<!-- généré avec orgmode-to-gemini-blog par Tykayn -->
|
||||
</html>
|
||||
|
||||
|
|
|
@ -1,175 +1,122 @@
|
|||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="generator" content="pandoc" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
|
||||
<title>tykayn_blog</title>
|
||||
<style>
|
||||
html {
|
||||
color: #1a1a1a;
|
||||
background-color: #fdfdfd;
|
||||
}
|
||||
body {
|
||||
margin: 0 auto;
|
||||
max-width: 36em;
|
||||
padding-left: 50px;
|
||||
padding-right: 50px;
|
||||
padding-top: 50px;
|
||||
padding-bottom: 50px;
|
||||
hyphens: auto;
|
||||
overflow-wrap: break-word;
|
||||
text-rendering: optimizeLegibility;
|
||||
font-kerning: normal;
|
||||
}
|
||||
@media (max-width: 600px) {
|
||||
body {
|
||||
font-size: 0.9em;
|
||||
padding: 12px;
|
||||
}
|
||||
h1 {
|
||||
font-size: 1.8em;
|
||||
}
|
||||
}
|
||||
@media print {
|
||||
html {
|
||||
background-color: white;
|
||||
}
|
||||
body {
|
||||
background-color: transparent;
|
||||
color: black;
|
||||
font-size: 12pt;
|
||||
}
|
||||
p, h2, h3 {
|
||||
orphans: 3;
|
||||
widows: 3;
|
||||
}
|
||||
h2, h3, h4 {
|
||||
page-break-after: avoid;
|
||||
}
|
||||
}
|
||||
p {
|
||||
margin: 1em 0;
|
||||
}
|
||||
a {
|
||||
color: #1a1a1a;
|
||||
}
|
||||
a:visited {
|
||||
color: #1a1a1a;
|
||||
}
|
||||
img {
|
||||
max-width: 100%;
|
||||
}
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
margin-top: 1.4em;
|
||||
}
|
||||
h5, h6 {
|
||||
font-size: 1em;
|
||||
font-style: italic;
|
||||
}
|
||||
h6 {
|
||||
font-weight: normal;
|
||||
}
|
||||
ol, ul {
|
||||
padding-left: 1.7em;
|
||||
margin-top: 1em;
|
||||
}
|
||||
li > ol, li > ul {
|
||||
margin-top: 0;
|
||||
}
|
||||
blockquote {
|
||||
margin: 1em 0 1em 1.7em;
|
||||
padding-left: 1em;
|
||||
border-left: 2px solid #e6e6e6;
|
||||
color: #606060;
|
||||
}
|
||||
code {
|
||||
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
|
||||
font-size: 85%;
|
||||
margin: 0;
|
||||
hyphens: manual;
|
||||
}
|
||||
pre {
|
||||
margin: 1em 0;
|
||||
overflow: auto;
|
||||
}
|
||||
pre code {
|
||||
padding: 0;
|
||||
overflow: visible;
|
||||
overflow-wrap: normal;
|
||||
}
|
||||
.sourceCode {
|
||||
background-color: transparent;
|
||||
overflow: visible;
|
||||
}
|
||||
hr {
|
||||
background-color: #1a1a1a;
|
||||
border: none;
|
||||
height: 1px;
|
||||
margin: 1em 0;
|
||||
}
|
||||
table {
|
||||
margin: 1em 0;
|
||||
border-collapse: collapse;
|
||||
width: 100%;
|
||||
overflow-x: auto;
|
||||
display: block;
|
||||
font-variant-numeric: lining-nums tabular-nums;
|
||||
}
|
||||
table caption {
|
||||
margin-bottom: 0.75em;
|
||||
}
|
||||
tbody {
|
||||
margin-top: 0.5em;
|
||||
border-top: 1px solid #1a1a1a;
|
||||
border-bottom: 1px solid #1a1a1a;
|
||||
}
|
||||
th {
|
||||
border-top: 1px solid #1a1a1a;
|
||||
padding: 0.25em 0.5em 0.25em 0.5em;
|
||||
}
|
||||
td {
|
||||
padding: 0.125em 0.5em 0.25em 0.5em;
|
||||
}
|
||||
header {
|
||||
margin-bottom: 4em;
|
||||
text-align: center;
|
||||
}
|
||||
#TOC li {
|
||||
list-style: none;
|
||||
}
|
||||
#TOC ul {
|
||||
padding-left: 1.3em;
|
||||
}
|
||||
#TOC > ul {
|
||||
padding-left: 0;
|
||||
}
|
||||
#TOC a:not(:hover) {
|
||||
text-decoration: none;
|
||||
}
|
||||
code{white-space: pre-wrap;}
|
||||
span.smallcaps{font-variant: small-caps;}
|
||||
div.columns{display: flex; gap: min(4vw, 1.5em);}
|
||||
div.column{flex: auto; overflow-x: auto;}
|
||||
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
|
||||
/* The extra [class] is a hack that increases specificity enough to
|
||||
override a similar rule in reveal.js */
|
||||
ul.task-list[class]{list-style: none;}
|
||||
ul.task-list li input[type="checkbox"] {
|
||||
font-size: inherit;
|
||||
width: 0.8em;
|
||||
margin: 0 0.8em 0.2em -1.6em;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta property="og:image" content="https://tykayn.fr/wp-content/uploads/2016/12/rond.png">
|
||||
<meta property="og:locale" content="fr_FR">
|
||||
<meta property="og:description" content="Le vortex à chats - Illustrations, trucs en tout genre par Tykayn">
|
||||
<meta property="og:url" content="https://tykayn.fr">
|
||||
<meta property="og:site_name" content="">
|
||||
<link rel="alternate" type="application/rss+xml" title="Cipher Bliss » Flux" href="https://tykayn.fr/feed/">
|
||||
<link href="/style.css" rel="stylesheet">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title></title>
|
||||
<meta name="author" content="Tykayn">
|
||||
<link rel="alternate" type="application/rss+xml" title="Tykayn Blog » Flux"
|
||||
href="https://tykayn.fr/feed/">
|
||||
<meta property="og:title" content="Baptiste Lemoine">
|
||||
<meta property="og:locale" content="fr_FR">
|
||||
<!-- Description de la page -->
|
||||
<meta name="description" content="Baptiste Lemoine">
|
||||
<meta name="reply-to" content="contact@cipherbliss.com">
|
||||
<link rel="icon" type="image/png" href="https://tykayn.fr/wp-content/uploads/2016/12/rond.png">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="page" class="page__la_page">
|
||||
<header id="masthead" class="site-header">
|
||||
<div class="header-image" style="background: url(https://tykayn.fr/wp-content/themes/toivo-lite/images/header.jpg)">
|
||||
<a href="/">
|
||||
<img src="https://tykayn.fr/wp-content/uploads/2016/12/rond.png" class="site-icon img">
|
||||
</a>
|
||||
<h1 class="blog-title">Tykayn Blog</h1>
|
||||
<p class="blog-subtitle">Le vortex à chats - Illustrations, trucs en tout genre par Tykayn</p>
|
||||
<div class="template-header">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<nav class="navbar is-fixed-top is-dark" role="navigation" aria-label="main navigation">
|
||||
<div class="navbar-brand">
|
||||
<a class="navbar-item" href="https://tykayn.fr">
|
||||
Accueil
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div id="navbarBasicExample" class="navbar-menu">
|
||||
<div class="navbar-start">
|
||||
<a class="navbar-item" href="https://tykayn.fr">
|
||||
<img src="https://tykayn.fr/wp-content/uploads/2016/12/rond.png"
|
||||
class="img-fluid">
|
||||
</a>
|
||||
|
||||
<nav>
|
||||
<a href="/">Accueil</a>
|
||||
<a href="https://portfolio.cipherbliss.com">Portfolio</a>
|
||||
<a href="https://qzine.fr">Qzine</a>
|
||||
<a href="https://www.cipherbliss.com">Cipherbliss</a>
|
||||
<a href="/feed">Flux RSS</a>
|
||||
<a href="https://cloud.tykayn.fr/index.php/s/dessins_partage_blog">Sources des illustrations</a>
|
||||
<a href="/contact">Contact</a>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
<div class="navbar-end">
|
||||
<div class="navbar-item">
|
||||
<form role="search" method="get" class="search-form" action="/">
|
||||
<label>
|
||||
<input class="search-field" placeholder="Recherche" value="" name="s"
|
||||
type="search">
|
||||
</label>
|
||||
<input class="is-hidden search-submit" value="Rechercher" type="submit">
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
<main class="body-wrap boxed-container">
|
||||
<article class="content">
|
||||
|
||||
<header id="title-block-header">
|
||||
<h1 class="title">tykayn_blog</h1>
|
||||
</header>
|
||||
<hr />
|
||||
<p>Écrit par Tykayn. Si vous aimez ce que nous faisons, soutenez
|
||||
vous</p>
|
||||
</body>
|
||||
|
||||
<p class="after-article">
|
||||
|
||||
</p>
|
||||
</article>
|
||||
</main>
|
||||
<footer class="site-footer has-top-divider">
|
||||
<div class="container">
|
||||
<div class="site-footer-inner">
|
||||
<div class="site-foot">
|
||||
|
||||
</div>
|
||||
<nav class="footer-nav">
|
||||
|
||||
<nav>
|
||||
<a href="/">Accueil</a>
|
||||
<a href="https://portfolio.cipherbliss.com">Portfolio</a>
|
||||
<a href="https://qzine.fr">Qzine</a>
|
||||
<a href="https://www.cipherbliss.com">Cipherbliss</a>
|
||||
<a href="/feed">Flux RSS</a>
|
||||
<a href="https://cloud.tykayn.fr/index.php/s/dessins_partage_blog">Sources des illustrations</a>
|
||||
<a href="/contact">Contact</a>
|
||||
</nav>
|
||||
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
<!-- généré avec orgmode-to-gemini-blog par Tykayn -->
|
||||
</html>
|
||||
|
||||
|
|
|
@ -27,9 +27,63 @@
|
|||
</head>
|
||||
|
||||
<body>
|
||||
<div id="page">
|
||||
<div id="page" class="page__la_page">
|
||||
<header id="masthead" class="site-header">
|
||||
<div class="header-image" style="background: url(https://www.cipherbliss.com/wp-content/uploads/2016/11/bg.jpg)">
|
||||
<div class="header-image" style="background: url(https://tykayn.fr/wp-content/themes/toivo-lite/images/header.jpg)">
|
||||
<a href="/">
|
||||
<img src="https://tykayn.fr/wp-content/uploads/2016/12/rond.png" class="site-icon img">
|
||||
</a>
|
||||
<h1 class="blog-title">Tykayn Blog</h1>
|
||||
<p class="blog-subtitle">Le vortex à chats - Illustrations, trucs en tout genre par Tykayn</p>
|
||||
<div class="template-header">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<nav class="navbar is-fixed-top is-dark" role="navigation" aria-label="main navigation">
|
||||
<div class="navbar-brand">
|
||||
<a class="navbar-item" href="https://tykayn.fr">
|
||||
Accueil
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div id="navbarBasicExample" class="navbar-menu">
|
||||
<div class="navbar-start">
|
||||
<a class="navbar-item" href="https://tykayn.fr">
|
||||
<img src="https://tykayn.fr/wp-content/uploads/2016/12/rond.png"
|
||||
class="img-fluid">
|
||||
</a>
|
||||
|
||||
<nav>
|
||||
<a href="/">Accueil</a>
|
||||
<a href="https://portfolio.cipherbliss.com">Portfolio</a>
|
||||
<a href="https://qzine.fr">Qzine</a>
|
||||
<a href="https://www.cipherbliss.com">Cipherbliss</a>
|
||||
<a href="/feed">Flux RSS</a>
|
||||
<a href="https://cloud.tykayn.fr/index.php/s/dessins_partage_blog">Sources des illustrations</a>
|
||||
<a href="/contact">Contact</a>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
<div class="navbar-end">
|
||||
<div class="navbar-item">
|
||||
<form role="search" method="get" class="search-form" action="/">
|
||||
<label>
|
||||
<input class="search-field" placeholder="Recherche" value="" name="s"
|
||||
type="search">
|
||||
</label>
|
||||
<input class="is-hidden search-submit" value="Rechercher" type="submit">
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
<main class="body-wrap boxed-container">
|
||||
<article class="content">
|
||||
|
||||
<div id="page" class="page__la_page">
|
||||
<header id="masthead" class="site-header">
|
||||
<div class="header-image" style="background: url(https://tykayn.fr/wp-content/themes/toivo-lite/images/header.jpg)">
|
||||
<a href="/">
|
||||
<img src="https://tykayn.fr/wp-content/uploads/2016/12/rond.png" class="site-icon img">
|
||||
</a>
|
||||
|
@ -94,6 +148,35 @@
|
|||
</div>
|
||||
<nav class="footer-nav">
|
||||
|
||||
<nav>
|
||||
<a href="/">Accueil</a>
|
||||
<a href="https://portfolio.cipherbliss.com">Portfolio</a>
|
||||
<a href="https://qzine.fr">Qzine</a>
|
||||
<a href="https://www.cipherbliss.com">Cipherbliss</a>
|
||||
<a href="/feed">Flux RSS</a>
|
||||
<a href="https://cloud.tykayn.fr/index.php/s/dessins_partage_blog">Sources des illustrations</a>
|
||||
<a href="/contact">Contact</a>
|
||||
</nav>
|
||||
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
|
||||
<p class="after-article">
|
||||
|
||||
</p>
|
||||
</article>
|
||||
</main>
|
||||
<footer class="site-footer has-top-divider">
|
||||
<div class="container">
|
||||
<div class="site-footer-inner">
|
||||
<div class="site-foot">
|
||||
|
||||
</div>
|
||||
<nav class="footer-nav">
|
||||
|
||||
<nav>
|
||||
<a href="/">Accueil</a>
|
||||
<a href="https://portfolio.cipherbliss.com">Portfolio</a>
|
||||
|
|
|
@ -1,170 +1,86 @@
|
|||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="generator" content="pandoc" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
|
||||
<title>tykayn_blog</title>
|
||||
<style>
|
||||
html {
|
||||
color: #1a1a1a;
|
||||
background-color: #fdfdfd;
|
||||
}
|
||||
body {
|
||||
margin: 0 auto;
|
||||
max-width: 36em;
|
||||
padding-left: 50px;
|
||||
padding-right: 50px;
|
||||
padding-top: 50px;
|
||||
padding-bottom: 50px;
|
||||
hyphens: auto;
|
||||
overflow-wrap: break-word;
|
||||
text-rendering: optimizeLegibility;
|
||||
font-kerning: normal;
|
||||
}
|
||||
@media (max-width: 600px) {
|
||||
body {
|
||||
font-size: 0.9em;
|
||||
padding: 12px;
|
||||
}
|
||||
h1 {
|
||||
font-size: 1.8em;
|
||||
}
|
||||
}
|
||||
@media print {
|
||||
html {
|
||||
background-color: white;
|
||||
}
|
||||
body {
|
||||
background-color: transparent;
|
||||
color: black;
|
||||
font-size: 12pt;
|
||||
}
|
||||
p, h2, h3 {
|
||||
orphans: 3;
|
||||
widows: 3;
|
||||
}
|
||||
h2, h3, h4 {
|
||||
page-break-after: avoid;
|
||||
}
|
||||
}
|
||||
p {
|
||||
margin: 1em 0;
|
||||
}
|
||||
a {
|
||||
color: #1a1a1a;
|
||||
}
|
||||
a:visited {
|
||||
color: #1a1a1a;
|
||||
}
|
||||
img {
|
||||
max-width: 100%;
|
||||
}
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
margin-top: 1.4em;
|
||||
}
|
||||
h5, h6 {
|
||||
font-size: 1em;
|
||||
font-style: italic;
|
||||
}
|
||||
h6 {
|
||||
font-weight: normal;
|
||||
}
|
||||
ol, ul {
|
||||
padding-left: 1.7em;
|
||||
margin-top: 1em;
|
||||
}
|
||||
li > ol, li > ul {
|
||||
margin-top: 0;
|
||||
}
|
||||
blockquote {
|
||||
margin: 1em 0 1em 1.7em;
|
||||
padding-left: 1em;
|
||||
border-left: 2px solid #e6e6e6;
|
||||
color: #606060;
|
||||
}
|
||||
code {
|
||||
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
|
||||
font-size: 85%;
|
||||
margin: 0;
|
||||
hyphens: manual;
|
||||
}
|
||||
pre {
|
||||
margin: 1em 0;
|
||||
overflow: auto;
|
||||
}
|
||||
pre code {
|
||||
padding: 0;
|
||||
overflow: visible;
|
||||
overflow-wrap: normal;
|
||||
}
|
||||
.sourceCode {
|
||||
background-color: transparent;
|
||||
overflow: visible;
|
||||
}
|
||||
hr {
|
||||
background-color: #1a1a1a;
|
||||
border: none;
|
||||
height: 1px;
|
||||
margin: 1em 0;
|
||||
}
|
||||
table {
|
||||
margin: 1em 0;
|
||||
border-collapse: collapse;
|
||||
width: 100%;
|
||||
overflow-x: auto;
|
||||
display: block;
|
||||
font-variant-numeric: lining-nums tabular-nums;
|
||||
}
|
||||
table caption {
|
||||
margin-bottom: 0.75em;
|
||||
}
|
||||
tbody {
|
||||
margin-top: 0.5em;
|
||||
border-top: 1px solid #1a1a1a;
|
||||
border-bottom: 1px solid #1a1a1a;
|
||||
}
|
||||
th {
|
||||
border-top: 1px solid #1a1a1a;
|
||||
padding: 0.25em 0.5em 0.25em 0.5em;
|
||||
}
|
||||
td {
|
||||
padding: 0.125em 0.5em 0.25em 0.5em;
|
||||
}
|
||||
header {
|
||||
margin-bottom: 4em;
|
||||
text-align: center;
|
||||
}
|
||||
#TOC li {
|
||||
list-style: none;
|
||||
}
|
||||
#TOC ul {
|
||||
padding-left: 1.3em;
|
||||
}
|
||||
#TOC > ul {
|
||||
padding-left: 0;
|
||||
}
|
||||
#TOC a:not(:hover) {
|
||||
text-decoration: none;
|
||||
}
|
||||
code{white-space: pre-wrap;}
|
||||
span.smallcaps{font-variant: small-caps;}
|
||||
div.columns{display: flex; gap: min(4vw, 1.5em);}
|
||||
div.column{flex: auto; overflow-x: auto;}
|
||||
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
|
||||
/* The extra [class] is a hack that increases specificity enough to
|
||||
override a similar rule in reveal.js */
|
||||
ul.task-list[class]{list-style: none;}
|
||||
ul.task-list li input[type="checkbox"] {
|
||||
font-size: inherit;
|
||||
width: 0.8em;
|
||||
margin: 0 0.8em 0.2em -1.6em;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta property="og:image" content="https://tykayn.fr/wp-content/uploads/2016/12/rond.png">
|
||||
<meta property="og:locale" content="fr_FR">
|
||||
<meta property="og:description" content="Le vortex à chats - Illustrations, trucs en tout genre par Tykayn">
|
||||
<meta property="og:url" content="https://tykayn.fr">
|
||||
<meta property="og:site_name" content="">
|
||||
<link rel="alternate" type="application/rss+xml" title="Cipher Bliss » Flux" href="https://tykayn.fr/feed/">
|
||||
<link href="/style.css" rel="stylesheet">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title></title>
|
||||
<meta name="author" content="Tykayn">
|
||||
<link rel="alternate" type="application/rss+xml" title="Tykayn Blog » Flux"
|
||||
href="https://tykayn.fr/feed/">
|
||||
<meta property="og:title" content="Baptiste Lemoine">
|
||||
<meta property="og:locale" content="fr_FR">
|
||||
<!-- Description de la page -->
|
||||
<meta name="description" content="Baptiste Lemoine">
|
||||
<meta name="reply-to" content="contact@cipherbliss.com">
|
||||
<link rel="icon" type="image/png" href="https://tykayn.fr/wp-content/uploads/2016/12/rond.png">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="page" class="page__la_page">
|
||||
<header id="masthead" class="site-header">
|
||||
<div class="header-image" style="background: url(https://tykayn.fr/wp-content/themes/toivo-lite/images/header.jpg)">
|
||||
<a href="/">
|
||||
<img src="https://tykayn.fr/wp-content/uploads/2016/12/rond.png" class="site-icon img">
|
||||
</a>
|
||||
<h1 class="blog-title">Tykayn Blog</h1>
|
||||
<p class="blog-subtitle">Le vortex à chats - Illustrations, trucs en tout genre par Tykayn</p>
|
||||
<div class="template-header">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<nav class="navbar is-fixed-top is-dark" role="navigation" aria-label="main navigation">
|
||||
<div class="navbar-brand">
|
||||
<a class="navbar-item" href="https://tykayn.fr">
|
||||
Accueil
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div id="navbarBasicExample" class="navbar-menu">
|
||||
<div class="navbar-start">
|
||||
<a class="navbar-item" href="https://tykayn.fr">
|
||||
<img src="https://tykayn.fr/wp-content/uploads/2016/12/rond.png"
|
||||
class="img-fluid">
|
||||
</a>
|
||||
|
||||
<nav>
|
||||
<a href="/">Accueil</a>
|
||||
<a href="https://portfolio.cipherbliss.com">Portfolio</a>
|
||||
<a href="https://qzine.fr">Qzine</a>
|
||||
<a href="https://www.cipherbliss.com">Cipherbliss</a>
|
||||
<a href="/feed">Flux RSS</a>
|
||||
<a href="https://cloud.tykayn.fr/index.php/s/dessins_partage_blog">Sources des illustrations</a>
|
||||
<a href="/contact">Contact</a>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
<div class="navbar-end">
|
||||
<div class="navbar-item">
|
||||
<form role="search" method="get" class="search-form" action="/">
|
||||
<label>
|
||||
<input class="search-field" placeholder="Recherche" value="" name="s"
|
||||
type="search">
|
||||
</label>
|
||||
<input class="is-hidden search-submit" value="Rechercher" type="submit">
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
<main class="body-wrap boxed-container">
|
||||
<article class="content">
|
||||
|
||||
<header id="title-block-header">
|
||||
<h1 class="title">tykayn_blog</h1>
|
||||
</header>
|
||||
|
@ -172,5 +88,36 @@
|
|||
<ul>
|
||||
<li>mon projet 1</li>
|
||||
</ul>
|
||||
</body>
|
||||
|
||||
<p class="after-article">
|
||||
|
||||
</p>
|
||||
</article>
|
||||
</main>
|
||||
<footer class="site-footer has-top-divider">
|
||||
<div class="container">
|
||||
<div class="site-footer-inner">
|
||||
<div class="site-foot">
|
||||
|
||||
</div>
|
||||
<nav class="footer-nav">
|
||||
|
||||
<nav>
|
||||
<a href="/">Accueil</a>
|
||||
<a href="https://portfolio.cipherbliss.com">Portfolio</a>
|
||||
<a href="https://qzine.fr">Qzine</a>
|
||||
<a href="https://www.cipherbliss.com">Cipherbliss</a>
|
||||
<a href="/feed">Flux RSS</a>
|
||||
<a href="https://cloud.tykayn.fr/index.php/s/dessins_partage_blog">Sources des illustrations</a>
|
||||
<a href="/contact">Contact</a>
|
||||
</nav>
|
||||
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
<!-- généré avec orgmode-to-gemini-blog par Tykayn -->
|
||||
</html>
|
||||
|
||||
|
|
|
@ -55,22 +55,39 @@ body {
|
|||
}
|
||||
|
||||
/* Improve media defaults */
|
||||
img,
|
||||
picture,
|
||||
video,
|
||||
canvas,
|
||||
svg {
|
||||
.content img,
|
||||
.content picture,
|
||||
.content video,
|
||||
.content canvas,
|
||||
.content svg {
|
||||
display: block;
|
||||
margin-top: 1rem;
|
||||
margin-bottom: 1rem;
|
||||
max-width: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
pre, .sourceCode {
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
/* Inherit fonts for form controls */
|
||||
a {
|
||||
display: inline-block;
|
||||
border-radius: 1rem;
|
||||
color: rgb(0, 123, 255);
|
||||
text-decoration: none;
|
||||
}
|
||||
main a:hover {
|
||||
background: #303030;
|
||||
color: #dedede;
|
||||
}
|
||||
.nav a, .page__index a {
|
||||
padding: 0.55rem 2rem;
|
||||
display: block;
|
||||
margin-right: 1rem;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
input,
|
||||
button,
|
||||
textarea,
|
||||
|
@ -78,18 +95,8 @@ select {
|
|||
font: inherit;
|
||||
}
|
||||
|
||||
/* Avoid text overflows */
|
||||
p,
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
overflow-wrap: break-word;
|
||||
}
|
||||
|
||||
p {
|
||||
overflow-wrap: break-word;
|
||||
text-wrap: pretty;
|
||||
margin-top: 1.5rem;
|
||||
margin-bottom: 1rem;
|
||||
|
@ -114,6 +121,7 @@ h3,
|
|||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
overflow-wrap: break-word;
|
||||
text-wrap: balance;
|
||||
line-height: 1.3em;
|
||||
}
|
||||
|
@ -169,6 +177,17 @@ li {
|
|||
margin: 1rem;
|
||||
}
|
||||
|
||||
#page {
|
||||
background: #CCC;
|
||||
}
|
||||
|
||||
.body-wrap {
|
||||
background: #FFF;
|
||||
padding: 5% 6%;
|
||||
margin-bottom: 5%;
|
||||
margin-top: 1rem;
|
||||
}
|
||||
|
||||
.content {
|
||||
min-height: 50rem;
|
||||
}
|
||||
|
@ -178,20 +197,6 @@ li {
|
|||
padding: 2rem;
|
||||
}
|
||||
|
||||
a {
|
||||
display: inline-block;
|
||||
padding: 0.55rem 2rem;
|
||||
margin-right: 1rem;
|
||||
margin-bottom: 1rem;
|
||||
border-radius: 1rem;
|
||||
color: rgb(0, 123, 255);
|
||||
text-decoration: none;
|
||||
}
|
||||
main a:hover {
|
||||
background: #303030;
|
||||
color: #dedede;
|
||||
}
|
||||
|
||||
@media (max-width: 75ch) {
|
||||
body {
|
||||
padding: 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue