Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tomáš Trávníček
doctrine-dbal
Commits
4804aa0a
Commit
4804aa0a
authored
Sep 06, 2007
by
Jonathan.Wage
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Initial entry.
parent
fd2a85b5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
48 additions
and
0 deletions
+48
-0
view.yml
website/apps/frontend/modules/manual/config/view.yml
+4
-0
manual_layout.php
website/apps/frontend/templates/manual_layout.php
+44
-0
No files found.
website/apps/frontend/modules/manual/config/view.yml
0 → 100644
View file @
4804aa0a
default
:
stylesheets
:
[
main
,
layout
,
manual
,
manual_iefix
:
{
media
:
print
}]
javascripts
:
[
mootools.v1.11
,
manual_tree
,
manual_toc
]
layout
:
manual_layout
\ No newline at end of file
website/apps/frontend/templates/manual_layout.php
0 → 100644
View file @
4804aa0a
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html
xmlns=
"http://www.w3.org/1999/xhtml"
xml:lang=
"en"
lang=
"en"
>
<head>
<?php
include_http_metas
()
?>
<?php
include_metas
()
?>
<?php
include_title
()
?>
<link
rel=
"shortcut icon"
href=
"/favicon.ico"
/>
</head>
<body>
<div
id=
"wrapper"
>
<div
id=
"header"
>
<?php
echo
get_partial
(
'global/header'
);
?>
</div>
<div
id=
"menu"
>
<?php
echo
get_partial
(
'global/menu'
);
?>
</div>
<div
id=
"left"
>
</div>
<?php
if
(
has_slot
(
'right'
)
)
:
?>
<div
id=
"right"
>
<?php
echo
get_slot
(
'right'
);
?>
</div>
<?php
endif
;
?>
<div
id=
"content"
>
<?php
echo
$sf_data
->
getRaw
(
'sf_content'
)
?>
</div>
<div
id=
"footer"
>
<?php
echo
get_partial
(
'global/footer'
);
?>
</div>
</div>
</body>
</html>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment