私はこの運動をしています。与えられたテンプレート コードを理解できません。コードをコピーして貼り付け、必要に応じてテンプレートを作成して実行できるようにすると、エラーが発生しましたNo template named index
$def with (greeting)
<html>
<head>
<title>Gothons Of Planet Percal #25</title>
</head>
<body>
$if greeting:
I just wanted to say <em style="color: green; font-size: 2em;">$greeting</em>.
$else:
<em>Hello</em>, world!
</body>
</html>
なぜ $ 記号が使用されるのですか? 私はWindowsを使用しているので、同じコードを書くことになっていますか?
また、templates/index.html
ファイルを保存する場所はどこですか?
最初の行で、実際に関数を定義しましたdef with (greeting)
か?
コード全体は意味的に正しいですか?