{% extends 'base.html' %} {% load static %} {% load contact_tags %} {% block title %}{{ article.title }}{% endblock %} {% block meta_description %}{{ article.excerpt }}{% endblock %} {% block meta_keywords %}{{ article.meta_keywords }}{% endblock %} {% block content %}

{{ article.title }}

{{ article.excerpt }}

By {{ article.author.get_full_name|default:article.author.username }} {{ article.created_at|date:"M d, Y" }} {% if article.updated_at != article.created_at %} {% endif %}
{% if article.image %}
{{ article.title }}
{% endif %}
{{ article.content|safe }}
{% if article.related_service or article.related_consulting_partner or article.related_cloud_provider %}

Related Links

{% if article.related_service %}
Service

{{ article.related_service.name }}

View Service
{% endif %} {% if article.related_consulting_partner %}
Partner

{{ article.related_consulting_partner.name }}

View Partner
{% endif %} {% if article.related_cloud_provider %}
Provider

{{ article.related_cloud_provider.name }}

View Provider
{% endif %}
{% endif %} {% if related_articles %}

Related Articles

{% for related_article in related_articles %}
{% if related_article.image %} {{ related_article.title }} {% endif %}
{{ related_article.title }}

{{ related_article.excerpt|truncatewords:15 }}

{{ related_article.created_at|date:"M d, Y" }}
{% endfor %}
{% endif %}
Back to Articles

Questions about this article?

Have questions or need more information about the topics covered in this article? Get in touch with us!

{% embedded_contact_form source="Article Inquiry" %}
{% endblock %}