> For the complete documentation index, see [llms.txt](https://workspace-help.nhn-commerce.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://workspace-help.nhn-commerce.com/contents/faq/0715_caution/mo.md).

# 모바일\_업데이트 전 템플릿 코드

```html
<!DOCTYPE html>
<html lang="ko">
    <head>
        <meta charset="UTF-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1.0" />
        <meta name="referrer" content="same-origin" />

        <!-- 메타정보 -->
        <template shopby-partials="@partials/common-meta.html" shopby-partials-js="@partials/common-meta.js"></template>

        <!-- A2HS -->
        <link rel="manifest" shopby-manifest-placeholder href="/manifest.json" />
        <link rel="shortcut icon" href="/favicon.ico" />

        <link rel="apple-touch-icon" href="https://rlyfaazj0.toastcdn.net/20211220/141125.985487000/app_icon(144).png" />
        <!-- A2HS -->

        <link rel="stylesheet" href="/assets/styles/shopby-skin-mobile.css" />
        <link rel="stylesheet" href="/assets/styles/custom-common.css" />
        <script src="https://shopby-skin.cdn-nhncommerce.com/latest/shopby-skin.js" crossorigin="anonymous"></script>
        <script src="/core/api-initialize-mobile.js"></script>
        <script src="/core/error.js"></script>
        <script src="/core/custom-common.js"></script>


        <!-- "네이버쇼핑 설정" 기능을 사용하는 경우 아래 코드 주석을 해제해 주세요. -->
        <!-- <script shopby-wcs-log type="text/javascript" src="https://wcs.naver.net/wcslog.js"></script> -->

        <!-- "네이버페이" 기능을 사용하는 경우 아래 코드 주석을 해제해 주세요. -->
        <!-- <script src="/core/naver-pay.js"></script> -->
    </head>
    <body>
        <!-- "디자인팝업" 기능을 사용하는 경우 아래 코드 주석을 해제해 주세요. 디자인팝업 <template> 태그는 반드시 상단 레이아웃보다 위에 있어야 합니다. -->
        <!--<template shopby-partials="@partials/design-popup.html" shopby-partials-js="@partials/design-popup.js"></template> -->

        <!-- 상단 레이아웃 -->
        <template class="shopby-header" shopby-partials="@partials/common-header.html" shopby-partials-js="@partials/common-header.js"></template>

        <!-- ###### 아래에 소스코드를 입력해 주세요. ###### -->
        <main>
            여기에 소스코드를 입력해 주세요.
        </main>>

        <!-- 레이어 모달(알럿, 컴펌 사용 시 필요) -->
        <template shopby-partials="@partials/modal.html"></template>

        <!-- 최근 검색 -->
        <layer-modal-area type="custom" name="search-keyword" src="@modals/search-keyword.html"></layer-modal-area>

        <!-- 슬라이드메뉴 -->
        <template shopby-partials="@partials/slide-menu.html" shopby-partials-js="@partials/slide-menu.js"></template>

        <!-- 하단바 -->
        <template shopby-partials="@partials/common-nav.html"></template>

        <!-- 하단 레이아웃 -->
        <template shopby-partials="@partials/common-footer.html" shopby-partials-js="@partials/common-footer.js"></template>

        <script src="/core/intro.js"></script>

        <!-- "외부서비스 설정" 기능을 사용하는 경우 아래 코드 주석을 해제해 주세요. -->
        <!-- <script src="/core/external-service-config.js"></script> -->

        <!-- "네이버쇼핑 설정" 기능을 사용하는 경우 아래 코드 주석을 해제해 주세요. -->
        <!-- <script src="/core/naver-marketing-config.js"></script> -->
    </body>
</html>
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://workspace-help.nhn-commerce.com/contents/faq/0715_caution/mo.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
