Browse Source

Rename SEO to SMO

Talha Mansoor 11 years ago
parent
commit
06acaee6de
3 changed files with 5 additions and 5 deletions
  1. 1 1
      templates/_includes/seo_metadata.html
  2. 2 2
      templates/article.html
  3. 2 2
      templates/page.html

+ 1 - 1
templates/_includes/seo_metadata.html

@@ -1,4 +1,4 @@
-{% macro seo_metadata(article) %}
+{% macro smo_metadata(article) %}
 <meta property="og:title" content="{{ article.title|striptags }} {%if article.subtitle %} - {{ article.subtitle }} {% endif %}"/>
 <meta property="og:type" content="article" />
 <meta property="og:url" content="{{ SITEURL }}/{{ article.url }}" />

+ 2 - 2
templates/article.html

@@ -16,8 +16,8 @@
 <meta name="keywords" content="{{ [article.tags|join(', '), article.category, article.keywords]|join(', ') }}" />
 {% endif %}
 
-{% from '_includes/seo_metadata.html' import seo_metadata with context %}
-{{ seo_metadata(article) }}
+{% from '_includes/smo_metadata.html' import smo_metadata with context %}
+{{ smo_metadata(article) }}
 {% endblock meta_tags_in_head %}
 
 {% block content %}

+ 2 - 2
templates/page.html

@@ -16,8 +16,8 @@
 <meta name="keywords" content="{{ page.keywords }}" />
 {% endif %}
 
-{% from '_includes/seo_metadata.html' import seo_metadata with context %}
-{{ seo_metadata(page) }}
+{% from '_includes/smo_metadata.html' import smo_metadata with context %}
+{{ smo_metadata(page) }}
 {% endblock meta_tags_in_head %}
 
 {% block content %}