承接 akm/page-frame 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

akm/page-frame

Composer 安装命令:

composer create-project akm/page-frame

包简介

A template project for creating landing pages with PageFrame

README 文档

README

PageFrame is a lightweight PHP framework designed to help you create effective landing pages with ease. With PageFrame, you can manage all the data you want to display on your landing page, such as email addresses, phone numbers, and more, in different variables. This allows you to update and customize your landing page content effortlessly.

Features

  • Variable-based Content: Store different types of content in variables for easy management and customization.

  • Simplified Design: Create stylish landing pages with a clean and straightforward design.

  • Customization: Customize your landing page by simply modifying variables, making it easy to update contact information or other details.

Getting Started

Installation

To get started with PageFrame, follow these steps:

  1. Install Composer (if not already installed): Composer Installation

  2. Create a new PageFrame project using Composer:

    composer create-project akm/page-frame
  3. Start building your landing page by modifying the variables in the framework.

Usage

  1. Open the public/index.php file in your project directory.

  2. Update the variables in the file to reflect the content you want on your landing page. For example:

    $email = "contact@example.com";
    $phone = "+1 (123) 456-7890";
    // Add more variables as needed
  3. Customize the HTML and CSS in the public/index.php file to match your desired landing page design.

  4. Save your changes.

  5. Access your landing page by opening it in a web browser.

Example

Here's an example of how you can use PageFrame to create a simple landing page:

<?php
// public/index.php

$email = "contact@example.com";
$phone = "+1 (123) 456-7890";
?>

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>My Landing Page</title>
</head>
<body>
    <header>
        <h1>Welcome to My Landing Page</h1>
    </header>
    <main>
        <p>Contact us at:</p>
        <ul>
            <li>Email: <?php echo $email; ?></li>
            <li>Phone: <?php echo $phone; ?></li>
        </ul>
    </main>
    <footer>
        <p>&copy; <?php echo date("Y"); ?> My Company</p>
    </footer>
</body>
</html>

Contributing

If you'd like to contribute to PageFrame, please feel free to open issues, submit pull requests, or reach out to the project maintainers.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Acknowledgments

  • PageFrame was created by Ajay Mankani.

Contact

If you have any questions or feedback, you can reach us at ajaykmankani66@gmail.com.

统计信息

  • 总下载量: 3
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 3
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2023-10-04