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;








0















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?










share|improve this question




























    0















    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?










    share|improve this question
























      0












      0








      0








      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?










      share|improve this question














      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 24 at 7:08









      Honest PhiriHonest Phiri

      12




      12






















          2 Answers
          2






          active

          oldest

          votes


















          0














          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.






          share|improve this answer
































            0














            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 :)






            share|improve this answer

























              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
              );



              );













              draft saved

              draft discarded


















              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









              0














              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.






              share|improve this answer





























                0














                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.






                share|improve this answer



























                  0












                  0








                  0







                  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.






                  share|improve this answer















                  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.







                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited Apr 4 at 11:45

























                  answered Apr 4 at 11:38









                  Dinesh Reddy KancharlaDinesh Reddy Kancharla

                  5218




                  5218























                      0














                      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 :)






                      share|improve this answer





























                        0














                        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 :)






                        share|improve this answer



























                          0












                          0








                          0







                          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 :)






                          share|improve this answer















                          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 :)







                          share|improve this answer














                          share|improve this answer



                          share|improve this answer








                          edited Apr 5 at 10:18

























                          answered Apr 5 at 10:05









                          Sunnysinh ThakorSunnysinh Thakor

                          12




                          12



























                              draft saved

                              draft discarded
















































                              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.




                              draft saved


                              draft discarded














                              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





















































                              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







                              Popular posts from this blog

                              Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

                              Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

                              Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript