mirror of
				https://gitlab.com/idotj/mastodon-embed-timeline.git
				synced 2025-11-04 08:52:30 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			41 lines
		
	
	
		
			795 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			795 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
# Mastodon embed timeline
 | 
						|
 | 
						|
Embed a mastodon feed timeine in your page, only with a css and js file.
 | 
						|
 | 
						|
Working version running at:
 | 
						|
https://www.idotj.com
 | 
						|
 | 
						|
## User guide
 | 
						|
 | 
						|
Just copy both files (.css and .js) in your project 
 | 
						|
```
 | 
						|
<link rel="stylesheet" href="mastodon-timeline.css">
 | 
						|
```
 | 
						|
 | 
						|
```
 | 
						|
<script src='mastodon-timeline.js'></script>
 | 
						|
```
 | 
						|
 | 
						|
and add the following structure in your html page:
 | 
						|
```
 | 
						|
<div id="mt-timeline" class="mt-timeline">
 | 
						|
    <div id="mt-body" class="mt-body">
 | 
						|
        <div class="loading-spinner"></div>
 | 
						|
	</div>
 | 
						|
</div>
 | 
						|
```
 | 
						|
 | 
						|
## Changing the profile
 | 
						|
 | 
						|
At the beginning of the JS file *mastodon-timeline.js* replace the following values:
 | 
						|
```
 | 
						|
    instance_uri: '',
 | 
						|
    account_id: '',
 | 
						|
    profile_name: '',
 | 
						|
```
 | 
						|
 | 
						|
 | 
						|
## Improve me
 | 
						|
 | 
						|
Feel free to add/improve the styles and add more features.
 |