diff --git a/_config.yml.example b/_config.yml.example index 386f892..bf18639 100644 --- a/_config.yml.example +++ b/_config.yml.example @@ -40,7 +40,11 @@ contacts: links: Hexo: http://hexo.io +# CDN +cdn: useso #If your site loads slowly change it to "google" , because "useso" is slow out of China + # Miscellaneous +google_site_verification: google_analytics: favicon: favicon.png twitter: diff --git a/languages/es.yml b/languages/es.yml new file mode 100644 index 0000000..964f169 --- /dev/null +++ b/languages/es.yml @@ -0,0 +1,30 @@ +#By SrWoOoW +index: + home: 'Inicio' + search: 'Buscar' + archive: 'Archivo' + category: 'Categoria' + uncategorized: 'Sin categoría' + tag: 'Etiqueta' +nav: + next: 'Siguiente ' + prev: 'Anterior' + older: 'Más viejo' + newer: 'Más nuevo' +widget: + recents: 'Recientes' + archives: 'Archivos' + categories: 'Categorias' + links: 'Links' + tags: 'Etiquetas' + tag_cloud: 'Nube de etiquetas' +article: + comments: 'Comentarios' + share: 'Compartir' + catalogue: 'Catálogo' +profile: + follow: 'SEGUIR' + post: 'Entrada' + tag: 'Etiqueta' + posts: 'Entradas' + tags: 'Etiquetas' diff --git a/layout/_partial/after-footer.ejs b/layout/_partial/after-footer.ejs index 8cafae8..0ebafce 100644 --- a/layout/_partial/after-footer.ejs +++ b/layout/_partial/after-footer.ejs @@ -24,7 +24,7 @@ <% } %> - +<%- partial('cdn_after_footer') %> <% if (theme.fancybox){ %> <%- css('fancybox/jquery.fancybox') %> diff --git a/layout/_partial/cdn_after_footer.ejs b/layout/_partial/cdn_after_footer.ejs new file mode 100644 index 0000000..9286bb4 --- /dev/null +++ b/layout/_partial/cdn_after_footer.ejs @@ -0,0 +1,5 @@ +<% if (theme.cdn == "google"){ %> + +<% } else if (theme.cdn == "useso"){ %> + +<% } %> diff --git a/layout/_partial/cdn_head.ejs b/layout/_partial/cdn_head.ejs new file mode 100644 index 0000000..31fc9b6 --- /dev/null +++ b/layout/_partial/cdn_head.ejs @@ -0,0 +1,7 @@ +<% if (theme.cdn == "google"){ %> + + +<% } else if (theme.cdn == "useso"){ %> + + +<% } %> diff --git a/layout/_partial/google_site_verification.ejs b/layout/_partial/google_site_verification.ejs new file mode 100644 index 0000000..cd0b1bf --- /dev/null +++ b/layout/_partial/google_site_verification.ejs @@ -0,0 +1,3 @@ +<% if (theme.google_site_verification){ %> + +<% } %> diff --git a/layout/_partial/head.ejs b/layout/_partial/head.ejs index 10f4ce8..3772eea 100644 --- a/layout/_partial/head.ejs +++ b/layout/_partial/head.ejs @@ -28,11 +28,11 @@ <% if (theme.favicon){ %> <% } %> - - + <%- partial('cdn_head') %> <%- css('css/style') %> <%- css('font-awesome/css/font-awesome.min') %> <%- partial('google-analytics') %> + <%- partial('google_site_verification') %> <% if( theme.customstylesheet ){ %> <%- css('css/'+theme.customstylesheet) %> <% } %>