<!-- app/templates/home.html --> <!DOCTYPE html> <html lang="ja"> <head> <meta charset="UTF-8"> <title>ホーム</title> </head> <body> <h1>ようこそ SNS へ!</h1> {% if current_user.is_authenticated %} <p>こんにちは、{{ current_user.username }}さん!</p> <a href="{{ url_for('main.logout') }}">ログアウト</a> | <a href="{{ url_for('main.create_post') }}">新規投稿</a> <h2>あなたの投稿</h2> {% for post in current_user.posts %} <div style="margin-bottom: 30px;"> <h3>{{ post.caption }}</h3> <img src="{{ url_for('static', filename='uploads/' + post.image_filename) }}" width="300"> <p>投稿日: {{ post.timestamp.strftime('%Y-%m-%d %H:%M') }}</p> </div> {% endfor %} {% else %} <p><a href="{{ url_for('main.login') }}">ログイン</a> または <a href="{{ url_for('main.register') }}">新規登録</a>してください。</p> {% endif %} {% with messages = get_flashed_messages() %} {% if messages %} <ul> {% for message in messages %} <li>{{ message }}</li> {% endfor %} </ul> {% endif %} {% endwith %} </body> </html>