Initial commit.
This commit is contained in:
1
blog/templates/atom.xml/footer.xml
Normal file
1
blog/templates/atom.xml/footer.xml
Normal file
@ -0,0 +1 @@
|
||||
</feed>
|
8
blog/templates/atom.xml/header.xml
Normal file
8
blog/templates/atom.xml/header.xml
Normal file
@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="${lang}">
|
||||
<title type="text">${sitetitle}</title>
|
||||
<subtitle type="text">${description}</subtitle>
|
||||
<updated>${siteupdated}T00:00:00Z</updated>
|
||||
<link rel="alternate" type="text/html" href="${siteurl}" />
|
||||
<id>${siteurl}/blog/atom.xml</id>
|
||||
<link rel="self" type="application/atom+xml" href="${siteurl}/atom.xml" />
|
15
blog/templates/atom.xml/item.xml
Normal file
15
blog/templates/atom.xml/item.xml
Normal file
@ -0,0 +1,15 @@
|
||||
<entry>
|
||||
<title type="text">${title}</title>
|
||||
<link rel="alternate" type="text/html" href="${siteurl}/blog/${filename}" />
|
||||
<id>${siteurl}/blog/${filename}</id>
|
||||
<updated>${updated}T00:00:00Z</updated>
|
||||
<published>${created}T00:00:00Z</published>
|
||||
<author>
|
||||
<name>${author}</name>
|
||||
<uri>${siteurl}</uri>
|
||||
</author>
|
||||
<summary type="text">${description}</summary>
|
||||
<content type="html"><![CDATA[<h1>${title}</h1>
|
||||
<p><strong>Last modification on </strong> <time>${updated}</time></p>
|
||||
%{contentfile}]]></content>
|
||||
</entry>
|
12
blog/templates/index.html/footer.html
Normal file
12
blog/templates/index.html/footer.html
Normal file
@ -0,0 +1,12 @@
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<footer>
|
||||
<p>
|
||||
Copyright © 2016-2020 Nicolás Ortega Froysa<br />
|
||||
This page is licensed under the <a href="https://creativecommons.org/licenses/by-sa/4.0/" target="_blank" >CC-BY-SA 4.0 International</a> license.
|
||||
</p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
55
blog/templates/index.html/header.html
Normal file
55
blog/templates/index.html/header.html
Normal file
@ -0,0 +1,55 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="${lang}" >
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||
<meta http-equiv="Content-Language" content="${lang}" />
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<meta name="keywords" content="${keywords}" />
|
||||
<meta name="description" content="${description}" />
|
||||
<meta name="author" content="${author}" />
|
||||
<meta name="generator" content="${sitegenerator}" />
|
||||
<title>${title} - ${sitetitle}</title>
|
||||
<link rel="stylesheet" href="/style.css" type="text/css" />
|
||||
<link rel="icon" href="/favicon.png" type="image/png" />
|
||||
<link rel="alternate" href="/blog/atom.xml" type="application/atom+xml" title="${sitetitle} Atom Feed" />
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<h1>The Music in Noise</h1>
|
||||
<p><i>"If there were one million families praying the Rosary every day, the entire world would be saved."</i> - Pope Saint Pius X</p>
|
||||
</header>
|
||||
<table id="main-table" >
|
||||
<tr>
|
||||
<td id="nav" >
|
||||
<h3>Menu</h3>
|
||||
<ul>
|
||||
<li><a href="/" >Home</a></li>
|
||||
<li><a href="/blog/" >Blog</a></li>
|
||||
<li><a href="/music.html" >Music</a></li>
|
||||
<li><a href="/projects.html" >Projects</a></li>
|
||||
<ul>
|
||||
<li><a href="/decentralized.html" >Decentralized</a></li>
|
||||
<li><a href="/doublesgame.html" >DoublesGame</a></li>
|
||||
</ul>
|
||||
<li><a href="/contact.html" >Contact</a></li>
|
||||
</ul>
|
||||
<h3>Tor</h3>
|
||||
<ul>
|
||||
<li><a href="https://themusicinnoise.net/" >Use Clear-Net</a></li>
|
||||
<li><a href="http://uk7ewohr7xpjuaca.onion/" >Use Onion</a></li>
|
||||
</ul>
|
||||
<h3>Special Links</h3>
|
||||
<ul>
|
||||
<li><a href="https://gitlab.com/naortega" target="_blank" >Code Repositories</a></li>
|
||||
<li><a href="https://media.themusicinnoise.net/docs/resume_cv.pdf" >Résumé</a></li>
|
||||
<li>LBRY:</li>
|
||||
<ul>
|
||||
<li><a href="https://open.lbry.com/@TheMusicInNoise:7?r=FnizT7ACmJrTdw6HQJxAVGgFcHGN6oFy" target="_blank" >@TheMusicInNoise</a></li>
|
||||
<li><a href="https://open.lbry.com/@nortega:7?r=FnizT7ACmJrTdw6HQJxAVGgFcHGN6oFy" target="_blank" >@nortega</a></li>
|
||||
</ul>
|
||||
</ul>
|
||||
</td>
|
||||
<td id="content" >
|
||||
<h2 id="page-title" >Blog</h2>
|
||||
<p>Feeds: <a href="rss.xml" >RSS</a> | <a href="atom.xml" >Atom</a></p>
|
||||
<ul>
|
1
blog/templates/index.html/item.html
Normal file
1
blog/templates/index.html/item.html
Normal file
@ -0,0 +1 @@
|
||||
<li><time>${created}</time> - <a href="${filename}" >${title}</a></li>
|
11
blog/templates/page/footer.html
Normal file
11
blog/templates/page/footer.html
Normal file
@ -0,0 +1,11 @@
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<footer>
|
||||
<p>
|
||||
Copyright © 2016-2020 Nicolás Ortega Froysa<br />
|
||||
This page is licensed under the <a href="https://creativecommons.org/licenses/by-sa/4.0/" target="_blank" >CC-BY-SA 4.0 International</a> license.
|
||||
</p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
52
blog/templates/page/header.html
Normal file
52
blog/templates/page/header.html
Normal file
@ -0,0 +1,52 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="${lang}" >
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||
<meta http-equiv="Content-Language" content="${lang}" />
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<meta name="keywords" content="${keywords}" />
|
||||
<meta name="description" content="${description}" />
|
||||
<meta name="author" content="${author}" />
|
||||
<meta name="generator" content="${sitegenerator}" />
|
||||
<title>${title} - ${sitetitle}</title>
|
||||
<link rel="stylesheet" href="/style.css" type="text/css" />
|
||||
<link rel="icon" href="/favicon.png" type="image/png" />
|
||||
<link rel="alternate" href="/blog/atom.xml" type="application/atom+xml" title="${sitetitle} Atom Feed" />
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<h1>The Music in Noise</h1>
|
||||
<p><i>"If there were one million families praying the Rosary every day, the entire world would be saved."</i> - Pope Saint Pius X</p>
|
||||
</header>
|
||||
<table id="main-table" >
|
||||
<tr>
|
||||
<td id="nav" >
|
||||
<h3>Menu</h3>
|
||||
<ul>
|
||||
<li><a href="/" >Home</a></li>
|
||||
<li><a href="/blog/" >Blog</a></li>
|
||||
<li><a href="/music.html" >Music</a></li>
|
||||
<li><a href="/projects.html" >Projects</a></li>
|
||||
<ul>
|
||||
<li><a href="/decentralized.html" >Decentralized</a></li>
|
||||
<li><a href="/doublesgame.html" >DoublesGame</a></li>
|
||||
</ul>
|
||||
<li><a href="/contact.html" >Contact</a></li>
|
||||
</ul>
|
||||
<h3>Tor</h3>
|
||||
<ul>
|
||||
<li><a href="https://themusicinnoise.net/" >Use Clear-Net</a></li>
|
||||
<li><a href="http://uk7ewohr7xpjuaca.onion/" >Use Onion</a></li>
|
||||
</ul>
|
||||
<h3>Special Links</h3>
|
||||
<ul>
|
||||
<li><a href="https://gitlab.com/naortega" target="_blank" >Code Repositories</a></li>
|
||||
<li><a href="https://media.themusicinnoise.net/docs/resume_cv.pdf" >Résumé</a></li>
|
||||
<li>LBRY:</li>
|
||||
<ul>
|
||||
<li><a href="https://open.lbry.com/@TheMusicInNoise:7?r=FnizT7ACmJrTdw6HQJxAVGgFcHGN6oFy" target="_blank" >@TheMusicInNoise</a></li>
|
||||
<li><a href="https://open.lbry.com/@nortega:7?r=FnizT7ACmJrTdw6HQJxAVGgFcHGN6oFy" target="_blank" >@nortega</a></li>
|
||||
</ul>
|
||||
</ul>
|
||||
</td>
|
||||
<td id="content" >
|
3
blog/templates/page/item.html
Normal file
3
blog/templates/page/item.html
Normal file
@ -0,0 +1,3 @@
|
||||
<h2 id="page-title" >${title} - ${created}</h2>
|
||||
%{contentfile}
|
||||
<p><i>Last updated: <time>${updated}</time></i></p>
|
2
blog/templates/rss.xml/footer.xml
Normal file
2
blog/templates/rss.xml/footer.xml
Normal file
@ -0,0 +1,2 @@
|
||||
</channel>
|
||||
</rss>
|
8
blog/templates/rss.xml/header.xml
Normal file
8
blog/templates/rss.xml/header.xml
Normal file
@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<rss version="2.0"
|
||||
xmlns:content="http://purl.org/rss/1.0/modules/content/"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<channel>
|
||||
<title>${sitetitle}</title>
|
||||
<description>${description}</description>
|
||||
<link>${siteurl}</link>
|
10
blog/templates/rss.xml/item.xml
Normal file
10
blog/templates/rss.xml/item.xml
Normal file
@ -0,0 +1,10 @@
|
||||
<item>
|
||||
<title>${title}</title>
|
||||
<link>${siteurl}/blog/${filename}</link>
|
||||
<guid>${siteurl}/blog/${filename}</guid>
|
||||
<dc:date>${created}T00:00:00Z</dc:date>
|
||||
<author>${author}</author>
|
||||
<description><![CDATA[<h1>${title}</h1>
|
||||
<p><strong>Last modification on </strong> <time>${updated}</time></p>
|
||||
%{contentfile}]]></description>
|
||||
</item>
|
Reference in New Issue
Block a user