{% extends "base.html" %} {% block footer %}{% endblock %} {% block extra_head %} {% endblock %} {% block content %}
{% if user %}
{% set _user = user %}{% set _size = 80 %}{% set _size_class = "lg" %}{% include "_avatar_link.html" %}
Welcome back,

{{ user['username'] }}

📝 Go to your feed →
{{ user_post_count }} Posts
{{ user_stars }} Stars
Lv {{ user.get('level', 1) }} Level
{% else %}

Devplace.net - The Developer Social Network

Track industry shifts. Discover bold releases. Share what you're building in an open, uncensored environment.

Join DevPlace Free
🔑

100% Free Forever

🚫

Zero Ads

💭

No Censorship

💳

No Payments

{% endif %} {% if landing_posts %}

Latest Posts

Browse all posts →
{% for item in landing_posts %}
{% 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']) }}

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

Developer News

View all news →
{% for item in landing_articles %}
{% if item.image_url %}
{{ item.title }}
{% endif %}
{{ item.source_name }} {% if is_admin(user) %} {% if item.featured %} ★ Featured {% endif %} {% if item.grade >= 9 %} Grade {{ item.grade }} {% elif item.grade >= 7 %} Grade {{ item.grade }} {% else %} Grade {{ item.grade }} {% endif %} {% endif %} {{ dt_ago(item.synced_at) if item.synced_at else item.time_ago }}

{{ render_title(item.title) }}

{% if item.description %}

{{ item.description[:250] }}{% if item.description|length > 250 %}...{% endif %}

{% endif %} Read on {{ item.source_name }} ↗
{% 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 %}