Issues (36)

resources/views/home.tpl.php (1 issue)

Labels
Severity
1
<!DOCTYPE HTML>
2
<!--
3
	Phantom by HTML5 UP
4
	html5up.net | @ajlkn
5
	Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
6
-->
7
<html>
8
<?php
9
$data = ['title' => 'StupidlySimple PHP | Home'];
10
Viewer::file('layouts/head', $data);
0 ignored issues
show
The type Viewer was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
11
?>
12
<body>
13
<!-- Wrapper -->
14
<div id="wrapper">
15
16
    <?php Viewer::file('layouts/top') ?>
17
18
    <?php Viewer::file('layouts/menu') ?>
19
20
    <!-- Main -->
21
    <div id="main">
22
        <div class="inner">
23
            <header>
24
                <h1>Fully baked PHP micro-framework<br>ready to be served.</h1>
25
                <p>This is your very fresh homepage. All template files are located in <code>/resources/views</code>
26
                    from the root directory. You can read tutorials and documentations on <a target="_blank" href="https://stupidlysimple.github.io">our website</a>
27
                    or even from here.
28
                    Start coding today and get creative.</p>
29
30
            </header>
31
            <section class="tiles">
32
                <article class="style1">
33
                    <span class="image">
34
                        <img src="resources/assets/images/pic1.jpg" alt=""/>
35
                    </span>
36
                    <a href="routing">
37
                        <h2>Routing</h2>
38
                        <div class="content">
39
                            <p>Back in the days, we all used to route the web directly to our .html or .php files.
40
                            Nowadays on MVC frameworks, we do it quite differently.</p>
41
                        </div>
42
                    </a>
43
                </article>
44
                <article class="style2">
45
                    <span class="image">
46
                        <img src="resources/assets/images/pic2.jpg" alt=""/>
47
                    </span>
48
                    <a href="controller">
49
                        <h2>Controllers</h2>
50
                        <div class="content">
51
                            <p>See how controller works in the Framework.</p>
52
                        </div>
53
                    </a>
54
                </article>
55
                <article class="style3">
56
                    <span class="image">
57
                        <img src="resources/assets/images/pic3.jpg" alt=""/>
58
                    </span>
59
                    <a href="service">
60
                        <h2>Services</h2>
61
                        <div class="content">
62
                            <p>See how service works in StupidlySimple Framework.</p>
63
                        </div>
64
                    </a>
65
                </article>
66
                <article class="style4">
67
                    <span class="image">
68
                        <img src="resources/assets/images/pic4.jpg" alt=""/>
69
                    </span>
70
                    <a href="model">
71
                        <h2>Models</h2>
72
                        <div class="content">
73
                            <p>Provides easy access to your data. Models are powered by <code>Eloquent ORM</code></p>
74
                        </div>
75
                    </a>
76
                </article>
77
                <article class="">
78
                    <span class="image">
79
                        <img src="resources/assets/images/pic5.jpg" alt=""/>
80
                    </span>
81
                    <a href="directory_structure">
82
                        <h2>Directory Structure</h2>
83
                        <div class="content">
84
                            <p>See the directory structure of the StupidlySimple PHP framework</p>
85
                        </div>
86
                    </a>
87
                </article>
88
                <article class="">
89
                    <span class="image">
90
                        <img src="resources/assets/images/pic6.jpg" alt=""/>
91
                    </span>
92
                    <a href="https://stupidlysimple.github.io">
93
                        <h2>And More!</h2>
94
                        <div class="content">
95
                            <p>More documentations are available on <code>stupidlysimple.github.io</code></p>
96
                        </div>
97
                    </a>
98
                </article>
99
            </section>
100
        </div>
101
    </div>
102
103
    <!-- Second -->
104
    <div id="second">
105
        <div class="inner">
106
            <header>
107
                <h2>Example Applications</h2>
108
                <p>StupidlySimple in the real world. See how StupidlySimple can be used in various applications / projects.</p>
109
            </header>
110
            <section class="tiles tiles-smaller">
111
                <article>
112
                    <span class="image">
113
                        <img src="resources/assets/images/pic8.jpg" alt=""/>
114
                    </span>
115
                    <a href="blogging/home">
116
                        <h2>Blogging</h2>
117
                        <div class="content">
118
                            <p>StupidlySimple does blogging</p>
119
                        </div>
120
                    </a>
121
                </article>
122
                <article>
123
                    <span class="image">
124
                        <img src="resources/assets/images/pic8.jpg" alt=""/>
125
                    </span>
126
                    <a href="costing/home">
127
                        <h2>Product Costing</h2>
128
                        <div class="content">
129
                            <p>Simple application to manage products and costing</p>
130
                        </div>
131
                    </a>
132
                </article>
133
                <article>
134
                    <span class="image">
135
                        <img src="resources/assets/images/pic8.jpg" alt=""/>
136
                    </span>
137
                    <a href="costing/home">
138
                        <h2>Project Management</h2>
139
                        <div class="content">
140
                            <p>Basic project management app</p>
141
                        </div>
142
                    </a>
143
                </article>
144
            </section>
145
        </div>
146
    </div>
147
148
<?php Viewer::file('layouts/footer') ?>
149
150
</div>
151
152
<?php Viewer::file('layouts/scripts') ?>
153
154
</body>
155
</html>