npqhugo/exampleSite/public/blog/emoji-support/index.html

141 lines
4.6 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html><head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="your description">
<meta name="Author" content="your name">
<meta name="keywords" content="hugo blog">
<link rel="stylesheet" href=https://example.com/css/syntax.css>
<link rel="stylesheet" href=https://example.com/css/style.css>
<script src="https://kit.fontawesome.com/1b7478c139.js" crossorigin="anonymous"></script>
<title>title</title>
</head><body><aside id="sidenav">
<header>
<a href="https://example.com"><img src="/avatar.png" alt="avatar"></a>
<a id="branding" href="https://example.com">
title
</a>
</header>
<nav>
<a href="/"
>
<i class="fas fa-home fa-sm"></i>
<span>home</span>
</a>
<a href="/blog/"
>
<i class="fas fa-keyboard fa-ms"></i>
<span>blog</span>
</a>
<a href="/tags"
>
<i class="fas fa-tags fa-ms"></i>
<span>tags</span>
</a>
<a href="https://github.com/yourgithubusername23434"
target="_blanck"
>
<i class="fab fa-github fa-ms"></i>
<span>github</span>
</a>
<a href="/index.xml"
>
<i class="fas fa-rss fa-ms"></i>
<span>RSS</span>
</a>
<a href="/contact"
>
<i class="far fa-envelope"></i>
<span>contact</span>
</a>
</aside>
<main id="main">
<a href="javascript:void(0)" id="closebtn" onclick="navToggle()"><i class="fas fa-bars fa-lg"></i></a>
<div class="content">
<h1 id="title">Emoji Support</h1>
<p>Emoji can be enabled in a Hugo project in a number of ways.</p>
<p>The <a href="https://gohugo.io/functions/emojify/"><code>emojify</code></a> function can be called directly in templates or <a href="https://gohugo.io/templates/shortcode-templates/#inline-shortcodes">Inline Shortcodes</a>.</p>
<p>To enable emoji globally, set <code>enableEmoji</code> to <code>true</code> in your sites <a href="https://gohugo.io/getting-started/configuration/">configuration</a> and then you can type emoji shorthand codes directly in content files; e.g.</p>
<p><p><span class="nowrap"><span class="emojify">🙈</span> <code>:see_no_evil:</code></span> <span class="nowrap"><span class="emojify">🙉</span> <code>:hear_no_evil:</code></span> <span class="nowrap"><span class="emojify">🙊</span> <code>:speak_no_evil:</code></span></p>
<br></p>
<p>The <a href="http://www.emoji-cheat-sheet.com/">Emoji cheat sheet</a> is a useful reference for emoji shorthand codes.</p>
<hr />
<p><strong>N.B.</strong> The above steps enable Unicode Standard emoji characters and sequences in Hugo, however the rendering of these glyphs depends on the browser and the platform. To style the emoji you can either use a third party emoji font or a font stack; e.g.</p>
<div class="highlight"><pre class="chroma"><code class="language-html" data-lang="html">.emoji {
font-family: Apple Color Emoji,Segoe UI Emoji,NotoColorEmoji,Segoe UI Symbol,Android Emoji,EmojiSymbols;
}</code></pre></div>
<div class="nav-next-prev">
<div class="nav-prev">
<a class="grayed-out" href="javascript:void()"><i class="fas fa-chevron-left"></i></a>
</div>
<a class="nav-top" href="#">top</i></a>
<div class="nav-next">
<a href="https://example.com/blog/math-typesetting/"><i class="fas fa-chevron-right"></i></a>
</div>
</div>
</div><footer>
<div class="footer-content">
<div class="contact-info">
<div class="footer-mail">
<i class="far fa-envelope"></i> <a href="mailto:mail@example.com">mail@example.com</a> </div>
<div class="footer-phone">
<i class="fas fa-phone"></i> 8888888888
</div>
</div>
<p class="copyright meta">Copyright © 20082019, Steve Francia and the Hugo Authors; all rights reserved.</p>
</div>
</footer></main>
</body>
<script src=https://example.com/js/navbutton.js></script>
</html>