Compare commits
	
		
			3 Commits
		
	
	
		
			d8e5713208
			...
			console
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| d365dd4d25 | |||
| f168112294 | |||
| e7e8b78904 | 
@@ -16,8 +16,7 @@ smart_punctuation = true
 | 
			
		||||
git = "https://git.filiprojek.cz/fr/website"
 | 
			
		||||
nav_items = [
 | 
			
		||||
	{name="Home",      path="/"},
 | 
			
		||||
	{name="About",     path="/about"},
 | 
			
		||||
	{name="Projects",  path="/projects/"},
 | 
			
		||||
	{name="Posts",      path="/posts"}
 | 
			
		||||
	#{name="About",     path="/about"},
 | 
			
		||||
	#{name="Projects",  path="/projects/"},
 | 
			
		||||
]
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,7 +1,7 @@
 | 
			
		||||
.content {
 | 
			
		||||
	display: flex;
 | 
			
		||||
	flex-direction: column;
 | 
			
		||||
	margin: 2rem 20%;
 | 
			
		||||
	margin: 2rem 8rem;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.content {
 | 
			
		||||
 
 | 
			
		||||
@@ -13,11 +13,11 @@
 | 
			
		||||
	<section class="contact content">
 | 
			
		||||
		<h1>Contact me</h1>
 | 
			
		||||
		<div class="contact-list">
 | 
			
		||||
			<p>email: <a href="mailto:hello@filiprojek.cz" target="_blank">hello@filiprojek.cz</a></p>
 | 
			
		||||
			<p>telegram: <a href="https://t.me/filiprojek" target="_blank">@filiprojek</a></p>
 | 
			
		||||
			<p>git: <a href="https://git.filiprojek.cz" target="_blank">Personal Gitea</a></p>
 | 
			
		||||
			<p>github: <a href="https://github.com/filiprojek" target="_blank">GitHub</a></p>
 | 
			
		||||
			<p>PGP: <a href="https://keys.openpgp.org/vks/v1/by-fingerprint/CA3D9BE28315B49164130CD97E65EA58C6075F09" target="_blank">0x7E65EA58C6075F09</a></p>
 | 
			
		||||
			<p>email: <a href="mailto:hello@filiprojek.cz">hello@filiprojek.cz</a></p>
 | 
			
		||||
			<p>telegram: <a href="https://t.me/filiprojek">@filiprojek</a></p>
 | 
			
		||||
			<p>git: <a href="https://git.filiprojek.cz">Personal git</a></p>
 | 
			
		||||
			<p>github: <a href="https://github.com/filiprojek">GitHub</a></p>
 | 
			
		||||
			<p>PGP: <a href="#" class="pgpwrap">fc37b989787acf8cbce7c0c2a56a345efe321161</a></p>
 | 
			
		||||
		</div>
 | 
			
		||||
	</section>
 | 
			
		||||
{% endblock content %}
 | 
			
		||||
 
 | 
			
		||||
@@ -7,6 +7,6 @@
 | 
			
		||||
{% block content %}
 | 
			
		||||
	<section class="console content"  >
 | 
			
		||||
	</section>
 | 
			
		||||
	<textarea class="mobile-input" style="display: none" autofocus></textarea>
 | 
			
		||||
	<textarea class="mobile-input" style="display: none" disabled autofocus></textarea>
 | 
			
		||||
  <script src="/js/console.js" defer></script>
 | 
			
		||||
{% endblock content %}
 | 
			
		||||
 
 | 
			
		||||
@@ -16,7 +16,7 @@
 | 
			
		||||
		<br>
 | 
			
		||||
		<p>Backend node.js & php developer <a href="https://www.fofrweb.com/" target="_blank">@fofrweb</a>,<br> GNU/Linux <a href="http://voidlinux.org" target="_blank">Void</a> user, student and coffee enthusiast<span class="underscore">_</span><p>
 | 
			
		||||
		<br>
 | 
			
		||||
		<p>PGP: <a href="https://keys.openpgp.org/vks/v1/by-fingerprint/CA3D9BE28315B49164130CD97E65EA58C6075F09" target="_blank">0x7E65EA58C6075F09</a></p>
 | 
			
		||||
		<p id="pgp" title="copy pgp to clipboard">PGP: fc37b989787acf8cbce7c0c2a56a345efe321161</p>
 | 
			
		||||
		<br>
 | 
			
		||||
		<p><a href="https://git.filiprojek.cz/fr" target="_blank">Git</a> <a href="https://t.me/filiprojek" target="_blank">Telegram</a> <a href="#" id="pgpmobile" title="copy pgp to clipboard">PGP</a></p>
 | 
			
		||||
	</section>
 | 
			
		||||
@@ -28,6 +28,17 @@
 | 
			
		||||
			b ? _.style.visibility = "visible" : _.style.visibility = "hidden"
 | 
			
		||||
			b = !b
 | 
			
		||||
		}, 500)
 | 
			
		||||
 | 
			
		||||
		const pgp = document.querySelector("#pgp")
 | 
			
		||||
		const pgpmobile = document.querySelector("#pgpmobile")
 | 
			
		||||
		const pgpcp = (e) => {
 | 
			
		||||
			console.log(e)
 | 
			
		||||
			navigator.clipboard.writeText("fc37b989787acf8cbce7c0c2a56a345efe321161")
 | 
			
		||||
			alert("pgp has been copied to the clipboard")
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
		pgp.addEventListener("click", pgpcp)
 | 
			
		||||
		pgpmobile.addEventListener("click", pgpcp)
 | 
			
		||||
	</script>
 | 
			
		||||
</section>
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user