{% extends "base.html" %} {% block footer %}{% endblock %} {% block extra_head %} {% endblock %} {% block content %}
{% if user %}
{% set _user = user %}{% set _size = 48 %}{% set _size_class = "md" %}{% include "_avatar_link.html" %} Welcome back, {{ user['username'] }}
{{ user_post_count }} Posts
{{ user_stars }} Stars
Lv {{ user_level }} Level
{{ xp_progress_pct }}% to Lv {{ user_level + 1 }}
{% if landing_posts %}

Latest Posts

Browse all →
{% for item in landing_posts %}
{% set _href = "/posts/" ~ item.slug %} {% set _label = item.post.get('title') or 'View post' %} {% include "_card_link.html" %}
{% set _user = item.author %} {% set _size = 28 %} {% set _size_class = "sm" %} {% include "_avatar_link.html" %} {{ item.post['topic'] }}
{% if item.post.get('title') %}

{{ render_title(item.post['title'], author_is_admin=is_admin(item.author)) }}

{% endif %}
{{ render_content(item.post['content'][:200] ~ ('...' if item.post['content']|length > 200 else ''), author_is_admin=is_admin(item.author)) }}
{% endfor %}
{% endif %}
{% else %}

Devplace.net - The Developer Social Network

Track industry shifts. Discover bold releases. Share what you're building in an open environment built by developers, for developers.

Join DevPlace Free
🔑

100% Free Forever

🚫

Zero Ads

💭

No Gatekeeping

We never editorialise technical opinion. A short list of prohibited categories is enforced - read the community guidelines.

💳

No Payments

{% endif %}
New on DevPlace

Code Farm - grow software, not vegetables

Plant projects that build in real time, harvest coins and XP, upgrade your CI pipeline, and unlock the prestige grind. Then water your friends' builds - or raid the ones who left a harvest sitting too long.

  • 7 project tiers, from 30-second scripts to 2-hour kernels
  • CI upgrades, a four-branch perk tree, and stacking prestige boosts
  • Co-op watering, PvP raids, daily streaks, quests, and a global leaderboard
{% if user %} 🌾 Play Code Farm → {% else %} 🌾 Join free to play → {% endif %}
{% if landing_posts and not user %}

Latest Posts

Browse all posts →
{% for item in landing_posts %}
{% set _href = "/posts/" ~ item.slug %} {% set _label = item.post.get('title') or 'View post' %} {% include "_card_link.html" %}
{% set _user = item.author %} {% set _size = 28 %} {% set _size_class = "sm" %} {% include "_avatar_link.html" %} {{ item.post['topic'] }}
{% if item.post.get('title') %}

{{ render_title(item.post['title'], author_is_admin=is_admin(item.author)) }}

{% endif %}
{{ render_content(item.post['content'][:200] ~ ('...' if item.post['content']|length > 200 else ''), author_is_admin=is_admin(item.author)) }}
{% endfor %}
{% endif %} {% if landing_articles %}

Developer News

View all news →
{% for item in landing_articles %} {% endfor %}
{% endif %}

Build With Us

Browse the docs →

DevPlace is built in the open and made to be extended. Read the docs, explore the API, file an issue, or let Devii - our in-platform AI developer - do the work with you. Everything you need to start contributing is one click away.

📚

Documentation

Guides, the design system, component references, and deep internals - tiered for newcomers and operators alike.

Read the docs →
🧩

API Reference

A complete REST API with live OpenAPI schema. Build integrations, bots, and tools on top of every endpoint.

🐛

Contribute & Report

Found a bug or have an idea? Open an issue and follow it through to resolution in the integrated tracker.

Open the issue tracker →
🤖

Meet Devii

Devii is your AI developer built into the platform. Ask it to write posts, manage projects, run containers, edit files, and guide you live on the page.

Open the full terminal →
{% endblock %}