How can I add a template page on A drupal basic pageHow does one inject variables into page templates from a custom Drupal module?Drupal - Template for Custom PageDrupal 7 vocabulary pageDisplaying a drupal page without the template around it in Drupal 7How to Export Drupal 6 datas to Drupal 7How to add custom features in my drupal website?How to add a custom page and functionality in Drupal 7Convert templates in drupal 7Drupal 8: How to create completely standalone custom page?Load external website as page in a Drupal page
How can I find where certain bash function is defined?
Is there any use case for the bottom type as a function parameter type?
Does this degree 12 genus 1 curve have only one point over infinitely many finite fields?
Why are C64 games inconsistent with which joystick port they use?
Is there a way to make it so the cursor is included when I prtscr key?
How strong are Wi-Fi signals?
How bitcoin nodes update UTXO set when their latests blocks are replaced?
How can people dance around bonfires on Lag Lo'Omer - it's darchei emori?
Is one obligated to listen to a Rav?
Is there a down side to setting the sampling time of a SAR ADC as long as possible?
I unknowingly submitted plagiarised work
Why does the 6502 have the BIT instruction?
Under what law can the U.S. arrest International Criminal Court (ICC) judges over war crimes probe?
Employer demanding to see degree after poor code review
When and what was the first 3D acceleration device ever released?
What are the benefits of cryosleep?
Is there a general effective method to solve Smullyan style Knights and Knaves problems? Is the truth table method the most appropriate one?
Employer asking for online access to bank account - Is this a scam?
How to convert to standalone document a matrix table
When do characters level up?
Why do they consider the Ori false gods?
Ticket sales for Queen at the Live Aid
What do different value notes on the same line mean?
What is the largest (size) solid object ever dropped from an airplane to impact the ground in freefall?
How can I add a template page on A drupal basic page
How does one inject variables into page templates from a custom Drupal module?Drupal - Template for Custom PageDrupal 7 vocabulary pageDisplaying a drupal page without the template around it in Drupal 7How to Export Drupal 6 datas to Drupal 7How to add custom features in my drupal website?How to add a custom page and functionality in Drupal 7Convert templates in drupal 7Drupal 8: How to create completely standalone custom page?Load external website as page in a Drupal page
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
Am using a bootstrap theme for a website am developing and i want to start adding content on Pages. Is there a way I can add my own custom page without using Basic pages in drupal or Can I still work with Basic pages and come up with a custom page?
drupal
add a comment |
Am using a bootstrap theme for a website am developing and i want to start adding content on Pages. Is there a way I can add my own custom page without using Basic pages in drupal or Can I still work with Basic pages and come up with a custom page?
drupal
add a comment |
Am using a bootstrap theme for a website am developing and i want to start adding content on Pages. Is there a way I can add my own custom page without using Basic pages in drupal or Can I still work with Basic pages and come up with a custom page?
drupal
Am using a bootstrap theme for a website am developing and i want to start adding content on Pages. Is there a way I can add my own custom page without using Basic pages in drupal or Can I still work with Basic pages and come up with a custom page?
drupal
drupal
asked Mar 24 at 7:08
Honest PhiriHonest Phiri
12
12
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Drupal provides a way to override themes. You can override bootstrap theme by using subtheme. Bootstrap theme provides a subtheme(starterkits) and follow below steps.
You can follow steps in below link to override the bootstrap theme using subtheme.
How to Create a Drupal 8 Bootstrap Subtheme
If is it is drupal 6 or drupal 7 you can override page.tpl.php.
add a comment |
copy file in bootstrap folder theme/bootstrap/templates/node
copy file--> node.html.twig
first create a content type like ' event
' then create folder templates/node
pest file in bootstrap child folder theme/bootstrap_child/templates/node
pest file-->put file node--event.html.twig
in file we write custom code :)
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55321487%2fhow-can-i-add-a-template-page-on-a-drupal-basic-page%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Drupal provides a way to override themes. You can override bootstrap theme by using subtheme. Bootstrap theme provides a subtheme(starterkits) and follow below steps.
You can follow steps in below link to override the bootstrap theme using subtheme.
How to Create a Drupal 8 Bootstrap Subtheme
If is it is drupal 6 or drupal 7 you can override page.tpl.php.
add a comment |
Drupal provides a way to override themes. You can override bootstrap theme by using subtheme. Bootstrap theme provides a subtheme(starterkits) and follow below steps.
You can follow steps in below link to override the bootstrap theme using subtheme.
How to Create a Drupal 8 Bootstrap Subtheme
If is it is drupal 6 or drupal 7 you can override page.tpl.php.
add a comment |
Drupal provides a way to override themes. You can override bootstrap theme by using subtheme. Bootstrap theme provides a subtheme(starterkits) and follow below steps.
You can follow steps in below link to override the bootstrap theme using subtheme.
How to Create a Drupal 8 Bootstrap Subtheme
If is it is drupal 6 or drupal 7 you can override page.tpl.php.
Drupal provides a way to override themes. You can override bootstrap theme by using subtheme. Bootstrap theme provides a subtheme(starterkits) and follow below steps.
You can follow steps in below link to override the bootstrap theme using subtheme.
How to Create a Drupal 8 Bootstrap Subtheme
If is it is drupal 6 or drupal 7 you can override page.tpl.php.
edited Apr 4 at 11:45
answered Apr 4 at 11:38
Dinesh Reddy KancharlaDinesh Reddy Kancharla
5218
5218
add a comment |
add a comment |
copy file in bootstrap folder theme/bootstrap/templates/node
copy file--> node.html.twig
first create a content type like ' event
' then create folder templates/node
pest file in bootstrap child folder theme/bootstrap_child/templates/node
pest file-->put file node--event.html.twig
in file we write custom code :)
add a comment |
copy file in bootstrap folder theme/bootstrap/templates/node
copy file--> node.html.twig
first create a content type like ' event
' then create folder templates/node
pest file in bootstrap child folder theme/bootstrap_child/templates/node
pest file-->put file node--event.html.twig
in file we write custom code :)
add a comment |
copy file in bootstrap folder theme/bootstrap/templates/node
copy file--> node.html.twig
first create a content type like ' event
' then create folder templates/node
pest file in bootstrap child folder theme/bootstrap_child/templates/node
pest file-->put file node--event.html.twig
in file we write custom code :)
copy file in bootstrap folder theme/bootstrap/templates/node
copy file--> node.html.twig
first create a content type like ' event
' then create folder templates/node
pest file in bootstrap child folder theme/bootstrap_child/templates/node
pest file-->put file node--event.html.twig
in file we write custom code :)
edited Apr 5 at 10:18
answered Apr 5 at 10:05
Sunnysinh ThakorSunnysinh Thakor
12
12
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55321487%2fhow-can-i-add-a-template-page-on-a-drupal-basic-page%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown