Change theme to dark
This commit is contained in:
parent
ff13c743b2
commit
22351725bf
4 changed files with 49 additions and 32 deletions
|
|
@ -12,8 +12,8 @@ base_url=config.application_root
|
|||
<%block name="metatags">
|
||||
</%block>
|
||||
<title>${title}</title>
|
||||
<meta name="title" content="${lang('cuchulublog', 'cuchulu_com_talking_about', 'Cuchulu.com. Hablando de ingeniería informática.')}">
|
||||
<meta name="description" content="${lang('cuchulublog', 'cuchulu_com_personal_project', 'Página personal de los proyectos relacionados con Paramecio Framework, Linux, Apache, NGINX, Email servers, selfcloud y más cosas...')}">
|
||||
<meta name="title" content="${_('Cuchulu.com. Hablando de ingeniería informática.')}">
|
||||
<meta name="description" content="${_('Página personal de los proyectos relacionados con Paramecio Framework, Linux, Apache, NGINX, Email servers, selfcloud y más cosas...')}">
|
||||
<meta name="keywords" content="cloud, linux, apache, nginx, python, php, webserver, selfcloud, mi cloud, ahorrar dinero en servidor">
|
||||
<meta name="robots" content="index, follow">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
|
|
@ -44,7 +44,7 @@ base_url=config.application_root
|
|||
</div>
|
||||
</div>
|
||||
<div class="container-top">
|
||||
<div class="container" style="background: #fbfbfb;border: solid #cbcbcb;border-width: 0px 1px;">
|
||||
<div class="container container_home" style="">
|
||||
<div class="column_left logo">
|
||||
<div class="center_flex" style="height:50px;font-size:24px;font-family:Open Sans;background: #253062;color: #fff;">
|
||||
<a href="/" id="logo_url">Cuchulu.com</a>
|
||||
|
|
@ -58,15 +58,15 @@ base_url=config.application_root
|
|||
<nav id="nav_home">
|
||||
<ul>
|
||||
<li>
|
||||
<a href="${url_for('.cuchulublog_home')}" id="cuchulu_home"><i class="fa fa-home" aria-hidden="true"></i> ${lang('cuchulublog', 'home', 'Home')}</a>
|
||||
<a href="${url_for('.cuchulublog_home')}" id="cuchulu_home"><i class="fa fa-home" aria-hidden="true"></i> ${_( 'Home')}</a>
|
||||
</li><li>
|
||||
<a href="${url_for('.cuchulublog_projects')}" id="cuchulu_projects"><i class="fa fa-globe" aria-hidden="true"></i> ${lang('cuchulublog', 'projects', 'Projects')}</a>
|
||||
<a href="${url_for('.cuchulublog_projects')}" id="cuchulu_projects"><i class="fa fa-globe" aria-hidden="true"></i> ${_('Projects')}</a>
|
||||
</li><li>
|
||||
<a href="${url_for('.cuchulublog_all_posts')}" id="cuchulu_blog"><i class="fa fa-comments" aria-hidden="true"></i> ${lang('cuchulublog', 'blog', 'Blog')}</a>
|
||||
<a href="${url_for('.cuchulublog_all_posts')}" id="cuchulu_blog"><i class="fa fa-comments" aria-hidden="true"></i> ${_('Blog')}</a>
|
||||
</li><li>
|
||||
<a href="${url_for('.cuchulublog_contact')}" id="cuchulu_contact"><i class="fa fa-envelope-o" aria-hidden="true"></i> ${lang('cuchulublog', 'contact', 'Contact')}</a>
|
||||
<a href="${url_for('.cuchulublog_contact')}" id="cuchulu_contact"><i class="fa fa-envelope-o" aria-hidden="true"></i> ${_('Contact')}</a>
|
||||
</li><li>
|
||||
<a href="${url_for('.cuchulublog_about')}" id="cuchulu_about"><i class="fa fa-info" aria-hidden="true"></i> ${lang('cuchulublog', 'about', 'About')}</a>
|
||||
<a href="${url_for('.cuchulublog_about')}" id="cuchulu_about"><i class="fa fa-info" aria-hidden="true"></i> ${_('About')}</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
|
@ -75,19 +75,19 @@ base_url=config.application_root
|
|||
<nav id="nav_mobile" style="display:none;">
|
||||
<ul>
|
||||
<li>
|
||||
<a href="${url_for('.cuchulublog_home')}"><i class="fa fa-home" aria-hidden="true"></i> ${lang('cuchulublog', 'home', 'Home')}</a>
|
||||
<a href="${url_for('.cuchulublog_home')}"><i class="fa fa-home" aria-hidden="true"></i> ${_('Home')}</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="${url_for('.cuchulublog_projects')}"><i class="fa fa-globe" aria-hidden="true"></i> ${lang('cuchulublog', 'projects', 'Projects')}</a>
|
||||
<a href="${url_for('.cuchulublog_projects')}"><i class="fa fa-globe" aria-hidden="true"></i> ${_('Projects')}</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="${url_for('.cuchulublog_all_posts')}"><i class="fa fa-comments" aria-hidden="true"></i> ${lang('cuchulublog', 'blog', 'Blog')}</a>
|
||||
<a href="${url_for('.cuchulublog_all_posts')}"><i class="fa fa-comments" aria-hidden="true"></i> ${_('Blog')}</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="${url_for('.cuchulublog_contact')}"><i class="fa fa-envelope-o" aria-hidden="true"></i> ${lang('cuchulublog', 'contact', 'Contact')}</a>
|
||||
<a href="${url_for('.cuchulublog_contact')}"><i class="fa fa-envelope-o" aria-hidden="true"></i> ${_('Contact')}</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="${url_for('.cuchulublog_about')}"><i class="fa fa-info" aria-hidden="true"></i> ${lang('cuchulublog', 'about', 'About')}</a>
|
||||
<a href="${url_for('.cuchulublog_about')}"><i class="fa fa-info" aria-hidden="true"></i> ${_('About')}</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
|
@ -96,29 +96,30 @@ base_url=config.application_root
|
|||
|
||||
<div align="center" style="padding-top:40px;">
|
||||
<img src="${make_media_url('images/logo.png', 'cuchulublog')}" width="75" height="75" alt="Cuchulu logo" />
|
||||
<h1>${lang('cuchulublog', 'welcome_to_cuchulu', 'Welcome to cuchulu.com!!!')}</h1>
|
||||
<h1>${_('Welcome to cuchulu.com!!!')}</h1>
|
||||
<p>
|
||||
${lang('cuchulublog', 'cuchulu_is_set_projects', 'Cuchulu.com is a set of projects of Antonio de la Rosa, a coder and Linux sysadmin from Spain.')}
|
||||
${_('Cuchulu.com is the home of a series of projects for create sites, admin servers and more.')}
|
||||
</p>
|
||||
<p>
|
||||
${lang('cuchulublog', 'you_can_find_multiple', 'You can find multiple utilities for Linux administration, cloud systems, monitoritation tools and more.')}
|
||||
${_('You can find multiple utilities for Linux administration, cloud systems, monitoritation tools...')}
|
||||
</p>
|
||||
<p>
|
||||
${lang('cuchulublog', 'of_course_if_you_need', 'Of course, if you need Linux admin services, create an App or other computer enginering services, you can <a href="/contact">contact me</a>.')|n}
|
||||
${_('Of course, if you need Linux admin services, create an App or other computer enginering services, you can <a href="/contact">contact me</a>.')|n}
|
||||
</p>
|
||||
<%include file="mantained_projects.phtml" />
|
||||
<hr />
|
||||
<section id="blog_section">
|
||||
<h2>${lang('cuchulublog', 'blog_last_posts', 'Blog - Last posts')}</h2>
|
||||
<h2>${_('Blog - Last posts')}</h2>
|
||||
<article style="display:none;" class="tpl_post">
|
||||
<header>
|
||||
<h1 class="blog_post_name">Apple</h1>
|
||||
<p>${lang('cuchulublog', 'published', 'Published')}: <time pubdate="pubdate" class="date_post">09/10/2009</time></p>
|
||||
<p>${_('Published')}: <time pubdate="pubdate" class="date_post">09/10/2009</time></p>
|
||||
</header>
|
||||
<div class="content_post">
|
||||
</div>
|
||||
<footer>
|
||||
<!--<p><small>Licencia Creative Commons Reconocimiento-Compartir bajo la misma</small></p>-->
|
||||
<p><a href="#" class="url_post">${lang('cuchulublog', 'read_more', 'Read more')}</a></p>
|
||||
<p><a href="#" class="url_post">${_('Read more')}</a></p>
|
||||
</footer>
|
||||
</article>
|
||||
<br clear="all" />
|
||||
|
|
|
|||
|
|
@ -1,14 +1,22 @@
|
|||
<section>
|
||||
<h2>${lang('cuchulublog', 'mantained_projects', 'Mantained Projects')}</h2>
|
||||
<div class="column_50">
|
||||
<h3>Paramecio</h3>
|
||||
<h3>Paramecio2</h3>
|
||||
<div class="content_section content_section_left">
|
||||
<p>${lang('cuchulublog', 'a_simple_web_framework', 'A simple web framework with shorcuts and hooks for Flask, Mako templates, etc...')}</p>
|
||||
<p><a href="https://bitbucket.org/paramecio/paramecio2fm/">${lang('cuchulublog', 'git_repo', 'Git repository')}</a></p>
|
||||
<p><a href="https://bitbucket.org/paramecio/paramecio2fm/">${lang('cuchulublog', 'documentation', 'Documentation')}</a></p>
|
||||
<p>${_('A simple web framework based in flask and Mako')}</p>
|
||||
<p><a href="https://git.cuchulu.com/paramecio/paramecio2fm">${_('Git repository')}</a></p>
|
||||
<p><a href="https://git.cuchulu.com/paramecio/paramecio2fm">${_('Documentation')}</a></p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="column_50">
|
||||
<h3>Pastafari2</h3>
|
||||
<div class="content_section content_section_right"">
|
||||
<p>${_('A set of tools for control Linux servers')}</p>
|
||||
<p><a href="https://git.cuchulu.com/paramecio/pastafari2">${_('Git repository')}</a></p>
|
||||
<p><a href="https://git.cuchulu.com/paramecio/pastafari2">${_('Documentation')}</a></p>
|
||||
</div>
|
||||
</div>
|
||||
<!--<div class="column_50">
|
||||
<h3>PastafariStats Agent</h3>
|
||||
<div class="content_section content_section_right"">
|
||||
<p>${lang('cuchulublog', 'a_simple_monit_script_writed', 'A simple monitoritation script writed in Python for save systemd data from a server (Linux or Windows) in a MySQL database')}</p>
|
||||
|
|
@ -31,6 +39,6 @@
|
|||
<p><a href="https://bitbucket.org/paramecio/leviathanapi/">${lang('cuchulublog', 'git_repo', 'Git repository')}</a></p>
|
||||
<p><a href="https://bitbucket.org/paramecio/leviathanapi/">${lang('cuchulublog', 'documentation', 'Documentation')}</a></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>-->
|
||||
</section>
|
||||
<br clear="all" />
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue