Skip to content
This repository has been archived by the owner on Oct 18, 2024. It is now read-only.

Commit

Permalink
Adding support for rel='me'
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Kinlan authored and Arachnid committed Apr 19, 2010
1 parent 7580537 commit 44207a7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
4 changes: 4 additions & 0 deletions config.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,3 +76,7 @@
# Absolute url of the blog application use '/blog' for host/blog/
# and '' for host/.Also remember to change app.yaml accordingly
url_prefix = ''

# Defines where the user is defined in the rel="me" of your pages.
# This allows you to expand on your social graph.
rel_me = None
3 changes: 3 additions & 0 deletions themes/default/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
{% endif %}
<link rel="alternate" type="application/atom+xml" href="{{config.url_prefix}}/feeds/atom.xml" />
<link rel="SHORTCUT ICON" href="{{config.url_prefix}}/static/{{config.theme}}/favicon.ico"/>
{% if config.rel_me %}
<link rel="me" href="{{config.rel_me}}" />
{% endif %}
{% block head %}{% endblock %}
</head>
<body>
Expand Down

0 comments on commit 44207a7

Please sign in to comment.