--- layout: default title: "Technology Articles" category: technology --- {% assign category = site.data.categories | where: "name", page.category | first %}

{{ category.title }}

{{ category.description }}

All {% assign featured_categories = site.data.categories | where: "featured", true %} {% for cat in featured_categories %} {{ cat.title }} {% endfor %}
{% assign category_posts = site.posts | where_exp: "post", "post.categories contains page.category" %} {% for post in category_posts %}
{{ post.title }}
{{ post.date | date: "%B %d, %Y" }} {% if post.categories %}
{% for cat in post.categories limit:1 %} {% endfor %}
{% endif %}

{{ post.title }}

{{ post.excerpt | strip_html | truncate: 100 }}

Read More
{% endfor %}
{% assign related_product = site.data.category_products | where: "category", page.category | first %} {% if related_product %} {% assign product = site.data.products | where: "id", related_product.product_id | first %} {% if product %} {% include cta/product.html product_id=product.id medium="blog-category" content="category-page" %} {% endif %} {% endif %}
{% include cta/newsletter.html title="Subscribe to My Newsletter" description="Get the latest articles, tutorials, and insights delivered directly to your inbox." medium="blog" campaign="category-page" content="newsletter-cta" %}