Skip to content

Commit

Permalink
+ sshot
Browse files Browse the repository at this point in the history
Signed-off-by: Dmitry Ponyatov <dponyatov@gmail.com>
  • Loading branch information
ponyatov committed Mar 22, 2019
1 parent 9f3fe81 commit 7fa9a11
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 9 deletions.
9 changes: 3 additions & 6 deletions book/web/templ.css
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
* {
background: black; color: lightgreen;
font-family: monospace; font-size:4mm;
}
font-family: monospace; font-size:4mm; }

html,body {
margin:0; padding:0; border:0; overflow:hidden;
}
margin:0; padding:0; border:0; overflow:hidden; }

#words,#stack {
width:100%; height: 30%; overflow-y: scroll;
}
width:100%; height: 30%; overflow-y: scroll; }

#words { color: steelblue; }
#cli { width:100%; position:absolute; bottom:0;
Expand Down
Binary file added book/web/templ.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 10 additions & 3 deletions book/web/templ.tex
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
на сервере находится выполняемый код, осуществуляющий связку веб-представления с
базами данных, и прикладным бизнеес-кодом}\ для формирования html-вывода
применяются \term{шаблоны}: образцы файлов страниц, в тексте которых указаны
месту куда будет подставляться вывод генерируемый кодом на \py.
места куда будет подставляться вывод генерируемый кодом на \py.

В файловой системе Flask-приложения создаются два каталога:
\begin{description}[nosep]
Expand All @@ -17,7 +17,14 @@
\item[templates/] для шаблонов Jinja \verb|web.render_template()|
\end{description}


\lst{web/templ.py}{language=Python}

Веб-приложение снаружи выглядит как набор множества html-страниц. Использование
шаблонов дает возможность поместить весь повторяющийся код страниц в одно место,
и подставлять изменяющуюся часть html динамически в момент отправки страницы
браузеру клиента.

\clearpage
\lst{web/templ.css}{title=static/dark.css}
\lst{web/templ.html}{title=templates/index.html}
\lst{web/templ.html}{title=templates/index.html}
\fig{web/templ.png}{width=\textwidth}

0 comments on commit 7fa9a11

Please sign in to comment.