Skip to content

Commit

Permalink
Merge pull request #13 from everyleaf/feature/title-and-description
Browse files Browse the repository at this point in the history
Title と Description の追加
  • Loading branch information
akira888 authored Oct 25, 2023
2 parents 0a97298 + 0ddd2c4 commit 4af651b
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 10 deletions.
1 change: 1 addition & 0 deletions index.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
layout: base.html
title: Turbo ハンドブック
---

# Turbo Handbook
Expand Down
3 changes: 2 additions & 1 deletion layouts/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="{{ description }}">
<link rel="stylesheet" href="/assets/main.css">
<title>{{ title }}</title>
<title>{% if section_title %}{{ section_title }}: {% endif %}{{ title }}</title>
</head>
<body>
<nav class="jump">
Expand Down
4 changes: 2 additions & 2 deletions turbo/handbook/building.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Building Your Turbo Application
description: "Learn more about building an application with Turbo."
title: Turbo アプリケーションの構築
description: "Turboを使用してアプリケーションを構築する方法についてもっと学びましょう。"
---

# Turbo アプリケーションの構築
Expand Down
3 changes: 2 additions & 1 deletion turbo/handbook/drive.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
description: "Turbo Drive accelerates links and form submissions by negating the need for full page reloads."
title: "Turbo ドライブを使ったナビゲート"
description: "Turbo ドライブは、ページ全体の再読み込みの必要を無くすことで、リンクとフォームの送信を高速化します。"
---

# Turbo ドライブを使ったナビゲート
Expand Down
3 changes: 2 additions & 1 deletion turbo/handbook/frames.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
description: "Turbo Frames decompose pages into independent contexts, which can be lazy-loaded and scope interaction."
title: "Turboフレームを分解する"
description: "Turbo Framesはページを独立したコンテキストに分解し、それらを遅延ロードできるようにし、インタラクションの範囲を制限します。"
---

# Turboフレームを分解する
Expand Down
2 changes: 1 addition & 1 deletion turbo/handbook/handbook.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
"turbo_handbook"
],
"layout": "base.html",
"section_title": "Handbook"
"section_title": "ハンドブック"
}
3 changes: 2 additions & 1 deletion turbo/handbook/installing.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
description: "Learn how to install Turbo in your application."
title: "アプリケーションに Turbo をインストール"
description: "アプリケーションにTurboをインストールする方法を学びましょう。"
---

# アプリケーションに Turbo をインストール
Expand Down
3 changes: 2 additions & 1 deletion turbo/handbook/introduction.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
description: "Turbo bundles several techniques for creating fast, modern web applications without having to reach for a client-side JavaScript framework."
title: "はじめに"
description: "Turboは、クライアントサイドのJavaScriptフレームワークを使用することなく、高速でモダンなウェブアプリケーションを作成するためのいくつかの技術を提供します。"
---

# はじめに
Expand Down
3 changes: 2 additions & 1 deletion turbo/handbook/native.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
description: "Turbo Native lets your majestic monolith form the center of your native iOS and Android apps, with seamless transitions between web and native sections."
title: "iOS と Android をネイティブにやる"
description: "Turbo ネイティブは、モノリシック構造をネイティブのiOSおよびAndroidアプリの中心とし、ウェブとネイティブのセクション間でシームレスな遷移を実現します。"
---

# iOS と Android をネイティブにやる
Expand Down
3 changes: 2 additions & 1 deletion turbo/handbook/streams.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
description: "Turbo Streams deliver page changes over WebSocket, SSE or in response to form submissions using just HTML and a set of CRUD-like actions."
title: "Turbo ストリームを利用してみよう"
description: "Turbo ストリームは、WebSocketやSSEを利用して、またはフォームの送信に応答して、HTMLと一連のCRUDのようなアクションを使用してページの変更を配信します。"
---

# Turbo ストリームを利用してみよう
Expand Down

0 comments on commit 4af651b

Please sign in to comment.