ページ

各ページにはいくつかの部分があります。これには、レイアウト、コンテンツ、言語オプションが含まれます。

レイアウトは、コンテンツを包むHTMLです。それには、ヘッダー、フッター、およびすべてのページで一貫している他の要素が含まれます。このレイアウトは、別のページでTypeScript関数として定義されています。

コンテンツは各ページ固有のHTMLです。以下のように定義します。適切に翻訳をサポートするために、i18Next.tへの呼び出しを含めるようにしてください。

言語オプションは、ページが利用可能なさまざまな言語です。それらは最初に定義します。それはルートと個々のページ機能をつなげます。URLの翻訳は、その中で処理されます。

TypeScript - pages/ExamplePage.ts
import i18next from "../GlobalSitesCore/i18n";
import { Layout } from "../Layout";
import { RenderProps, renderLanguageFiles } from "../GlobalSitesCore/languages";
import { FileResult } from "../GlobalSitesCore/FileResult";

export async function ExamplePagePages(): Promise<FileResult[]> {
  return renderLanguageFiles({
    subDirectoryInEnglish: undefined,
    fileNameInEnglish: "example-page",
    includeInSitemap: true,
    render: (props) => ExamplePage(props),
  });
}

interface ExamplePageProps extends RenderProps {}

export function ExamplePage(props: ExamplePageProps): string {
  var title = i18next.t(`Example Page`);
  var metaDescription = i18next.t(`This is an example page.`);

  return Layout({
    lang: props.option.code,
    title: title,
    description: metaDescription,
    languageOptions: props.allOptions,
    content: /* HTML */ `
      <h1>${title}</h1>
      <p>${metaDescription}</p>
      <!-- Add more content as needed -->
    `,
  });
}