我已经能够在我的博客http://blog.seans.ws上将我的照片放大到单个照片帖子,但 Tumblr 照片集将我的宽度限制为 500 像素
如何使照片集的布局更大,或者只是禁用该功能并一张一张地以高分辨率显示我的照片?这是照片集代码:
{block:Photoset}
<article>
<span class="break" style="padding-bottom: 19px;"></span>
{Photoset-500}
{block:Caption}
<p>{Caption}</p>
{/block:Caption}
<p></p>
<time>{TimeAgo}</time>
</article>
{/block:Photoset}
这是单张照片代码,我可以在其中制作巨大的照片:
{block:Photo}
<article>
<span class="break"></span>
<img src="{PhotoURL-HighRes}" class="highres">
<p>{Caption}</p>
<time>{TimeAgo}</time>
</article>
{/block:Photo}
谢谢!