-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Issue #1483 - add blog post to header - add min height to posts page - add blog/posts index page * Issue #1483 - add single template style to posts page; will handle all post displays - build posts template styles * Issue #1483 - add futher posts index styles (based on shopify blog UI) - remove parens in liquid * Issue #1483 - liquid func to strip out top part of excerpt - add active to first item * Issue #1483 - add gutter links for tags - add JS to handle gutter tags - add CSS for gutter + posts - add blog specfic layout * Issue #1483 - add search bar style adjustments * Issue #1483 - adjust tags side menu and remove from workflow - add in second side menu - add How To write Post page - add more styles * Issue #1483 - add example post page layout - add all links to side menu * Issue #1483 - readd post width 100%; imgs are not all same size this way - add border to post - change menu text color - save 3 sample posts to use for preview - will need deletig * Issue #1483 - update file names * Issue #1483 - change file name * Issue #1483 - change updated file name - fix wrong example link - fix wrong div placement * PR #1519 - remove example post - add Posts menu to gutter * PR #1519 - add href to posts menu - add styles to post menu - adjust dark styles to post menu * PR #1519 - adjust posts filter author - add Welcome post * PR #1519 - small text changes * PR #1519 - revamp write a post instructions - re-name css variables - increase post font size - add custom image to blog - add comment about img * PR #1519 - adjust headings - small adjust content * PR #1519 - add new line about pre-approval * Update css/style.css Co-authored-by: Michael Esteban <mickel13@gmail.com> * PR #1519 - add bullet about how to use preview feature * PR #1519 - fix typo * fix typo * Update 2024-05-25-welcome-post.md Some edits to the initial blog post. * Update 2024-05-25-welcome-post.md - Add blank subtitle * PR #1519 - remove image and related markup/css * Add blog to jekyll config, update blog layout template * PR #1519 - move more to config - add conds to all to avoid errors in layout - remove excerpt sep since it's not needed * PR #1519 - remove quotes - update write file * PR #1519 - lower transition fade time * Further changes, hopefully close to final * Fix issues that Chris raised, etc. * Add all posts to blog menu * Change link for Blog menu item to latest post * PR #1519 - add mobile styles to write.md image - remove unused cond in post.html - remove active class in post.md * PR #1519 Small styles remove dummies - remove dumm posts - move inline styles from post - remove css comments - add small margins * PR #1519 - Remove image - undo css first child change --------- Co-authored-by: Michael Esteban <mickel13@gmail.com> Co-authored-by: Rand McKinney <crandmck@yahoo.com>
- Loading branch information
1 parent
0eff3bf
commit e4811a1
Showing
12 changed files
with
421 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<div id="blog-side-menu-container"> | ||
<h3> | ||
<a href="/{{ page.lang }}/blog/posts">Posts</a> | ||
</h3> | ||
<ul id="blog-side-menu"> | ||
{% for post in site.posts %} | ||
<li> | ||
<a href="{{post.url}}">{{ post.title }}</a> | ||
</li> | ||
{% endfor %} | ||
</ul> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<ul id="tags-side-menu"> | ||
{% for tag in site.tags %} | ||
<li>{{ tag[0] }}</li> | ||
<ul | ||
{% for post in tag[1] %} | ||
<li><a href="{{ post.url }}">{{ post.title }}</a></li> | ||
{% endfor %} | ||
</ul> | ||
{% endfor %} | ||
</ul> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<!DOCTYPE html> | ||
<!--- | ||
Copyright (c) 2016 StrongLoop, IBM, and Express Contributors | ||
License: MIT | ||
--> | ||
<html lang="{{ page.lang }}"> | ||
{% include head.html %} | ||
|
||
<body> | ||
|
||
<section class="content"> | ||
|
||
{% include header/header-{{ page.lang }}.html %} | ||
|
||
{% include blog/posts-menu.md %} | ||
|
||
<div id="overlay"></div> | ||
<div id="blog-doc" markdown="1"> | ||
{% if page.title %} | ||
<h1>{{page.title}}</h1> | ||
{% endif %} | ||
{% if page.sub_title %} | ||
<h2>{{page.sub_title}}</h2> | ||
{% endif %} | ||
<div class="blog-details"> | ||
{% if page.author %} | ||
<div class="blog-author">By {{page.author}}</div> | ||
{% endif %} | ||
<div class="blog-date">{{page.date| date: "%d %b %Y" }}</div> | ||
</div> | ||
{{ content }} | ||
</div> | ||
</section> | ||
|
||
{% include footer/footer-{{ page.lang }}.html %} | ||
|
||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
title: Welcome to The Express Blog! | ||
tags: site-admin | ||
author: Rand McKinney and Chris Del | ||
--- | ||
|
||
Welcome to the new Express blog! The blog is meant to be a primary means of communication for the Express technical committee (TC). While we currently have other channels such as X, LinkedIn, and of course GitHub, there's no authoritative "soapbox" for announcements and general communication. | ||
|
||
Initially, the Express blog will be a venue: | ||
- For periodic announcements of new releases, pre-releases, plans, and ongoing work on the project. | ||
- For the Express TC to discuss issues of particular importance to the Express community. | ||
- To highlight security issues or other urgent information. | ||
|
||
Eventually, we hope the blog will evolve into a more general communication hub for the entire Express community; for example to share examples, tips, and experiences with the Express ecosystem and other information that's not simply technical documentation or GitHub discussion. | ||
|
||
Initially, posts will be written by TC members (potentially collaborating others), mainly because we don't have bandwidth to review general posts from the broader community. Eventually, we would love to open up the blog for broader contributions, but for now the focus is on trying to release Express 5.0, and the reality of an open-source project is that everyone has finite time to contribute. | ||
|
||
If you think you have a great idea for a post for future consideration, feel free to pitch the idea! The best approach is to open a new issue, and then after appropriate discussion, open a PR. We've also written up simple [instructions to create a blog post](/en/blog/write-post.html). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.