Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 17 additions & 1 deletion _layouts/post.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,25 @@ <h1 class="post-title font-weight-bold" itemprop="name headline">{{ page.title }
{% if page.subtitle %}
<h2><small>{{ page.subtitle }}</small></h2>
{% endif %}

{% if page.deprecated %}
<div class="deprecated-notice" style="background-color: #fff3cd; border-left: 4px solid #ffc107; padding: 15px; margin-bottom: 20px;">
<strong>⚠️ Deprecated:</strong>
{% if page.deprecated_reason %}
{{ page.deprecated_reason }}
{% else %}
This post contains outdated information.
{% endif %}
{% if page.deprecated_link %}
<a href="{{ page.deprecated_link }}">View updated content</a>
{% endif %}
</div>
{% endif %}


<div class="spli-footer d-flex flex-wrap justify-content-between mt-2 mt-lg-3">
<div class="post-meta pr-4 d-flex align-items-center">
<!--
<!--
We want Google to show the most recent date so this post looks more relevant in search results
https://developers.google.com/search/docs/appearance/publication-dates
-->
Expand Down
4 changes: 4 additions & 0 deletions _posts/2018-01-30-Cross-building-Boost-Android.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
layout: post
comments: false
title: Cross building Boost C++ libraries to Android with Conan
deprecated: true
deprecated_reason: "This information is outdated. See the updated post."
deprecated_link: /cpp/gamedev/android/conan/raylib/2025/11/24/GameDev-Raylib-Android.html

# other options
---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
layout: post
comments: false
title: Android Studio project using Conan and C++ Boost libraries
# other options
deprecated: true
deprecated_reason: "This information is outdated. See the updated post."
deprecated_link: /cpp/gamedev/android/conan/raylib/2025/11/24/GameDev-Raylib-Android.html
---

In the previous blog post [Cross building Boost C++ libraries to Android with Conan](https://blog.conan.io/2018/01/30/Cross-building-Boost-Android.html)
Expand Down
Loading