Links to blog posts on Archive page (not Wordpress) - html

I've created a blog site that (for now) is strictly written in HTML and CSS. On the Home page I'd like to be able to create links to additional blog articles on the Archive page - not just links to the Archive page but to specific blog articles but I'm not sure how to do that. Any help appreciated Thanks.

Archive post title

Use an href as suggested above like so
That Posts Title

Since I don't have server-side software, I think I've figured out a work-around without having to create multiple pages. I will give the title of each blog entry a unique id attribute. Then the links will simply be Title of Entry. I think this should work without having to create a multitude of pages.

Related

WP link not showing properly on linkedin

I am starting a new blog and was testing out sharing on linkedIn.
However, when I copy and paste the link into the share thing in linkedin, the blog doesn't show up properly.
Would you be able to help me understand what I would need to add to my blog post to make it show up correctly?
To add some more info: I do have a featured image set, and the blog post does have a title.
Any help would be greatly appreciated!
Mine:
What I want:
The reason you are not seeing a "rich" link when pasting it is likely because you do not have your Open Graphs meta tags set up properly.
You can simply use a plugin with Wordpress to add these tags, like this one or you can learn how to program it yourself into your theme.
Facebook has a good debugger for tags, which you can use to check your links.
You can read more about how og tags are used by LinkedIn in their developer article.

Refine Blog post by category in Bigcommerce blog

I need some help today.
When we add any blog post to Bigcommerce default blog, do we have any option to assign blog category?
or how we can create a Blog category? I can't see any option for this as well and after contacting Support they haven't been fair to issue and said to ask this in forum.
Actually I want to add refine post by Category in blog page so I need to add category but at the moment it seems i do not have any option to add category.
also I tried it with tags that we add in blog post but there isn't any way to get all the tags list that we added in various posts.
can you guys please help me out for this issue?
Thank you in Advance.

Filter by tags in big-commerce blog

I am using Built in Blog in Big-commerce ,But i am facing some problem that their is not filter for blogs posts.
i want to fetch some specified blogs posts based on tags.
example :
TAG1(BL)
TAG2(BG) :
Here is blog page code:
<div class="Content" id="LayoutColumn2">
<div class="BlockContent PageContent">
<h1>%%GLOBAL_BlogTitle%%</h1>
%%SNIPPET_RecentPostsContent%%
</div>
</div>
AND using this code i can get tags
%%GLOBAL_BlogTags%%
Now i want to filter all the blog posts which is having blog tags "BG".
how can i filter ? i was searching for so many online source nothing was helps me much
Useful helps will much appreciated.
There isn't a built-in feature that supports filtering by Blog Tag. Neither the templating offers this nor is there a workaround through the API. The Blog Tags resource in the API only offers the ability to list tags and the Blog Post object doesn't expose the blog tags field.
At best, you might be able to parse the posts on the blog home/its pages to offer the filtering, but it may be slow depending on how many pages worth of entries and how many users are attempting to do so.

How to output a certain blog on to a PAGE in shopify

I'm creating a Shopify store for a client who does not obviously know coding. He will need to update content on the website (and I have coded some pages with certain layouts (in the html part of the content) so when he types his content it often breaks our design)
As an alternative solution, I'm thinking of using the blog feature.
I know Shopify lets us create a page with only a certain blog, but what it does is show up in the URL - as a ...blog/cocktails.
That is not good for the end user, because I merely want it to be a page that calls the blog articles from this blog. I'm unable to find a way to do it.
I tried replacing blog.content with blog['cocktail'].content and etc..
but it didn't do anything.
Alternatively are there any suggestions how you can design a page and let clients add their own content just by typing (for instances where its a list of recipes for example)?
I think it would be best to create a custom page template same as blog page.
It will solve your all problems(i think) because first your url problem will be solved by it user has to just assign a template from backend.
Second one most important user can update its content from backend and it will not disturb your html.
If you still have problems just customise html and css.
I hope it will help you.

Simple blog in CSS and HTML only

I have a simple html/css-only static website on which I would like to add a blog. Comments and RSS aren't necessary.
Now, how do I do that, without having to write all my entries in pure html?
My website consists of a vertical menu and an area to the right of it, where all the content goes on each page. I would like a blog inside that area on the blog page, so a blog on a separate page with its own layout is not what I'm looking for.
Googling this doesn't really help me much since the majority of the hits are on sites offering blog services.
Thanks in advance, I hope I'm not being too difficult. Please leave some feedback on my question if you think there are things I should have tried out before asking.
If i understand what you want the answer is that ist is not possible in pure html and css. With only Html and css you can not make a blog (if you dont want to edit the source everytime you write an entry and have to make a new file for each entry and so on).
You need some code (php or so) that is able to store and load the entrys into your site.
Html and css are not meant to make things working. With Html you define the elements so that they are structed and then with css you "style" your work. But for the task of a blog (i think you want an editor for the text on the site, the ability to edit, delete, more than one site and so on) you need something like php or aps.net that is able to "interact".