diff --git a/assets/template/index.html b/assets/template/index.html
index a9c945a..75490bc 100644
--- a/assets/template/index.html
+++ b/assets/template/index.html
@@ -1,15 +1,139 @@
-
-
+
+
-
-
+
+
+ APP_NAME
+
- App Download
+
+
+

+
+
APP_NAME
+
Version APP_VERSION
+
Ad Hoc
+
+ Install on iPhone
+
+
+
+ iOS 기기에서 접속해 설치하세요.
+ 설치 후 설정 > 일반 > VPN 및 기기 관리에서
+ 개발사를 신뢰해야 앱이 실행됩니다.
+
+
-
\ No newline at end of file
+
diff --git a/lib/oto/commands/util/publish_ios.dart b/lib/oto/commands/util/publish_ios.dart
index f4b5d54..f7fe2ee 100644
--- a/lib/oto/commands/util/publish_ios.dart
+++ b/lib/oto/commands/util/publish_ios.dart
@@ -19,7 +19,11 @@ class PublishiOS extends Command {
var templatePath = path.normalize(
'${path.dirname(Platform.script.toFilePath())}/../assets/template');
var indexContent = await File('$templatePath/index.html').readAsString();
- indexContent = indexContent.replaceAll("MENIFEST_URL", menifestURL);
+ indexContent = indexContent
+ .replaceAll('MENIFEST_URL', menifestURL)
+ .replaceAll('APP_NAME', data.appName)
+ .replaceAll('APP_VERSION', data.version)
+ .replaceAll('APP_ICON_URL', data.displayImageURL);
var destinationDir = Directory(destinationPath);
if (!destinationDir.existsSync()) {