B
B
baursak2014-08-27 13:06:55
symfony
baursak, 2014-08-27 13:06:55

Where can a PHP programmer get modern free simple website templates?

Good day to all.
Since now I specialize in server programming (Laravel, Symfony), I don’t see much point in wasting time on “stubs” of sites, although I am “friends” with HTML5, CSS3, LESS, BOOTSTRAP3 and JQUERY.
Usually, collection sites of free layouts offer either 1. tabular layout (which is completely out of date), or 2. masterpieces with style sheets of 800-900 lines ... - And, here, "rubber", colorful and without unnecessary #FF2A00 instead 'red' - I haven't come across yet.
I would appreciate relevant links.

Answer the question

In order to leave comments, you need to log in

8 answer(s)
S
Sergey Krasnodemsky, 2014-08-27
@Prognosticator

bootstrap and templates
free, easy, modern)

X
xmoonlight, 2014-08-27
@xmoonlight

div layout + class descriptions in CSS.
do it yourself, it's not hard enough.

.red{
 background-color:red;
}
.green{
 background-color:green;
}
.center{
  text-align:center;
}

And divs:
<div class="green">Выравнивание влево (по-умолчанию)</div>
<div class="green center">Выравнивание по-центру</div>

O
Optimus, 2014-08-27
Pyan @marrk2

Banned on google?
postovoy.net/25.html
http://yandex.ru/yandsearch?lr=47&clid=1955454&tex...

O
OnYourLips, 2014-08-27
@OnYourLips

Just mark up the code with divs with different backgrounds. Without any CSS.
It will look more than disgusting, but this will already be the task of the layout designer, who will edit the templates.

P
Pavel Volintsev, 2014-09-04
@copist

Let's assume that you have a pro profile division.
There is a back-end developer who fiddles with the data model (DBMS), cache, authorization, security.
There is a front-end developer who deals with the user interface.
In the same way that a front-end developer will not (should not) write direct queries to the database in templates in order to show "something like that" in dialogs additionally, so the back-end developer will not (should not) polish the cross-browser output of his var_dump().
The ideal option is the work performed in the following sequence:
1. the design layout of the page is ready
2. the design layout is laid out by the layout designer
3. completeness of the data was evaluated by the backend, if necessary, the data model was expanded and methods for working with them were added (CRUD), rights were configured (RBAC)
4. the data for the page was "dumped" in the form of var_dump () to a suitable place in the layout
5. frontend 'schik removed var_dump() and put all the data in its place in the layout
further iterative process of fine-tuning the page to the ideal
If there is no layout by the time var_dump() is output - sorry, here you
If the frontender complains that he has to work on this raw output - find someone who will work, not complain.
PS A little help, but also interfere too, code generators, such as in the Yii framework. You can quickly set up a table, or a dialog, or a form for a specific data selection or Active Record model, and all of them will already work (save, search, pagination). Not as scary as var_dump() anymore.

U
utkorose, 2014-09-05
@utkorose

html5up.net

S
Sergey, 2014-08-27
Protko @Fesor

without unnecessary #FF2A00 instead of 'red'

controversial statement.
Everything depends on cross-browser compatibility. It is possible to make a beautiful template in a minimum of style lines, which will not work in IE below 10.
And why are you not satisfied with bootstrap.

V
Valentina Pavlova, 2014-09-19
@cabra

Initializr . Built on HTML5 Boilerplate. You can create a template in a few steps.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question