You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

80 lines
2.7 KiB

4 years ago
  1. +++
  2. title = "Blockquote"
  3. description = "Create pull quotes with citations and citation links."
  4. categories = ["experience"]
  5. tags = []
  6. html_attributes = []
  7. custom_attributes = []
  8. snippets_used = ["blockquote"]
  9. [[copyright]]
  10. owner = "Josh Habdas"
  11. date = "2019"
  12. license = "agpl-3.0-or-later"
  13. +++
  14. With source:
  15. ```html
  16. {{</* blockquote
  17. cite="Mark Twain"
  18. text="The more things are forbidden, the more popular they become."
  19. /*/>}}
  20. ```
  21. {{< blockquote
  22. cite="Mark Twain" text="The more things are forbidden, the more popular they become."
  23. />}}
  24. With anonymous source:
  25. ```html
  26. {{</* blockquote
  27. text="Obsessed is a word that the lazy use to describe the dedicated."
  28. /*/>}}
  29. ```
  30. {{< blockquote
  31. text="Obsessed is a word that the lazy use to describe the dedicated."
  32. />}}
  33. With source and citation link:
  34. ```html
  35. {{</* blockquote
  36. citelink="https://style.mla.org/urls-some-practical-advice/"
  37. cite="Angela Gibson, URLs: Some Practical Advice"
  38. text="Ensuring the enduring availability and retrievability of a source is not the primary objective of documentation, even though the Internet allows for the retrieval of online works referred to in other online works."
  39. /*/>}}
  40. ```
  41. {{< blockquote
  42. citelink="https://style.mla.org/urls-some-practical-advice/"
  43. cite="Angela Gibson, URLs: Some Practical Advice"
  44. text="Ensuring the enduring availability and retrievability of a source is not the primary objective of documentation, even though the Internet allows for the retrieval of online works referred to in other online works."
  45. />}}
  46. With citation link but no source:
  47. ```html
  48. {{</* blockquote
  49. citelink="https://bitly.is/2mkxskj"
  50. text="When you create your own Branded Short Domain, you can expect to see up to a 34% increase in CTR when compared to standard bit.ly links."
  51. /*/>}}
  52. ```
  53. {{< blockquote
  54. citelink="https://bitly.is/2mkxskj"
  55. text="When you create your own Branded Short Domain, you can expect to see up to a 34% increase in CTR when compared to standard bit.ly links."
  56. />}}
  57. With longer quotations:
  58. ```html
  59. {{</* blockquote cite="Erin Cummings" >}}
  60. At the end of the day, you are solely responsible for your success and your failure. And the sooner you realize that, you accept that, and integrate that into your work ethic, you will start being successful. As long as you blame others for the reason you aren't where you want to be, you will always be a failure.
  61. {{< /blockquote */>}}
  62. ```
  63. {{< blockquote cite="Erin Cummings" >}}
  64. At the end of the day, you are solely responsible for your success and your failure. And the sooner you realize that, you accept that, and integrate that into your work ethic, you will start being successful. As long as you blame others for the reason you aren't where you want to be, you will always be a failure.
  65. {{< /blockquote >}}