Deploy to GitHub pages
This commit is contained in:
commit
62b901bd8d
14 changed files with 406 additions and 0 deletions
75
hola-mundo.html
Normal file
75
hola-mundo.html
Normal file
|
@ -0,0 +1,75 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="es">
|
||||
<head>
|
||||
<title>¡Hola Mundo!</title>
|
||||
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="Me anuncio al mundo">
|
||||
|
||||
<meta name="author" content="Mi nombre">
|
||||
|
||||
|
||||
<meta name="keywords" content="hola, anuncio">
|
||||
|
||||
|
||||
<meta property="og:site_name" content="My Site Name">
|
||||
<meta property="og:title" content="¡Hola Mundo!">
|
||||
<meta property="og:url" content="https://my-site.com/hola-mundo.html">
|
||||
<meta property="og:description" content="Me anuncio al mundo">
|
||||
|
||||
<meta property="og:image" content="https://my-site.com./images/waiheke-stony-batter.jpg">
|
||||
|
||||
|
||||
<meta property="og:type" content="article">
|
||||
|
||||
|
||||
|
||||
<meta property="twitter:card" content="summary_large_image">
|
||||
<meta property="twitter:image" content="https://my-site.com./images/waiheke-stony-batter.jpg">
|
||||
|
||||
<meta property="twitter:site" content="My Site Name">
|
||||
<meta property="twitter:title" content="¡Hola Mundo!">
|
||||
<meta property="twitter:description" content="Me anuncio al mundo">
|
||||
|
||||
<meta property="twitter:creator" content="@MiNombre">
|
||||
|
||||
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="canonical" href="https://my-site.com/hola-mundo.html">
|
||||
|
||||
<link rel="alternate" href="./atom.xml" title="My Feed Title" type="application/atom+xml">
|
||||
<link rel="alternate" href="./rss.xml" title="My Feed Title" type="application/rss+xml">
|
||||
|
||||
<link rel="stylesheet" href="./css/default.css" />
|
||||
<link rel="stylesheet" href="./css/code.css" />
|
||||
</head>
|
||||
<body>
|
||||
<main>
|
||||
<article>
|
||||
<header>
|
||||
<h1>
|
||||
<a href="./hola-mundo.html">¡Hola Mundo!</a>
|
||||
</h1>
|
||||
<div>
|
||||
2020-09-22 (updated: 2020-09-23T12:00:00Z)
|
||||
</div>
|
||||
</header>
|
||||
<section>
|
||||
<p>¡Hola Mundo! ¡Estoy aquí!</p>
|
||||
<p><img
|
||||
alt="Grapevines among rolling hills leading to the sea"
|
||||
src="./images/waiheke-stony-batter.jpg"
|
||||
height="200"
|
||||
/></p>
|
||||
<p>Haskell, por ejemplo:</p>
|
||||
<div class="sourceCode" id="cb1"><pre class="sourceCode haskell"><code class="sourceCode haskell"><span id="cb1-1"><a href="#cb1-1" aria-hidden="true" tabindex="-1"></a><span class="ot">toSlug ::</span> <span class="dt">T.Text</span> <span class="ot">-></span> <span class="dt">T.Text</span></span>
|
||||
<span id="cb1-2"><a href="#cb1-2" aria-hidden="true" tabindex="-1"></a>toSlug <span class="ot">=</span></span>
|
||||
<span id="cb1-3"><a href="#cb1-3" aria-hidden="true" tabindex="-1"></a> T.intercalate (T.singleton <span class="ch">'-'</span>) <span class="op">.</span> T.words <span class="op">.</span> T.toLower <span class="op">.</span> clean</span></code></pre></div>
|
||||
</section>
|
||||
</article>
|
||||
</main>
|
||||
|
||||
<script defer src="./js/script.js"></script>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue