텀블러 테마 치환자 메뉴얼

Photo Posts

변수 설명
{PhotoAlt} The HTML-safe version of the caption (if one exists) of this post.
{block:Caption}
{/block:Caption}
포스트의 캡션이 존재한다면 캡션을 출력합니다.
{Caption} 포스트의 캡션을 출력합니다.
{block:LinkURL} 해당 사진이 클릭 가능할때 출력합니다.
{LinkURL} 해당사진을 클릭해서 이동할 주소를 출력합니다.
만약 그것이 세트가 아니라면 미디어 퍼머링크를 디폴트로 제공합니다.
{LinkOpenTag} 이동할 주소를 포함한 시작 anchor-tag를 의미합니다.
Example: <a href="http://...">
{LinkCloseTag} 닫는 anchor-tag를 의미합니다.
Example: </a>
{PhotoURL-500} 해당 포스트의 사진의 주소입니다. 사진 사이즈는 500픽셀을 넘지 않습니다.
{PhotoWidth-500} Width for the 500px size photo.
{PhotoHeight-500} Height for the 500px size photo.
{PhotoURL-400} 해당 포스트의 사진의 주소입니다. 사진 사이즈는 400픽셀을 넘지 않습니다.
{PhotoWidth-400} Width for the 400px size photo.
{PhotoHeight-400} Height for the 400px size photo.
{PhotoURL-250} 해당 포스트의 사진의 주소입니다. 사진 사이즈는 250픽셀을 넘지 않습니다.
{PhotoWidth-250} Width for the 250px size photo.
{PhotoWidth-250} Height for the 250px size photo.
{PhotoURL-100} 해당 포스트의 사진의 주소입니다. 사진 사이즈는 100픽셀을 넘지 않습니다.
{PhotoWidth-100} Height for the 100px size photo.
{PhotoHeight-100} Width for the 100px size photo.
{PhotoURL-75sq} 해당 포스트의 75 X 75 정사각형 모양의 사진 주소.
{block:HighRes}
{/block:HighRes}
포스트에 high-res나 파노라마 사진이 존재한다면 출력합니다.
{PhotoURL-HighRes}

high-res나 파노라마 사이즈의 사진의 주소. 각각 1280px, 2560px사이즈를 넘지 않습니다.
1280사이즈의 이미지로 직접 접근하기 위해서 {PhotoURL-1280}, {PhotoWidth-1280}, {PhotoHeight-1280} 을 사용합니다.

{PhotoWidth-HighRes} high-res 사이즈의 사진의 가로크기
{PhotoHeight-HighRes} high-res 사이즈의 사진의 세로크기
{block:Exif}
{/block:Exif}
사진의 Exif정보를 출력합니다.
{block:Camera}
{Camera}
{/block:Camera}
만약 해당 사진의 Exif 데이터가 카메라 정보를 포함하고 있다면 출력합니다.
{block:Aperture}
{Aperture}
{/block:Aperture}
만약 해당 사진의 Exif 데이터가 조리개 정보를 포함하고 있다면 출력합니다.
{block:Exposure}
{Exposure}
{/block:Exposure}
만약 해당 사진의 Exif 데이터가 노출 정보를 포함하고 있다면 출력합니다.
{block:FocalLength}
{FocalLength}
{/block:FocalLength}

만약 해당 사진의 Exif 데이터가 초점 거리 정보를 포함하고 있다면 출력합니다.

Example

{Block:Photo}
    {LinkOpenTag}
        <img src="{PhotoURL-500}" alt="{PhotoAlt}"/>
    {LinkCloseTag}

    {block:HighRes}
         <a href="{PhotoURL-HighRes}">View in High-Res</a>
    {/block:HighRes}

    {block:Exif}
        <ul>
            {block:Camera}
                <li>Camera: {Camera}</li>
            {/block:Camera}
            {block:Aperture}
                <li>Aperture: {Aperture}</li>
            {/block:Aperture}
            {block:Exposure}
                <li>Exposure: {Exposure}</li>
            {/block:Exposure}
            {block:FocalLength}
                <li>Focal Length: {FocalLength}</li>
            {/block:FocalLength}
        </ul>
    {/block:Exif}

    {block:Caption}
        {Caption}
    {/block:Caption}
{/Block:Photo}

댓글

댓글 본문
버전 관리
리체
현재 버전
선택 버전
graphittie 자세히 보기