phprs 0.1.6

A PHP interpreter with build/package manager written in Rust
Documentation
/*
Theme Name: Example Theme
Theme URI: https://example.com/themes/example-theme
Description: A simple example theme demonstrating WordPress theme API in phprs
Version: 1.0.0
Author: phprs Team
Author URI: https://github.com/yingkitw/phprs
License: Apache-2.0
*/

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.site-header {
    border-bottom: 2px solid #0073aa;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.site-title {
    font-size: 2em;
    margin: 0;
    color: #0073aa;
}

.widget {
    margin-bottom: 30px;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 5px;
}

.widget-title {
    margin-top: 0;
    color: #0073aa;
}

.example-plugin {
    padding: 10px;
    background: #e7f3ff;
    border-left: 4px solid #0073aa;
    margin: 20px 0;
}