我有一个设计问题,我正在尝试构建我的网页,目前正在项目部分中展示我的工作。在其中,我有一个项目列表,每个项目都有一个链接,该链接加载了四个段落的描述及其图像。由于每个项目均由四个段落和一个图像表示,所以我想知道是否可以使用Django存储信息并根据项目的链接加载信息,而不是对所有内容进行硬编码。我不确定,但是我怀疑这将不得不在我的模板文件中的某个地方注入Django代码,但不知道在哪里。我也在Pastebin上发布了代码,以在StackOverflow中显示HTML代码,因此这里是用于细分我的项目的链接:https://pastebin.com/S7HfCfpg。 `
<!DOCTYPE html>
<html>
<body>
{% block content %}
<div id='vignereCypherPage'>
<h1 id="vignereCypherHeading">VIGENERE CYPHER</h1>
<section id="projectsDescriotion" class="">
<div id="firstSection">
<div id="insertImage"></div>
<div id="insertTheTwoParagraphs">
<p id="fist"></p>
<p id="second"></p>
</div>
</div>
<div id="secondSection">
<p id="third"></p>
<p id="forth"></p>
</div>
</section>
</div>
{% endblock content %}
</body>
`