Skip to content
This repository has been archived by the owner on Sep 23, 2022. It is now read-only.

Commit

Permalink
Made possible to deploy the app in a subfolder of the domain
Browse files Browse the repository at this point in the history
  • Loading branch information
stof committed Nov 2, 2011
1 parent 37c4f59 commit 73c2ab6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions src/Resources/views/forbidden.html.twig
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<html>
<head>
<link href="/css/bootstrap-1.2.0.css" rel="stylesheet" type="text/css" />
<link href="/css/style.css" rel="stylesheet" type="text/css" />
<link href="{{ app.request.basePath }}/css/bootstrap-1.2.0.css" rel="stylesheet" type="text/css" />
<link href="{{ app.request.basePath }}/css/style.css" rel="stylesheet" type="text/css" />
<title>Idea Marketplace</title>
</head>
<body>
Expand Down
12 changes: 6 additions & 6 deletions src/Resources/views/layout.html.twig
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<html>
<head>
<link href="/css/bootstrap-1.3.0.min.css" rel="stylesheet" type="text/css" />
<link href="/css/style.css" rel="stylesheet" type="text/css" />
<link href="{{ app.request.basePath }}/css/bootstrap-1.3.0.min.css" rel="stylesheet" type="text/css" />
<link href="{{ app.request.basePath }}/css/style.css" rel="stylesheet" type="text/css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
<script type="text/javascript" src="/js/bootstrap/bootstrap-dropdown.js"></script>
<script type="text/javascript" src="/js/bootstrap/bootstrap-twipsy.js"></script>
<script type="text/javascript" src="/js/bootstrap/bootstrap-modal.js"></script>
<script type="text/javascript" src="/js/marketplace.js"></script>
<script type="text/javascript" src="{{ app.request.basePath }}/js/bootstrap/bootstrap-dropdown.js"></script>
<script type="text/javascript" src="{{ app.request.basePath }}/js/bootstrap/bootstrap-twipsy.js"></script>
<script type="text/javascript" src="{{ app.request.basePath }}/js/bootstrap/bootstrap-modal.js"></script>
<script type="text/javascript" src="{{ app.request.basePath }}/js/marketplace.js"></script>
<title>Idea Marketplace</title>

<script type="text/javascript">
Expand Down

0 comments on commit 73c2ab6

Please sign in to comment.