Skip to content
wiki.fftac.org

Template Socioeconomic Decay

**Site relevance:** Anti-Christ.net

**Memory type:** theme source memory

**Source path:** Anti-Christ.net/wp-content/themes/anti-christ-thin-veil/page-templates/template-socioeconomic-decay.php

**Size:** 3.1 KB

Summary

Template Name: Socioeconomic Decay

Source Preview

This source file is short enough to preview directly on its source-memory page.

<?php
/**
 * Template Name: Socioeconomic Decay
 * Template Post Type: page
 *
 * @package Anti_Christ_Thin_Veil
 */

get_header();
?>
<main id="primary" class="site-main">
	<section class="page-hero">
		<p class="section-label"><?php esc_html_e( 'Socioeconomic decay', 'anti-christ-thin-veil' ); ?></p>
		<h1><?php esc_html_e( 'Scarcity becomes a management system.', 'anti-christ-thin-veil' ); ?></h1>
		<p class="archive-lead"><?php esc_html_e( 'A file for writing about debt pressure, tax burdens, housing strain, labor discipline, municipal fees, healthcare costs, and the policy choices disguised as inevitability.', 'anti-christ-thin-veil' ); ?></p>
	</section>
	<div class="two-column-grid">
		<div class="entry-content">
			<h2><?php esc_html_e( 'What to document', 'anti-christ-thin-veil' ); ?></h2>
			<ul class="civic-list">
				<li><?php esc_html_e( 'Property tax increases, assessment processes, exemptions, appeals, and local budget tradeoffs.', 'anti-christ-thin-veil' ); ?></li>
				<li><?php esc_html_e( 'Rent extraction, insurance pressure, utility costs, medical debt, student debt, and recurring fees.', 'anti-christ-thin-veil' ); ?></li>
				<li><?php esc_html_e( 'Wage suppression, unstable scheduling, algorithmic management, and retaliation fears.', 'anti-christ-thin-veil' ); ?></li>
				<li><?php esc_html_e( 'Local public records that show who benefits, who pays, and who is ignored.', 'anti-christ-thin-veil' ); ?></li>
			</ul>
		</div>
		<div class="terminal-box">
			<p>> <?php esc_html_e( 'premise: survival should not require surrender', 'anti-christ-thin-veil' ); ?></p>
			<p>> <?php esc_html_e( 'method: documents, receipts, testimony, policy critique', 'anti-christ-thin-veil' ); ?></p>
			<p>> <?php esc_html_e( 'line: no scapegoats, no hatred, no unlawful pressure', 'anti-christ-thin-veil' ); ?></p>
		</div>
	</div>
	<section class="section-block">
		<div class="post-grid">
			<?php
			$decay_posts = new WP_Query(
				array(
					'posts_per_page'     => 3,
					'category_name'       => 'socioeconomic-critique',
					'ignore_sticky_posts' => true,
					'no_found_rows'       => true,
				)
			);
			if ( $decay_posts->have_posts() ) :
				while ( $decay_posts->have_posts() ) :
					$decay_posts->the_post();
					actv_render_post_card();
				endwhile;
				wp_reset_postdata();
			else :
				actv_render_placeholder_card( 'Assessment as leash', 'Property tax', 'When ownership becomes a recurring negotiation with a spreadsheet.', actv_category_url( 'socioeconomic-critique' ) );
				actv_render_placeholder_card( 'The subscription life', 'Debt culture', 'A civic note on fees, rent, premiums, and the loss of slack.', actv_category_url( 'socioeconomic-critique' ) );
				actv_render_placeholder_card( 'Work under glass', 'Labor', 'Algorithmic management and the quiet extinction of autonomy.', actv_category_url( 'socioeconomic-critique' ) );
			endif;
			?>
		</div>
	</section>
	<?php
	while ( have_posts() ) :
		the_post();
		if ( trim( wp_strip_all_tags( get_the_content() ) ) ) {
			get_template_part( 'template-parts/content', 'page' );
		}
	endwhile;
	?>
</main>
<?php
get_footer();