Built with Drupal 8: A Front-Ender's Tale of Danger and Suspense

Error message

  • Deprecated function: The each() function is deprecated. This message will be suppressed on further calls in menu_set_active_trail() (line 2405 of /home1/markspap/public_html/kathy/includes/menu.inc).
  • Deprecated function: implode(): Passing glue string after array is deprecated. Swap the parameters in drupal_get_feeds() (line 394 of /home1/markspap/public_html/kathy/includes/common.inc).
May 3, 2015

UPDATE: In August 2015 I moved this site back to Drupal 7. Drupal 8 is still in beta, and though it's going to be fun, it's obviously not ready for prime time yet.

A few weeks ago I decided to rebuild this blog from scratch.  It had been literally years since I'd posted, so I figured I'd include just a few of the last entries.  Also, Drupal 8 was in beta and I'm impatient.  Why not build a brand new site in 8.0.0-beta9?, I thought.   How hard could it be?

So, okay.  It was a little bit hard.  But surprisingly, the experience wasn’t as hairy as you might expect.  Here’s a summary of my adventurous, experimental walk on the wild beta side. 

Installing Drupal 8

Before I go further, I should mention that I installed Drupal 8 on a previously set up local environment.  (If you don’t know what that means, you can find out more here.   For fellow Mac users, I’d recommend these instructions.)

Honestly, installation was a breeze.  The whole process took less than 5 minutes and was similar enough to Drupal 7 that I felt on solid ground.  I just downloaded and untarred core, added a new database in Mamp, went to the site in my browser and followed the instructions.  Easy peasy.

Playing with core was equally as uneventful and fun.  I added a new user, enabled and disabled core modules, added a new content type and a taxonomy vocabulary, tweaked permissions, etc.  All without a hitch.  The admin interface looks and acts almost the same as D7's. For someone who builds a lot of sites for non-technical admins, this is a big relief.

I decided this was easy.  Drupal 8 was a lot more stable than I’d expected.  I was feeling confident, so I decided to try creating a custom theme.

Custom Theming: Take One

Considering D8’s not even released yet, the documentation on drupal.org on Theming Drupal 8 is pretty extensive.  In fact it’s so extensive, it’s a bit overwhelming at first. 

If you're familiar with D7 theming and just wanted to get up and running quickly, you might prefer 27 Questions (and Answers) from My First Drupal 8 Site Build by Matt Korostoff.  His article was extremely helpful, although I was glad to be have the d.o documentation to refer to when I got stuck or wanted to delve into something more deeply.

Adding JS, CSS and Font Files and Libraries

I decided to keep a hand on the tow line and created a Classy subtheme, following Matt’s instructions for setting up the x.info.yml and and x.libraries.yml files.

You can see the .info.yml file looks a lot like the .info in Drupal 7.  The main difference is the way CSS and JS are added.  Instead of adding them directly to the .info.yml file, you include a reference to a .libaries.yml file, and that is where you add your scripts, stylesheets and dependencies. That was probably the biggest gotcha for me--figuring out how to include JS scripts, libraries and dependencies and font libraries.  There was conflicting information on the webs, but this is what worked for me:

Because I had a number of CSS and JS files, I followed the advice (from d.o. maybe?) to break them into two groups—global-styling and global-scripts,. These will now be available to every page.

My scripts.js is actually just a teeny few lines to handle the navigation bar, but surprisingly, Drupal 8 doesn’t load JQuery on every page automatically like D7 did. You have to add it as a dependency, as well as any other js you want to run on every page.

One thing I never figured out was how to add my custom fonts. I use Google's PT Serif and Inconsolata in this theme, and the only way I could get the fonts to load was by adding an @import to my main CSS file:

@import url(http://fonts.googleapis.com/css?family=Inconsolata|PT+Serif:400,400italic,700,700italic);

It works, and that'll have to do for now.

Twig Templates

I find Twig to be easier and more intuitive than the PHP of previous .tpl.php files. If you don't agree, some of the documentation on d.o might be helpful, especially Twig Coding Standards.

The Classy theme was a godsend for me when it came to creating custom templates. Whether you create a subtheme of Classy or not, you can look at the slew of templates it includes to get an idea of how to create your own.

For this theme, I needed a custom block--search-form-block.html.twig and changes to page.html.twig and node.html.twig. For instance, like Matt Korostoff, I don't much like the default "submitted by" line. To tweak it, I copied the node.html.twig from Classy, plopped it in my theme's template folder, and changed the line:

I still haven't figured out how to get my custom date/time format to print, but I'll keep working on it. :)

Custom Modules and More

I enabled a few contrib modules (Prepopulate, Youtube Field, Captcha and Recaptcha) that were absolutely required before going live. All worked beautifully out-of-the-box. However, the other contrib modules I tried gave me either a WSOD or that ghastly pink error message.  

At this time I'd recommend enabling contrib modules cautiously, if at all.  Most are still in dev for a reason.  Maybe try them on a test install first and see what blows up.

Luckily this is a simple site that can run without many contrib modules. If you have a complex site that requires a number of them, you may have to wait a bit before they're all ported to 8. Bluespark publishes a helpful live list of the current status of the top 100 Drupal modules. Check it out to see if your modules are listed.

I'm know you're waiting on tenterhooks for your favorite modules, but remember that most of the people who create and maintain contrib modules do so on their own time and without pay.  That's pretty darn generous of them, and I'm grateful for all the vacation time and off hours they spend creating modules that make my life easier. Unless I'm able to jump in alongside and start slinging code, I'm happy to wait patiently for contrib modules to be ported.

(Note to self: Patience you must have, my young padawan.)

Conclusion

The (sort of) bad news: Not everyone is crazy enough to spend two days and nights building a D8 site. It still isn't easy. You may get discouraged.  You will lose sleep. I still can't get drush 7 (required for D8) to rebuild caches. Importing and exporting a database between dev and live without at least a few WSODs is nigh on impossible. I encountered a number of alien requirements and strange error messages that took time to track down and debug.

The good news: Smarter people than me are working on those problems. Yay!

More good news: I'm no longer afraid of WSODs or error screens that fill three screens. Also, I busted my local dev site and had to rebuild it so many times, I now know a great deal about installing, enabling and configuring Drupal 8.

Was it worth it? You betcha! I'm no programmer, so I was nervous about Drupal 8 coming down the pike. I'm not nervous anymore. In fact, I'm looking forward eagerly to a release candidate.

Thanks to all the people who put so much time and effort into Drupal 8. It's really spectacular, and we thank you for generously sharing your code with us.

Comments

When I initially commented I clicked the "Notify me when new comments are added" checkbox and now each time a comment is added I get four emails with the same comment. Is there any way you can remove people from that service? Appreciate it!

Stevana Culwell from Kalamazoo was on the hunt for dissertation amour et bonheur
Alene Calderaro located the reply to a search question dissertation amour et bonheur
thesis adventures huckleberry finn
writing help penn

<a href=https://writeadissertation.com/>essay writing services</a>
<a href=https://custompaperwritingservices.com/>how to write a research papers</a>

<a href=https://forum.serveroffer.lt/viewtopic.php?f=10&t=113521>thesis ireland parkwest</a> 277b4ae

Evangelin Enbody from Beaumont was trying to find custom paper size java
Starlene Klimek stumbled upon the resolution to a research question custom paper size java
search thesis canada
free help with thesis statement
best essays on 9/11
how to write a dissertation title page

<a href=https://writeadissertation.com/>editor for dissertation</a>
<a href=https://payforanessaysonline.com/>pay for college papers</a>
<a href=https://ouressays.com/>term papers</a>
<a href=https://argumentativethesis.com/>thesis statement meaning</a>

<a href=https://maple.wowxyz.work/forum.php?mod=viewthread&tid=4474&extra=>thesis topics for food and nutrition</a> e9c09ca

Zorana Tollinchi from Portsmouth was seeking coursework for marine biology
Laverna Gasson uncovered the response to an inquiry coursework for marine biology
good politics dissertation titles
comment faire une dissertation en francais

<a href=https://theessayswriters.com/>top essay writers</a>
<a href=https://essayssolution.com/>how to be an essay writer</a>
<a href=https://homeworkcourseworkhelps.com/>pay someone to do my homework</a>

<a href=https://battletech-mercenaries.com/merc-net/viewtopic.php?f=4&t=9115&p=3... statement for symbolism in hills like white elephants</a> 5_2820b

My developer is trying to convince me to move to .net from PHP. I have always disliked the idea because of the costs. But he's tryiong none the less. I've been using Movable-type on a variety of websites for about a year and am concerned about switching to another platform. I have heard fantastic things about blogengine.net. Is there a way I can import all my wordpress content into it? Any kind of help would be really appreciated!

Hmm it looks like your blog ate my first comment (it was super long) so I guess I'll just sum it up what I had written and say, I'm thoroughly enjoying your blog. I as well am an aspiring blog writer but I'm still new to the whole thing. Do you have any tips for newbie blog writers? I'd certainly appreciate it.

Roxanna Yankovitch from Wichita was in search of boston college dissertations and theses
Robinet Afshari located the reply to a search question boston college dissertations and theses
for theses and dissertations
sullivan doctoral thesis prize
ocr gcse 21st century science coursework

<a href=https://domycollegehomeworkforme.com/>thesis writing services</a>
<a href=https://topswritingservices.com/>best custom essay writing service</a>

<a href=https://battletech-mercenaries.com/merc-net/viewtopic.php?f=4&t=3430&p=4... of chapter 5 dissertation</a> 9c09ca0

Timothea Gambel from Denver was trying to find gcse dt food coursework
Allina Terrance came across the answer to a search query gcse dt food coursework
mit dissertation template
college admission essay help at home
martin luther king jr dissertation plagiarism
best essay writing skills

<a href=https://helpwithdissertationwriting.com/>top dissertation writing service</a>
<a href=https://essayssolution.com/>paid essay writers</a>
<a href=https://topswritingservices.com/>college paper writing service</a>
<a href=https://ouressays.com/>proposal writer</a>

<a href=http://lt.huijintai8.com/forum.php?mod=viewthread&tid=88733&pid=173937&p... help pakistan</a> 6d66954

Helli Beshara from Carrollton was seeking example of thesis statement in an essay
Celestina Strobridge discovered the solution to a search question example of thesis statement in an essay
how to write a dissertation in two weeks
prepared environment montessori article thesis

<a href=https://payforanessaysonline.com/>writing service</a>
<a href=https://argumentativethesis.com/>explanatory thesis</a>
<a href=https://domycollegehomeworkforme.com/>online coursework</a>
<a href=https://custompaperwritingservices.com/>thesis writing services</a>

<a href=http://yonghengro.gain.tw/viewthread.php?tid=1341708&extra=>proquest dissertation abstract word limit</a> 77b4ae9

I know this site provides quality based posts and extra data, is there any other website which gives these kinds of data in quality?

Write more, thats all I have to say. Literally, it seems as though you relied on the video to make your point. You obviously know what youre talking about, why waste your intelligence on just posting videos to your site when you could be giving us something enlightening to read?

Ardith Borghoff from Canton was seeking free coursework browning poems porphyrias lover and my last duchess
Cristionna Unrein located the reply to a search question free coursework browning poems porphyrias lover and my last duchess
qut phd thesis by publication
psychology harvard thesis
dissertation proposal research questions
how to include relevant coursework in cv

<a href=https://homeworkcourseworkhelps.com/>coursework writer</a>
<a href=https://essaytyperhelp.com/>need help writing an essay</a>

<a href=https://thecardboard.org/boardnew/showthread.php?tid=18021&pid=234558#pi... statement for cause and effect of peer pressure</a> 7b4ae9c

Malorie Gesinski from Billings was seeking college admission essay writing service body
Phyllida Hellard located the reply to a search question college admission essay writing service body
downloadable tunes coursework
writing help toefl

<a href=https://theessayswriters.com/>essays to write about</a>
<a href=https://payforanessaysonline.com/>buy an essay online reviews</a>
<a href=https://englishessayhelp.com/>custom essay writing services</a>

<a href=http://wudao28.com/forum.php?mod=viewthread&tid=11869&extra=>sujet dissertation concours cpe 2008</a> 77b4ae9

Marieann Reyez from Jersey City was searching for professional cv writing services uaeessay introduction paragraph structure
Koo Valaitis stumbled upon the resolution to a research question professional cv writing services uaeessay introduction paragraph structure
proffesional essay writers
are dissertations primary or secondary sources
control degree improvement master quality thesis

<a href=https://englishessayhelp.com/>college essays</a>
<a href=https://essaytyperhelp.com/>essay help online</a>
<a href=https://custompaperwritingservices.com/>essay buy</a>

<a href=https://www.yolospeak.pl/showthread.php?tid=202&pid=67102#pid67102>examples of a thesis statement in a essay</a> c326d66

Luce Mccalment from Lacey was searching for buy essay college leslie marmon silko by ceremony
Shoshanna Hedger discovered the solution to a search question buy essay college leslie marmon silko by ceremony
how to write a good sat thesis
the dissertation for the degree

<a href=https://ouressays.com/>pay for essay</a>
<a href=https://essayservicehelp.com/>best cheap essay writing service</a>

<a href=http://thetalkingthyroid.com/phpbb3/viewtopic.php?p=316786#p316786>politics thesis titles</a> 9c09ca0

Joleen Steinbock from Knoxville was seeking writing service birmingham
Dre Shore located the reply to a search question writing service birmingham
assignment and thesis writing janathan anderson millicent poole
british library phd thesis
examples of good thesis statements for rhetorical analysis
advanced higher history dissertation format

[url=https://homeworkcourseworkhelps.com/]essay rewriter[/url]
[url=https://essayssolution.com/]help me do my essay[/url]

[url=https://thecardboard.org/boardnew/showthread.php?tid=17258&pid=235145#pi... phd dissertation[/url] c326d66

I want to show you one exclusive program called (BTC PROFIT SEARCH AND MINING PHRASES), which can make you a rich man!

This program searches for Bitcoin wallets with a balance, and tries to find a secret phrase for them to get full access to the lost wallet!

Run the program and wait, and in order to increase your chances, install the program on all computers available to you, at work, with your friends, with your relatives, you can also ask your classmates to use the program, so your chances will increase tenfold!
Remember the more computers you use, the higher your chances of getting the treasure!

DOWNLOAD FOR FREE

Telegram:
https://t.me/btc_profit_search

Philly Mcphie from Louisville was on the hunt for write my essay usa
Wilona Allday came across the answer to a search query write my essay usa
example of thesis statement for argumentative essay
premium writing services
thesis in mla style

<a href=https://theessayswriters.com/>write my paper</a>
<a href=https://essayservicehelp.com/>best resume writing service</a>

<a href=http://five-respect.co.jp/bbs/sunbbs.cgi?mode=form&no=126747339&page=1>is homework harmful</a> f39c326

Zenia Spinoso from Santa Clara was searching for phd dissertation in project management
Sallie Lilla uncovered the response to an inquiry phd dissertation in project management
choose dissertation topics finance
writing a thesis hemingway
bharadwaj amrutur phd thesis

<a href=https://writeadissertation.com/>essaytyper</a>
<a href=https://custompaperwritingservices.com/>essay writing services</a>
<a href=https://essayssolution.com/>write my paper</a>
<a href=https://domycollegehomeworkforme.com/>coursework writing</a>

<a href=https://battletech-mercenaries.com/merc-net/viewtopic.php?f=12&t=23384&p... science research paper help</a> f39c326

Because the admin of this web site is working, no question very quickly it will be well-known, due to its quality contents.

Kalie Glosser from Gilbert was trying to find oxford university thesis regulations
Marcy Paiva came across the answer to a search query oxford university thesis regulations
how to write a thesis nz
caltech thesis guidelines
thesis evaluation guidelines
interesting dissertation topics education

<a href=https://essayssolution.com/>my essay writer</a>
<a href=https://argumentativethesis.com/>thesis</a>
<a href=https://ouressays.com/>write my research paper for me</a>
<a href=https://domycollegehomeworkforme.com/>writing my essay</a>

<a href=https://thecardboard.org/boardnew/showthread.php?tid=17000&pid=235129#pi... level history edexcel coursework</a> 77b4ae9

Joeann Rossean from Las Vegas was trying to find customizing thesis like a pro
Guinna Monfils uncovered the response to an inquiry customizing thesis like a pro
thesis on tourism planning pdf
example of a literature review for a dissertation proposal
psychology essay help

<a href=https://ouressays.com/>essays writing services</a>
<a href=https://essayssolution.com/>buy essays online</a>
<a href=https://topswritingservices.com/>buy cheap essay</a>

<a href=https://battletech-mercenaries.com/merc-net/viewtopic.php?f=4&t=6892&p=4... bound dissertation london</a> c09ca0c

Sybil Skow from Sarasota was searching for persuasive essay title help
Clarine Hommerding located the reply to a search question persuasive essay title help
thesis statement for julius caesar
kth + thesis
custom paper cups and napkins
dissertation topics in elementary education

<a href=https://custompaperwritingservices.com/>pay to write essay</a>
<a href=https://domyhomeworkformecheap.com/>do my homework 123</a>

<a href=https://thecardboard.org/boardnew/showthread.php?tid=17410&pid=235582#pi... research thesis write</a> 954_78d

Howdy I am so excited I found your weblog, I really found you by error, while I was searching on Askjeeve for something else, Anyways I am here now and would just like to say thanks a lot for a tremendous post and a all round thrilling blog (I also love the theme/design), I don't have time to read it all at the moment but I have saved it and also included your RSS feeds, so when I have time I will be back to read a lot more, Please do keep up the excellent job.

Sonnnie Quiet from Billings was on the hunt for example of law essay using footnotesneed help on essay
Alison Dittmer discovered the solution to a search question example of law essay using footnotesneed help on essay
proquest digital dissertations express
strong persuasive essay thesis
a thesis submitted for the degree of
checklist for five paragraph essayself help essay writing

<a href=https://writingpaperforme.com/>essay writing service</a>
<a href=https://domyhomeworkformecheap.com/>do my homework online</a>
<a href=https://essayservicehelp.com/>argumentative essay topics</a>
<a href=https://helpwithdissertationwriting.com/>write my paper</a>

<a href=https://forosupervivientescancer.es/viewtopic.php?p=48309#p48309>why write a senior thesis</a> 4980ff3

Harmony Piacquadio from Thornton was trying to find doctoral dissertation fellowship university of minnesota
Vilma Morgensen came across the answer to a search query doctoral dissertation fellowship university of minnesota
thesis on gesture
thesis on policy implementation

<a href=https://helpwithdissertationwriting.com/>data analysis dissertation help</a>
<a href=https://essayservicehelp.com/>essay writers service</a>
<a href=https://ouressays.com/>research paper writer services</a>

<a href=https://thecardboard.org/boardnew/showthread.php?tid=17323&pid=234795#pi... thesis template</a> 326d669

I blog frequently and I really appreciate your information. Your article has really peaked my interest. I'm going to take a note of your blog and keep checking for new details about once per week. I subscribed to your RSS feed too.

Howdy! I know this is somewhat off topic but I was wondering which blog platform are you using for this site? I'm getting sick and tired of Wordpress because I've had problems with hackers and I'm looking at alternatives for another platform. I would be awesome if you could point me in the direction of a good platform.

Rosemaria Litherland from Deltona was searching for rpi phd dissertation
Francine Schenkelberg uncovered the response to an inquiry rpi phd dissertation
how to write a literature review dissertation
coursework for phd
geography dissertation proposal example

<a href=https://theessayswriters.com/>what should i write my college essay about</a>
<a href=https://essayservicehelp.com/>writing papers</a>
<a href=https://domycollegehomeworkforme.com/>pay someone to do my homework online</a>

<a href=https://bieninvestir.net/forum/viewtopic.php?f=4&t=286323>a level coursework commentary</a> ca0c498

Lacee Arebela from Jackson was in search of how to make thesis defense presentation
Clarabelle Dhein came across the answer to a search query how to make thesis defense presentation
music thesis sentence
help writing a essay for ged

<a href=https://essayservicehelp.com/>buy essay service</a>
<a href=https://theessayswriters.com/>pay someone to do my essay</a>
<a href=https://domycollegehomeworkforme.com/>buy essays</a>

<a href=https://idealbeauty.kz/news/aleksandr-coy-tehnika-zhenskih-strizhek-mash... doctoral thesis</a> 4ae9c09

Pages

Add new comment